Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclObjC.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 17 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprObjC.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclTemplate.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 20 | #include "clang/Lex/Preprocessor.h" |
| 21 | #include "clang/Lex/LiteralSupport.h" |
| 22 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 24 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 25 | #include "clang/Parse/Designator.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 26 | #include "clang/Parse/Scope.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 27 | using namespace clang; |
| 28 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 29 | /// \brief Determine whether the use of this declaration is valid, and |
| 30 | /// emit any corresponding diagnostics. |
| 31 | /// |
| 32 | /// This routine diagnoses various problems with referencing |
| 33 | /// declarations that can occur when using a declaration. For example, |
| 34 | /// it might warn if a deprecated or unavailable declaration is being |
| 35 | /// used, or produce an error (and return true) if a C++0x deleted |
| 36 | /// function is being used. |
| 37 | /// |
| 38 | /// \returns true if there was an error (this declaration cannot be |
| 39 | /// referenced), false otherwise. |
| 40 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 41 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 42 | if (D->getAttr<DeprecatedAttr>()) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 43 | // Implementing deprecated stuff requires referencing deprecated |
| 44 | // stuff. Don't warn if we are implementing a deprecated |
| 45 | // construct. |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 46 | bool isSilenced = false; |
| 47 | |
| 48 | if (NamedDecl *ND = getCurFunctionOrMethodDecl()) { |
| 49 | // If this reference happens *in* a deprecated function or method, don't |
| 50 | // warn. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 51 | isSilenced = ND->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 52 | |
| 53 | // If this is an Objective-C method implementation, check to see if the |
| 54 | // method was deprecated on the declaration, not the definition. |
| 55 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { |
| 56 | // The semantic decl context of a ObjCMethodDecl is the |
| 57 | // ObjCImplementationDecl. |
| 58 | if (ObjCImplementationDecl *Impl |
| 59 | = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { |
| 60 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 61 | MD = Impl->getClassInterface()->getMethod(MD->getSelector(), |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 62 | MD->isInstanceMethod()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 63 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 69 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 70 | } |
| 71 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 72 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 73 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 74 | if (FD->isDeleted()) { |
| 75 | Diag(Loc, diag::err_deleted_function_use); |
| 76 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 77 | return true; |
| 78 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 79 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 80 | |
| 81 | // See if the decl is unavailable |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 82 | if (D->getAttr<UnavailableAttr>()) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 83 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 84 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 85 | } |
| 86 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 87 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 90 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
| 91 | /// (and other functions in future), which have been declared with sentinel |
| 92 | /// attribute. It warns if call does not have the sentinel argument. |
| 93 | /// |
| 94 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
| 95 | Expr **Args, unsigned NumArgs) |
| 96 | { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 97 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 98 | if (!attr) |
| 99 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 100 | int sentinelPos = attr->getSentinel(); |
| 101 | int nullPos = attr->getNullPos(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 102 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 103 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 104 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 105 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 106 | bool warnNotEnoughArgs = false; |
| 107 | int isMethod = 0; |
| 108 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 109 | // skip over named parameters. |
| 110 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 111 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 112 | if (nullPos) |
| 113 | --nullPos; |
| 114 | else |
| 115 | ++i; |
| 116 | } |
| 117 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 118 | isMethod = 1; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 119 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 120 | else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 121 | // skip over named parameters. |
| 122 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 123 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 124 | if (nullPos) |
| 125 | --nullPos; |
| 126 | else |
| 127 | ++i; |
| 128 | } |
| 129 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 130 | } |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 131 | else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
| 132 | // block or function pointer call. |
| 133 | QualType Ty = V->getType(); |
| 134 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
| 135 | const FunctionType *FT = Ty->isFunctionPointerType() |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 136 | ? Ty->getAs<PointerType>()->getPointeeType()->getAsFunctionType() |
| 137 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAsFunctionType(); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 138 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 139 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 140 | unsigned k; |
| 141 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 142 | if (nullPos) |
| 143 | --nullPos; |
| 144 | else |
| 145 | ++i; |
| 146 | } |
| 147 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 148 | } |
| 149 | if (Ty->isBlockPointerType()) |
| 150 | isMethod = 2; |
| 151 | } |
| 152 | else |
| 153 | return; |
| 154 | } |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 155 | else |
| 156 | return; |
| 157 | |
| 158 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 159 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 160 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 161 | return; |
| 162 | } |
| 163 | int sentinel = i; |
| 164 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 165 | --sentinelPos; |
| 166 | ++i; |
| 167 | } |
| 168 | if (sentinelPos > 0) { |
| 169 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 170 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 171 | return; |
| 172 | } |
| 173 | while (i < NumArgs-1) { |
| 174 | ++i; |
| 175 | ++sentinel; |
| 176 | } |
| 177 | Expr *sentinelExpr = Args[sentinel]; |
| 178 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
| 179 | !sentinelExpr->isNullPointerConstant(Context))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 180 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 181 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 182 | } |
| 183 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 184 | } |
| 185 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 186 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 187 | Expr *Ex = (Expr *)E; |
| 188 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 189 | } |
| 190 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 191 | //===----------------------------------------------------------------------===// |
| 192 | // Standard Promotions and Conversions |
| 193 | //===----------------------------------------------------------------------===// |
| 194 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 195 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 196 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 197 | QualType Ty = E->getType(); |
| 198 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 199 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 200 | if (Ty->isFunctionType()) |
| 201 | ImpCastExprToType(E, Context.getPointerType(Ty)); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 202 | else if (Ty->isArrayType()) { |
| 203 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 204 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 205 | // type 'array of type' is converted to an expression that has type 'pointer |
| 206 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 207 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 208 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 209 | // |
| 210 | // C++ 4.2p1: |
| 211 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 212 | // T" can be converted to an rvalue of type "pointer to T". |
| 213 | // |
| 214 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 215 | E->isLvalue(Context) == Expr::LV_Valid) |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 216 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty)); |
| 217 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 218 | } |
| 219 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 220 | /// \brief Whether this is a promotable bitfield reference according |
| 221 | /// to C99 6.3.1.1p2, bullet 2. |
| 222 | /// |
| 223 | /// \returns the type this bit-field will promote to, or NULL if no |
| 224 | /// promotion occurs. |
| 225 | static QualType isPromotableBitField(Expr *E, ASTContext &Context) { |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 226 | FieldDecl *Field = E->getBitField(); |
| 227 | if (!Field) |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 228 | return QualType(); |
| 229 | |
| 230 | const BuiltinType *BT = Field->getType()->getAsBuiltinType(); |
| 231 | if (!BT) |
| 232 | return QualType(); |
| 233 | |
| 234 | if (BT->getKind() != BuiltinType::Bool && |
| 235 | BT->getKind() != BuiltinType::Int && |
| 236 | BT->getKind() != BuiltinType::UInt) |
| 237 | return QualType(); |
| 238 | |
| 239 | llvm::APSInt BitWidthAP; |
| 240 | if (!Field->getBitWidth()->isIntegerConstantExpr(BitWidthAP, Context)) |
| 241 | return QualType(); |
| 242 | |
| 243 | uint64_t BitWidth = BitWidthAP.getZExtValue(); |
| 244 | uint64_t IntSize = Context.getTypeSize(Context.IntTy); |
| 245 | if (BitWidth < IntSize || |
| 246 | (Field->getType()->isSignedIntegerType() && BitWidth == IntSize)) |
| 247 | return Context.IntTy; |
| 248 | |
| 249 | if (BitWidth == IntSize && Field->getType()->isUnsignedIntegerType()) |
| 250 | return Context.UnsignedIntTy; |
| 251 | |
| 252 | return QualType(); |
| 253 | } |
| 254 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 255 | /// UsualUnaryConversions - Performs various conversions that are common to most |
| 256 | /// operators (C99 6.3). The conversions of array and function types are |
| 257 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 258 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 259 | /// In these instances, this routine should *not* be called. |
| 260 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 261 | QualType Ty = Expr->getType(); |
| 262 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
| 263 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 264 | // C99 6.3.1.1p2: |
| 265 | // |
| 266 | // The following may be used in an expression wherever an int or |
| 267 | // unsigned int may be used: |
| 268 | // - an object or expression with an integer type whose integer |
| 269 | // conversion rank is less than or equal to the rank of int |
| 270 | // and unsigned int. |
| 271 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 272 | // |
| 273 | // If an int can represent all values of the original type, the |
| 274 | // value is converted to an int; otherwise, it is converted to an |
| 275 | // unsigned int. These are called the integer promotions. All |
| 276 | // other types are unchanged by the integer promotions. |
| 277 | if (Ty->isPromotableIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 278 | ImpCastExprToType(Expr, Context.IntTy); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 279 | return Expr; |
| 280 | } else { |
| 281 | QualType T = isPromotableBitField(Expr, Context); |
| 282 | if (!T.isNull()) { |
| 283 | ImpCastExprToType(Expr, T); |
| 284 | return Expr; |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 289 | return Expr; |
| 290 | } |
| 291 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 292 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
| 293 | /// do not have a prototype. Arguments that have type float are promoted to |
| 294 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 295 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 296 | QualType Ty = Expr->getType(); |
| 297 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
| 298 | |
| 299 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
| 300 | if (const BuiltinType *BT = Ty->getAsBuiltinType()) |
| 301 | if (BT->getKind() == BuiltinType::Float) |
| 302 | return ImpCastExprToType(Expr, Context.DoubleTy); |
| 303 | |
| 304 | UsualUnaryConversions(Expr); |
| 305 | } |
| 306 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 307 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 308 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 309 | /// interfaces passed by value. This returns true if the argument type is |
| 310 | /// completely illegal. |
| 311 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 312 | DefaultArgumentPromotion(Expr); |
| 313 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 314 | if (Expr->getType()->isObjCInterfaceType()) { |
| 315 | Diag(Expr->getLocStart(), |
| 316 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 317 | << Expr->getType() << CT; |
| 318 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 319 | } |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 320 | |
| 321 | if (!Expr->getType()->isPODType()) |
| 322 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 323 | << Expr->getType() << CT; |
| 324 | |
| 325 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 326 | } |
| 327 | |
| 328 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 329 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 330 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
| 331 | /// routine returns the first non-arithmetic type found. The client is |
| 332 | /// responsible for emitting appropriate error diagnostics. |
| 333 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 334 | /// GCC. |
| 335 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 336 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 337 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 338 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 339 | |
| 340 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 341 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 342 | // For conversion purposes, we ignore any qualifiers. |
| 343 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 344 | QualType lhs = |
| 345 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
| 346 | QualType rhs = |
| 347 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 348 | |
| 349 | // If both types are identical, no conversion is needed. |
| 350 | if (lhs == rhs) |
| 351 | return lhs; |
| 352 | |
| 353 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 354 | // The caller can deal with this (e.g. pointer + int). |
| 355 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 356 | return lhs; |
| 357 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 358 | // Perform bitfield promotions. |
| 359 | QualType LHSBitfieldPromoteTy = isPromotableBitField(lhsExpr, Context); |
| 360 | if (!LHSBitfieldPromoteTy.isNull()) |
| 361 | lhs = LHSBitfieldPromoteTy; |
| 362 | QualType RHSBitfieldPromoteTy = isPromotableBitField(rhsExpr, Context); |
| 363 | if (!RHSBitfieldPromoteTy.isNull()) |
| 364 | rhs = RHSBitfieldPromoteTy; |
| 365 | |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 366 | QualType destType = UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 367 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 368 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 369 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 370 | return destType; |
| 371 | } |
| 372 | |
| 373 | QualType Sema::UsualArithmeticConversionsType(QualType lhs, QualType rhs) { |
| 374 | // Perform the usual unary conversions. We do this early so that |
| 375 | // integral promotions to "int" can allow us to exit early, in the |
| 376 | // lhs == rhs check. Also, for conversion purposes, we ignore any |
| 377 | // qualifiers. For example, "const float" and "float" are |
| 378 | // equivalent. |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 379 | if (lhs->isPromotableIntegerType()) |
| 380 | lhs = Context.IntTy; |
| 381 | else |
| 382 | lhs = lhs.getUnqualifiedType(); |
| 383 | if (rhs->isPromotableIntegerType()) |
| 384 | rhs = Context.IntTy; |
| 385 | else |
| 386 | rhs = rhs.getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 387 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 388 | // If both types are identical, no conversion is needed. |
| 389 | if (lhs == rhs) |
| 390 | return lhs; |
| 391 | |
| 392 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 393 | // The caller can deal with this (e.g. pointer + int). |
| 394 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 395 | return lhs; |
| 396 | |
| 397 | // At this point, we have two different arithmetic types. |
| 398 | |
| 399 | // Handle complex types first (C99 6.3.1.8p1). |
| 400 | if (lhs->isComplexType() || rhs->isComplexType()) { |
| 401 | // if we have an integer operand, the result is the complex type. |
| 402 | if (rhs->isIntegerType() || rhs->isComplexIntegerType()) { |
| 403 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 404 | return lhs; |
| 405 | } |
| 406 | if (lhs->isIntegerType() || lhs->isComplexIntegerType()) { |
| 407 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 408 | return rhs; |
| 409 | } |
| 410 | // This handles complex/complex, complex/float, or float/complex. |
| 411 | // When both operands are complex, the shorter operand is converted to the |
| 412 | // type of the longer, and that is the type of the result. This corresponds |
| 413 | // to what is done when combining two real floating-point operands. |
| 414 | // The fun begins when size promotion occur across type domains. |
| 415 | // From H&S 6.3.4: When one operand is complex and the other is a real |
| 416 | // floating-point type, the less precise type is converted, within it's |
| 417 | // real or complex domain, to the precision of the other type. For example, |
| 418 | // when combining a "long double" with a "double _Complex", the |
| 419 | // "double _Complex" is promoted to "long double _Complex". |
| 420 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
| 421 | |
| 422 | if (result > 0) { // The left side is bigger, convert rhs. |
| 423 | rhs = Context.getFloatingTypeOfSizeWithinDomain(lhs, rhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 424 | } else if (result < 0) { // The right side is bigger, convert lhs. |
| 425 | lhs = Context.getFloatingTypeOfSizeWithinDomain(rhs, lhs); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 426 | } |
| 427 | // At this point, lhs and rhs have the same rank/size. Now, make sure the |
| 428 | // domains match. This is a requirement for our implementation, C99 |
| 429 | // does not require this promotion. |
| 430 | if (lhs != rhs) { // Domains don't match, we have complex/float mix. |
| 431 | if (lhs->isRealFloatingType()) { // handle "double, _Complex double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 432 | return rhs; |
| 433 | } else { // handle "_Complex double, double". |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 434 | return lhs; |
| 435 | } |
| 436 | } |
| 437 | return lhs; // The domain/size match exactly. |
| 438 | } |
| 439 | // Now handle "real" floating types (i.e. float, double, long double). |
| 440 | if (lhs->isRealFloatingType() || rhs->isRealFloatingType()) { |
| 441 | // if we have an integer operand, the result is the real floating type. |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 442 | if (rhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 443 | // convert rhs to the lhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 444 | return lhs; |
| 445 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 446 | if (rhs->isComplexIntegerType()) { |
| 447 | // convert rhs to the complex floating point type. |
| 448 | return Context.getComplexType(lhs); |
| 449 | } |
| 450 | if (lhs->isIntegerType()) { |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 451 | // convert lhs to the rhs floating point type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 452 | return rhs; |
| 453 | } |
Anders Carlsson | 5b1f3f0 | 2008-12-10 23:30:05 +0000 | [diff] [blame] | 454 | if (lhs->isComplexIntegerType()) { |
| 455 | // convert lhs to the complex floating point type. |
| 456 | return Context.getComplexType(rhs); |
| 457 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 458 | // We have two real floating types, float/complex combos were handled above. |
| 459 | // Convert the smaller operand to the bigger result. |
| 460 | int result = Context.getFloatingTypeOrder(lhs, rhs); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 461 | if (result > 0) // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 462 | return lhs; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 463 | assert(result < 0 && "illegal float comparison"); |
| 464 | return rhs; // convert the lhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 465 | } |
| 466 | if (lhs->isComplexIntegerType() || rhs->isComplexIntegerType()) { |
| 467 | // Handle GCC complex int extension. |
| 468 | const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType(); |
| 469 | const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType(); |
| 470 | |
| 471 | if (lhsComplexInt && rhsComplexInt) { |
| 472 | if (Context.getIntegerTypeOrder(lhsComplexInt->getElementType(), |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 473 | rhsComplexInt->getElementType()) >= 0) |
| 474 | return lhs; // convert the rhs |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 475 | return rhs; |
| 476 | } else if (lhsComplexInt && rhs->isIntegerType()) { |
| 477 | // convert the rhs to the lhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 478 | return lhs; |
| 479 | } else if (rhsComplexInt && lhs->isIntegerType()) { |
| 480 | // convert the lhs to the rhs complex type. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 481 | return rhs; |
| 482 | } |
| 483 | } |
| 484 | // Finally, we have two differing integer types. |
| 485 | // The rules for this case are in C99 6.3.1.8 |
| 486 | int compare = Context.getIntegerTypeOrder(lhs, rhs); |
| 487 | bool lhsSigned = lhs->isSignedIntegerType(), |
| 488 | rhsSigned = rhs->isSignedIntegerType(); |
| 489 | QualType destType; |
| 490 | if (lhsSigned == rhsSigned) { |
| 491 | // Same signedness; use the higher-ranked type |
| 492 | destType = compare >= 0 ? lhs : rhs; |
| 493 | } else if (compare != (lhsSigned ? 1 : -1)) { |
| 494 | // The unsigned type has greater than or equal rank to the |
| 495 | // signed type, so use the unsigned type |
| 496 | destType = lhsSigned ? rhs : lhs; |
| 497 | } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) { |
| 498 | // The two types are different widths; if we are here, that |
| 499 | // means the signed type is larger than the unsigned type, so |
| 500 | // use the signed type. |
| 501 | destType = lhsSigned ? lhs : rhs; |
| 502 | } else { |
| 503 | // The signed type is higher-ranked than the unsigned type, |
| 504 | // but isn't actually any bigger (like unsigned int and long |
| 505 | // on most 32-bit systems). Use the unsigned type corresponding |
| 506 | // to the signed type. |
| 507 | destType = Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs); |
| 508 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 509 | return destType; |
| 510 | } |
| 511 | |
| 512 | //===----------------------------------------------------------------------===// |
| 513 | // Semantic Analysis for various Expression Types |
| 514 | //===----------------------------------------------------------------------===// |
| 515 | |
| 516 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 517 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 518 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 519 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 520 | /// multiple tokens. However, the common case is that StringToks points to one |
| 521 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 522 | /// |
| 523 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 524 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 525 | assert(NumStringToks && "Must have at least one string!"); |
| 526 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 527 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 528 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 529 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 530 | |
| 531 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 532 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 533 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 534 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 535 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 536 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 537 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 538 | |
| 539 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 540 | if (getLangOptions().CPlusPlus) |
| 541 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 542 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 543 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 544 | // the nul terminator character as well as the string length for pascal |
| 545 | // strings. |
| 546 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 547 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 548 | ArrayType::Normal, 0); |
Chris Lattner | 726e168 | 2009-02-18 05:49:11 +0000 | [diff] [blame] | 549 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 550 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 551 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
| 552 | Literal.GetStringLength(), |
| 553 | Literal.AnyWide, StrTy, |
| 554 | &StringTokLocs[0], |
| 555 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 556 | } |
| 557 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 558 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 559 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 560 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 561 | /// for values inside the block or for globals). |
| 562 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 563 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 564 | /// up-to-date. |
| 565 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 566 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 567 | ValueDecl *VD) { |
| 568 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 569 | // we wanted to. |
| 570 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 571 | return false; |
| 572 | |
| 573 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 574 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 575 | return false; |
| 576 | |
| 577 | // If this is a reference to an extern, static, or global variable, no need to |
| 578 | // snapshot it. |
| 579 | // FIXME: What about 'const' variables in C++? |
| 580 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 581 | if (!Var->hasLocalStorage()) |
| 582 | return false; |
| 583 | |
| 584 | // Blocks that have these can't be constant. |
| 585 | CurBlock->hasBlockDeclRefExprs = true; |
| 586 | |
| 587 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 588 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 589 | // be defined outside all of the current blocks (in which case the blocks do |
| 590 | // all get the bit). Walk the nesting chain. |
| 591 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 592 | NextBlock = NextBlock->PrevBlockInfo) { |
| 593 | // If we found the defining block for the variable, don't mark the block as |
| 594 | // having a reference outside it. |
| 595 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 596 | break; |
| 597 | |
| 598 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 599 | // a snapshot as well. |
| 600 | NextBlock->hasBlockDeclRefExprs = true; |
| 601 | } |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 602 | |
| 603 | return true; |
| 604 | } |
| 605 | |
| 606 | |
| 607 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 608 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 609 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 610 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 611 | /// SS is only used for a C++ qualified-id (foo::bar) to indicate the |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 612 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 613 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 614 | IdentifierInfo &II, |
| 615 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 616 | const CXXScopeSpec *SS, |
| 617 | bool isAddressOfOperand) { |
| 618 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 619 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 620 | } |
| 621 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 622 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 623 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 624 | /// nested-name-specifier. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 625 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 626 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 627 | bool TypeDependent, bool ValueDependent, |
| 628 | const CXXScopeSpec *SS) { |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 629 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 630 | Diag(Loc, |
| 631 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
| 632 | << D->getDeclName(); |
| 633 | return ExprError(); |
| 634 | } |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 635 | |
| 636 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 637 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 638 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 639 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
| 640 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
| 641 | << D->getIdentifier() << FD->getDeclName(); |
| 642 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
| 643 | << D->getIdentifier(); |
| 644 | return ExprError(); |
| 645 | } |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 650 | MarkDeclarationReferenced(Loc, D); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 651 | |
| 652 | Expr *E; |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 653 | if (SS && !SS->isEmpty()) { |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 654 | E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
| 655 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 656 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 657 | } else |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 658 | E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
| 659 | |
| 660 | return Owned(E); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 661 | } |
| 662 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 663 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 664 | /// variable corresponding to the anonymous union or struct whose type |
| 665 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 666 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 667 | RecordDecl *Record) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 668 | assert(Record->isAnonymousStructOrUnion() && |
| 669 | "Record must be an anonymous struct or union!"); |
| 670 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 671 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 672 | // operation rather than a slow walk through DeclContext's vector (which |
| 673 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 674 | DeclContext *Ctx = Record->getDeclContext(); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 675 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
| 676 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 677 | D != DEnd; ++D) { |
| 678 | if (*D == Record) { |
| 679 | // The object for the anonymous struct/union directly |
| 680 | // follows its type in the list of declarations. |
| 681 | ++D; |
| 682 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 683 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 684 | return *D; |
| 685 | } |
| 686 | } |
| 687 | |
| 688 | assert(false && "Missing object for anonymous record"); |
| 689 | return 0; |
| 690 | } |
| 691 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 692 | /// \brief Given a field that represents a member of an anonymous |
| 693 | /// struct/union, build the path from that field's context to the |
| 694 | /// actual member. |
| 695 | /// |
| 696 | /// Construct the sequence of field member references we'll have to |
| 697 | /// perform to get to the field in the anonymous union/struct. The |
| 698 | /// list of members is built from the field outward, so traverse it |
| 699 | /// backwards to go from an object in the current context to the field |
| 700 | /// we found. |
| 701 | /// |
| 702 | /// \returns The variable from which the field access should begin, |
| 703 | /// for an anonymous struct/union that is not a member of another |
| 704 | /// class. Otherwise, returns NULL. |
| 705 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 706 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 707 | assert(Field->getDeclContext()->isRecord() && |
| 708 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 709 | && "Field must be stored inside an anonymous struct or union"); |
| 710 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 711 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 712 | VarDecl *BaseObject = 0; |
| 713 | DeclContext *Ctx = Field->getDeclContext(); |
| 714 | do { |
| 715 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 716 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 717 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 718 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 719 | else { |
| 720 | BaseObject = cast<VarDecl>(AnonObject); |
| 721 | break; |
| 722 | } |
| 723 | Ctx = Ctx->getParent(); |
| 724 | } while (Ctx->isRecord() && |
| 725 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 726 | |
| 727 | return BaseObject; |
| 728 | } |
| 729 | |
| 730 | Sema::OwningExprResult |
| 731 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 732 | FieldDecl *Field, |
| 733 | Expr *BaseObjectExpr, |
| 734 | SourceLocation OpLoc) { |
| 735 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
| 736 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
| 737 | AnonFields); |
| 738 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 739 | // Build the expression that refers to the base object, from |
| 740 | // which we will build a sequence of member references to each |
| 741 | // of the anonymous union objects and, eventually, the field we |
| 742 | // found via name lookup. |
| 743 | bool BaseObjectIsPointer = false; |
| 744 | unsigned ExtraQuals = 0; |
| 745 | if (BaseObject) { |
| 746 | // BaseObject is an anonymous struct/union variable (and is, |
| 747 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 748 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 749 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 750 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 751 | SourceLocation()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 752 | ExtraQuals |
| 753 | = Context.getCanonicalType(BaseObject->getType()).getCVRQualifiers(); |
| 754 | } else if (BaseObjectExpr) { |
| 755 | // The caller provided the base object expression. Determine |
| 756 | // whether its a pointer and whether it adds any qualifiers to the |
| 757 | // anonymous struct/union fields we're looking into. |
| 758 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 759 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 760 | BaseObjectIsPointer = true; |
| 761 | ObjectType = ObjectPtr->getPointeeType(); |
| 762 | } |
| 763 | ExtraQuals = Context.getCanonicalType(ObjectType).getCVRQualifiers(); |
| 764 | } else { |
| 765 | // We've found a member of an anonymous struct/union that is |
| 766 | // inside a non-anonymous struct/union, so in a well-formed |
| 767 | // program our base object expression is "this". |
| 768 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 769 | if (!MD->isStatic()) { |
| 770 | QualType AnonFieldType |
| 771 | = Context.getTagDeclType( |
| 772 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 773 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 774 | if ((Context.getCanonicalType(AnonFieldType) |
| 775 | == Context.getCanonicalType(ThisType)) || |
| 776 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 777 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 778 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 779 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 780 | BaseObjectIsPointer = true; |
| 781 | } |
| 782 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 783 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 784 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 785 | } |
| 786 | ExtraQuals = MD->getTypeQualifiers(); |
| 787 | } |
| 788 | |
| 789 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 790 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 791 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 792 | } |
| 793 | |
| 794 | // Build the implicit member references to the field of the |
| 795 | // anonymous struct/union. |
| 796 | Expr *Result = BaseObjectExpr; |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 797 | unsigned BaseAddrSpace = BaseObjectExpr->getType().getAddressSpace(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 798 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 799 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 800 | FI != FIEnd; ++FI) { |
| 801 | QualType MemberType = (*FI)->getType(); |
| 802 | if (!(*FI)->isMutable()) { |
| 803 | unsigned combinedQualifiers |
| 804 | = MemberType.getCVRQualifiers() | ExtraQuals; |
| 805 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 806 | } |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 807 | if (BaseAddrSpace != MemberType.getAddressSpace()) |
| 808 | MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 809 | MarkDeclarationReferenced(Loc, *FI); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 810 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 811 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 812 | BaseObjectIsPointer = false; |
| 813 | ExtraQuals = Context.getCanonicalType(MemberType).getCVRQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 814 | } |
| 815 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 816 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 817 | } |
| 818 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 819 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 820 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 821 | /// performs lookup on that name and returns an expression that refers |
| 822 | /// to that name. This routine isn't directly called from the parser, |
| 823 | /// because the parser doesn't know about DeclarationName. Rather, |
| 824 | /// this routine is called by ActOnIdentifierExpr, |
| 825 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 826 | /// which form the DeclarationName from the corresponding syntactic |
| 827 | /// forms. |
| 828 | /// |
| 829 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 830 | /// function call context. LookupCtx is only used for a C++ |
| 831 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 832 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 833 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 834 | /// isAddressOfOperand means that this expression is the direct operand |
| 835 | /// of an address-of operator. This matters because this is the only |
| 836 | /// situation where a qualified name referencing a non-static member may |
| 837 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 838 | Sema::OwningExprResult |
| 839 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 840 | DeclarationName Name, bool HasTrailingLParen, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 841 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 842 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 843 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 844 | if (SS && SS->isInvalid()) |
| 845 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 846 | |
| 847 | // C++ [temp.dep.expr]p3: |
| 848 | // An id-expression is type-dependent if it contains: |
| 849 | // -- a nested-name-specifier that contains a class-name that |
| 850 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 851 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 852 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 853 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
| 854 | Loc, SS->getRange(), |
Anders Carlsson | 9b31df4 | 2009-07-09 00:05:08 +0000 | [diff] [blame] | 855 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()), |
| 856 | isAddressOfOperand)); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 857 | } |
| 858 | |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 859 | LookupResult Lookup = LookupParsedName(S, SS, Name, LookupOrdinaryName, |
| 860 | false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 861 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 862 | if (Lookup.isAmbiguous()) { |
| 863 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 864 | SS && SS->isSet() ? SS->getRange() |
| 865 | : SourceRange()); |
| 866 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 867 | } |
| 868 | |
| 869 | NamedDecl *D = Lookup.getAsDecl(); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 870 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 871 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 872 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 873 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 874 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 875 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 876 | // 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] | 877 | // found a decl, but that decl is outside the current instance method (i.e. |
| 878 | // a global variable). In these two cases, we do a lookup for an ivar with |
| 879 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 880 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 881 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 882 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 883 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 884 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 885 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 886 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 887 | |
| 888 | // If we're referencing an invalid decl, just return this as a silent |
| 889 | // error node. The error diagnostic was already emitted on the decl. |
| 890 | if (IV->isInvalidDecl()) |
| 891 | return ExprError(); |
| 892 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 893 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 894 | // If a class method attemps to use a free standing ivar, this is |
| 895 | // an error. |
| 896 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 897 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 898 | << IV->getDeclName()); |
| 899 | // If a class method uses a global variable, even if an ivar with |
| 900 | // same name exists, use the global. |
| 901 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 902 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 903 | ClassDeclared != IFace) |
| 904 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 905 | // FIXME: This should use a new expr for a direct reference, don't |
| 906 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 907 | IdentifierInfo &II = Context.Idents.get("self"); |
Argyrios Kyrtzidis | ecd1bae | 2009-07-18 08:49:37 +0000 | [diff] [blame] | 908 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(), |
| 909 | II, false); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 910 | MarkDeclarationReferenced(Loc, IV); |
Daniel Dunbar | 525c9b7 | 2009-04-21 01:19:28 +0000 | [diff] [blame] | 911 | return Owned(new (Context) |
| 912 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 913 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 914 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 915 | } |
| 916 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 917 | else if (getCurMethodDecl()->isInstanceMethod()) { |
| 918 | // We should warn if a local variable hides an ivar. |
| 919 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 920 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 921 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 922 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 923 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 924 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 925 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 926 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 927 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 928 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 929 | QualType T; |
| 930 | |
| 931 | if (getCurMethodDecl()->isInstanceMethod()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 932 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 933 | getCurMethodDecl()->getClassInterface())); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 934 | else |
| 935 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 936 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 937 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 938 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 939 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 940 | // Determine whether this name might be a candidate for |
| 941 | // argument-dependent lookup. |
| 942 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 943 | HasTrailingLParen; |
| 944 | |
| 945 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 946 | // We've seen something of the form |
| 947 | // |
| 948 | // identifier( |
| 949 | // |
| 950 | // and we did not find any entity by the name |
| 951 | // "identifier". However, this identifier is still subject to |
| 952 | // argument-dependent lookup, so keep track of the name. |
| 953 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 954 | Context.OverloadTy, |
| 955 | Loc)); |
| 956 | } |
| 957 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 958 | if (D == 0) { |
| 959 | // Otherwise, this could be an implicitly declared function reference (legal |
| 960 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 961 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 962 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 963 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 964 | else { |
| 965 | // If this name wasn't predeclared and if this is not a function call, |
| 966 | // diagnose the problem. |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 967 | if (SS && !SS->isEmpty()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 968 | return ExprError(Diag(Loc, diag::err_typecheck_no_member) |
| 969 | << Name << SS->getRange()); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 970 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
| 971 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 972 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 973 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 974 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 975 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 976 | } |
| 977 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 978 | |
| 979 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 980 | // Warn about constructs like: |
| 981 | // if (void *X = foo()) { ... } else { X }. |
| 982 | // In the else block, the pointer is always false. |
| 983 | |
| 984 | // FIXME: In a template instantiation, we don't have scope |
| 985 | // information to check this property. |
| 986 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 987 | Scope *CheckS = S; |
| 988 | while (CheckS) { |
| 989 | if (CheckS->isWithinElse() && |
| 990 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
| 991 | if (Var->getType()->isBooleanType()) |
| 992 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 993 | << Var->getDeclName()); |
| 994 | else |
| 995 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 996 | << Var->getDeclName()); |
| 997 | break; |
| 998 | } |
| 999 | |
| 1000 | // Move up one more control parent to check again. |
| 1001 | CheckS = CheckS->getControlParent(); |
| 1002 | if (CheckS) |
| 1003 | CheckS = CheckS->getParent(); |
| 1004 | } |
| 1005 | } |
| 1006 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { |
| 1007 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 1008 | // C99 DR 316 says that, if a function type comes from a |
| 1009 | // function definition (without a prototype), that type is only |
| 1010 | // used for checking compatibility. Therefore, when referencing |
| 1011 | // the function, we pretend that we don't have the full function |
| 1012 | // type. |
| 1013 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 1014 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1015 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1016 | QualType T = Func->getType(); |
| 1017 | QualType NoProtoType = T; |
| 1018 | if (const FunctionProtoType *Proto = T->getAsFunctionProtoType()) |
| 1019 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
| 1020 | return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); |
| 1021 | } |
| 1022 | } |
| 1023 | |
| 1024 | return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); |
| 1025 | } |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1026 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1027 | bool |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1028 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 1029 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
| 1030 | if (CXXRecordDecl *RD = |
| 1031 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
| 1032 | QualType DestType = |
| 1033 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1034 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 1035 | return false; |
| 1036 | QualType FromRecordType = From->getType(); |
| 1037 | QualType DestRecordType = DestType; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1038 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1039 | DestType = Context.getPointerType(DestType); |
| 1040 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1041 | } |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 1042 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 1043 | CheckDerivedToBaseConversion(FromRecordType, |
| 1044 | DestRecordType, |
| 1045 | From->getSourceRange().getBegin(), |
| 1046 | From->getSourceRange())) |
| 1047 | return true; |
| 1048 | ImpCastExprToType(From, DestType, /*isLvalue=*/true); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1049 | } |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1050 | return false; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 1051 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1052 | |
| 1053 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 1054 | Sema::OwningExprResult |
| 1055 | Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 1056 | bool HasTrailingLParen, |
| 1057 | const CXXScopeSpec *SS, |
| 1058 | bool isAddressOfOperand) { |
| 1059 | assert(D && "Cannot refer to a NULL declaration"); |
| 1060 | DeclarationName Name = D->getDeclName(); |
| 1061 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1062 | // If this is an expression of the form &Class::member, don't build an |
| 1063 | // implicit member ref, because we want a pointer to the member in general, |
| 1064 | // not any specific instance's member. |
| 1065 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1066 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1067 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1068 | QualType DType; |
| 1069 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 1070 | DType = FD->getType().getNonReferenceType(); |
| 1071 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1072 | DType = Method->getType(); |
| 1073 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 1074 | DType = Context.OverloadTy; |
| 1075 | } |
| 1076 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 1077 | if (!DType.isNull()) { |
| 1078 | // The pointer is type- and value-dependent if it points into something |
| 1079 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 1080 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1081 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 1082 | } |
| 1083 | } |
| 1084 | } |
| 1085 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1086 | // We may have found a field within an anonymous union or struct |
| 1087 | // (C++ [class.union]). |
| 1088 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 1089 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 1090 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1091 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1092 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1093 | if (!MD->isStatic()) { |
| 1094 | // C++ [class.mfct.nonstatic]p2: |
| 1095 | // [...] if name lookup (3.4.1) resolves the name in the |
| 1096 | // id-expression to a nonstatic nontype member of class X or of |
| 1097 | // a base class of X, the id-expression is transformed into a |
| 1098 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 1099 | // as the postfix-expression to the left of the '.' operator. |
| 1100 | DeclContext *Ctx = 0; |
| 1101 | QualType MemberType; |
| 1102 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 1103 | Ctx = FD->getDeclContext(); |
| 1104 | MemberType = FD->getType(); |
| 1105 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1106 | if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1107 | MemberType = RefType->getPointeeType(); |
| 1108 | else if (!FD->isMutable()) { |
| 1109 | unsigned combinedQualifiers |
| 1110 | = MemberType.getCVRQualifiers() | MD->getTypeQualifiers(); |
| 1111 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
| 1112 | } |
| 1113 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 1114 | if (!Method->isStatic()) { |
| 1115 | Ctx = Method->getParent(); |
| 1116 | MemberType = Method->getType(); |
| 1117 | } |
| 1118 | } else if (OverloadedFunctionDecl *Ovl |
| 1119 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
| 1120 | for (OverloadedFunctionDecl::function_iterator |
| 1121 | Func = Ovl->function_begin(), |
| 1122 | FuncEnd = Ovl->function_end(); |
| 1123 | Func != FuncEnd; ++Func) { |
| 1124 | if (CXXMethodDecl *DMethod = dyn_cast<CXXMethodDecl>(*Func)) |
| 1125 | if (!DMethod->isStatic()) { |
| 1126 | Ctx = Ovl->getDeclContext(); |
| 1127 | MemberType = Context.OverloadTy; |
| 1128 | break; |
| 1129 | } |
| 1130 | } |
| 1131 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1132 | |
| 1133 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1134 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 1135 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
| 1136 | if ((Context.getCanonicalType(CtxType) |
| 1137 | == Context.getCanonicalType(ThisType)) || |
| 1138 | IsDerivedFrom(ThisType, CtxType)) { |
| 1139 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1140 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1141 | MD->getThisType(Context)); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1142 | MarkDeclarationReferenced(Loc, D); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1143 | if (PerformObjectMemberConversion(This, D)) |
| 1144 | return ExprError(); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1145 | return Owned(new (Context) MemberExpr(This, true, D, |
Eli Friedman | 7252713 | 2009-04-29 17:56:47 +0000 | [diff] [blame] | 1146 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1147 | } |
| 1148 | } |
| 1149 | } |
| 1150 | } |
| 1151 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1152 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1153 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1154 | if (MD->isStatic()) |
| 1155 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1156 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 1157 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1158 | } |
| 1159 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1160 | // Any other ways we could have found the field in a well-formed |
| 1161 | // program would have been turned into implicit member expressions |
| 1162 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1163 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 1164 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1165 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1166 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1167 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1168 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1169 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1170 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1171 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1172 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1173 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1174 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 1175 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1176 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 1177 | false, false, SS); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1178 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1179 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 1180 | false, false, SS); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1181 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1182 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1183 | // Check whether this declaration can be used. Note that we suppress |
| 1184 | // this check when we're going to perform argument-dependent lookup |
| 1185 | // on this function name, because this might not be the function |
| 1186 | // that overload resolution actually selects. |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1187 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
| 1188 | HasTrailingLParen; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1189 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1190 | return ExprError(); |
| 1191 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1192 | // Only create DeclRefExpr's for valid Decl's. |
| 1193 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1194 | return ExprError(); |
| 1195 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1196 | // If the identifier reference is inside a block, and it refers to a value |
| 1197 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1198 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1199 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1200 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1201 | // We do not do this for things like enum constants, global variables, etc, |
| 1202 | // as they do not get snapshotted. |
| 1203 | // |
| 1204 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1205 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1206 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1207 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1208 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1209 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1210 | // This is to record that a 'const' was actually synthesize and added. |
| 1211 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1212 | // Variable will be bound by-copy, make it const within the closure. |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1213 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1214 | ExprTy.addConst(); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1215 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
| 1216 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1217 | } |
| 1218 | // If this reference is not in a block or if the referenced variable is |
| 1219 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1220 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1221 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1222 | bool ValueDependent = false; |
| 1223 | if (getLangOptions().CPlusPlus) { |
| 1224 | // C++ [temp.dep.expr]p3: |
| 1225 | // An id-expression is type-dependent if it contains: |
| 1226 | // - an identifier that was declared with a dependent type, |
| 1227 | if (VD->getType()->isDependentType()) |
| 1228 | TypeDependent = true; |
| 1229 | // - FIXME: a template-id that is dependent, |
| 1230 | // - a conversion-function-id that specifies a dependent type, |
| 1231 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1232 | Name.getCXXNameType()->isDependentType()) |
| 1233 | TypeDependent = true; |
| 1234 | // - a nested-name-specifier that contains a class-name that |
| 1235 | // names a dependent type. |
| 1236 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1237 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1238 | DC; DC = DC->getParent()) { |
| 1239 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1240 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1241 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1242 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1243 | TypeDependent = true; |
| 1244 | break; |
| 1245 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1246 | } |
| 1247 | } |
| 1248 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1249 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1250 | // C++ [temp.dep.constexpr]p2: |
| 1251 | // |
| 1252 | // An identifier is value-dependent if it is: |
| 1253 | // - a name declared with a dependent type, |
| 1254 | if (TypeDependent) |
| 1255 | ValueDependent = true; |
| 1256 | // - the name of a non-type template parameter, |
| 1257 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1258 | ValueDependent = true; |
| 1259 | // - a constant with integral or enumeration type and is |
| 1260 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1261 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
| 1262 | if (Dcl->getType().getCVRQualifiers() == QualType::Const && |
| 1263 | Dcl->getInit()) { |
| 1264 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1265 | } |
| 1266 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1267 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1268 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1269 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1270 | TypeDependent, ValueDependent, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1271 | } |
| 1272 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1273 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1274 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1275 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1276 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1277 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1278 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1279 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1280 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1281 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1282 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1283 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1284 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1285 | // string. |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1286 | unsigned Length; |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 1287 | if (FunctionDecl *FD = getCurFunctionDecl()) |
| 1288 | Length = FD->getIdentifier()->getLength(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1289 | else if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 1290 | Length = MD->getSynthesizedMethodSize(); |
| 1291 | else { |
| 1292 | Diag(Loc, diag::ext_predef_outside_function); |
| 1293 | // __PRETTY_FUNCTION__ -> "top level", the others produce an empty string. |
| 1294 | Length = IT == PredefinedExpr::PrettyFunction ? strlen("top level") : 0; |
| 1295 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1296 | |
| 1297 | |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1298 | llvm::APInt LengthI(32, Length + 1); |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1299 | QualType ResTy = Context.CharTy.getQualifiedType(QualType::Const); |
Chris Lattner | 8f978d5 | 2008-01-12 19:32:28 +0000 | [diff] [blame] | 1300 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1301 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1302 | } |
| 1303 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1304 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1305 | llvm::SmallString<16> CharBuffer; |
| 1306 | CharBuffer.resize(Tok.getLength()); |
| 1307 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1308 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1309 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1310 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1311 | Tok.getLocation(), PP); |
| 1312 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1313 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1314 | |
| 1315 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1316 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1317 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1318 | Literal.isWide(), |
| 1319 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1320 | } |
| 1321 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1322 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1323 | // 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] | 1324 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1325 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1326 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1327 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1328 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1329 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1330 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1331 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1332 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1333 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1334 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1335 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1336 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1337 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1338 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1339 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1340 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1341 | Tok.getLocation(), PP); |
| 1342 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1343 | return ExprError(); |
| 1344 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1345 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1346 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1347 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1348 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1349 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1350 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1351 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1352 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1353 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1354 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1355 | |
| 1356 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1357 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1358 | // isExact will be set by GetFloatValue(). |
| 1359 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1360 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1361 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1362 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1363 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1364 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1365 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1366 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1367 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1368 | // long long is a C99 feature. |
| 1369 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1370 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1371 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1372 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1373 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1374 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1375 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1376 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1377 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1378 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1379 | Ty = Context.UnsignedLongLongTy; |
| 1380 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1381 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1382 | } else { |
| 1383 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1384 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1385 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1386 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1387 | // be an unsigned int. |
| 1388 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1389 | |
| 1390 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1391 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1392 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1393 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1394 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1395 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1396 | // Does it fit in a unsigned int? |
| 1397 | if (ResultVal.isIntN(IntSize)) { |
| 1398 | // Does it fit in a signed int? |
| 1399 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1400 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1401 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1402 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1403 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1404 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1405 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1406 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1408 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1409 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1410 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1411 | // Does it fit in a unsigned long? |
| 1412 | if (ResultVal.isIntN(LongSize)) { |
| 1413 | // Does it fit in a signed long? |
| 1414 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1415 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1416 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1417 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1418 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1419 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1422 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1423 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1424 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1425 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1426 | // Does it fit in a unsigned long long? |
| 1427 | if (ResultVal.isIntN(LongLongSize)) { |
| 1428 | // Does it fit in a signed long long? |
| 1429 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1430 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1431 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1432 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1433 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1434 | } |
| 1435 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1436 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1437 | // If we still couldn't decide a type, we probably have something that |
| 1438 | // 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] | 1439 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1440 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1441 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1442 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1443 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1444 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1445 | if (ResultVal.getBitWidth() != Width) |
| 1446 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1447 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1448 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1449 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1450 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1451 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1452 | if (Literal.isImaginary) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1453 | Res = new (Context) ImaginaryLiteral(Res, |
| 1454 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1455 | |
| 1456 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1457 | } |
| 1458 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1459 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1460 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1461 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1462 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1463 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1464 | } |
| 1465 | |
| 1466 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1467 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1468 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1469 | SourceLocation OpLoc, |
| 1470 | const SourceRange &ExprRange, |
| 1471 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1472 | if (exprType->isDependentType()) |
| 1473 | return false; |
| 1474 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1475 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1476 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1477 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1478 | if (isSizeof) |
| 1479 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1480 | return false; |
| 1481 | } |
| 1482 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1483 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1484 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1485 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1486 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1487 | return false; |
| 1488 | } |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1489 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1490 | if (RequireCompleteType(OpLoc, exprType, |
| 1491 | isSizeof ? diag::err_sizeof_incomplete_type : |
| 1492 | diag::err_alignof_incomplete_type, |
| 1493 | ExprRange)) |
| 1494 | return true; |
| 1495 | |
| 1496 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1497 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1498 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1499 | << exprType << isSizeof << ExprRange; |
| 1500 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1501 | } |
| 1502 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1503 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1504 | } |
| 1505 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1506 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1507 | const SourceRange &ExprRange) { |
| 1508 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1509 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1510 | // alignof decl is always ok. |
| 1511 | if (isa<DeclRefExpr>(E)) |
| 1512 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1513 | |
| 1514 | // Cannot know anything else if the expression is dependent. |
| 1515 | if (E->isTypeDependent()) |
| 1516 | return false; |
| 1517 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1518 | if (E->getBitField()) { |
| 1519 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1520 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1521 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1522 | |
| 1523 | // Alignment of a field access is always okay, so long as it isn't a |
| 1524 | // bit-field. |
| 1525 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1526 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1527 | return false; |
| 1528 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1529 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1530 | } |
| 1531 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1532 | /// \brief Build a sizeof or alignof expression given a type operand. |
| 1533 | Action::OwningExprResult |
| 1534 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
| 1535 | bool isSizeOf, SourceRange R) { |
| 1536 | if (T.isNull()) |
| 1537 | return ExprError(); |
| 1538 | |
| 1539 | if (!T->isDependentType() && |
| 1540 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1541 | return ExprError(); |
| 1542 | |
| 1543 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1544 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1545 | Context.getSizeType(), OpLoc, |
| 1546 | R.getEnd())); |
| 1547 | } |
| 1548 | |
| 1549 | /// \brief Build a sizeof or alignof expression given an expression |
| 1550 | /// operand. |
| 1551 | Action::OwningExprResult |
| 1552 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1553 | bool isSizeOf, SourceRange R) { |
| 1554 | // Verify that the operand is valid. |
| 1555 | bool isInvalid = false; |
| 1556 | if (E->isTypeDependent()) { |
| 1557 | // Delay type-checking for type-dependent expressions. |
| 1558 | } else if (!isSizeOf) { |
| 1559 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1560 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1561 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1562 | isInvalid = true; |
| 1563 | } else { |
| 1564 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1565 | } |
| 1566 | |
| 1567 | if (isInvalid) |
| 1568 | return ExprError(); |
| 1569 | |
| 1570 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1571 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1572 | Context.getSizeType(), OpLoc, |
| 1573 | R.getEnd())); |
| 1574 | } |
| 1575 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1576 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1577 | /// the same for @c alignof and @c __alignof |
| 1578 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1579 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1580 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1581 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1582 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1583 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1584 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1585 | if (isType) { |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1586 | QualType ArgTy = QualType::getFromOpaquePtr(TyOrEx); |
| 1587 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
| 1588 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1589 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1590 | // Get the end location. |
| 1591 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1592 | Action::OwningExprResult Result |
| 1593 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1594 | |
| 1595 | if (Result.isInvalid()) |
| 1596 | DeleteExpr(ArgEx); |
| 1597 | |
| 1598 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1599 | } |
| 1600 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1601 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1602 | if (V->isTypeDependent()) |
| 1603 | return Context.DependentTy; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1604 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1605 | // These operators return the element type of a complex type. |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1606 | if (const ComplexType *CT = V->getType()->getAsComplexType()) |
| 1607 | return CT->getElementType(); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1608 | |
| 1609 | // Otherwise they pass through real integer and floating point types here. |
| 1610 | if (V->getType()->isArithmeticType()) |
| 1611 | return V->getType(); |
| 1612 | |
| 1613 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1614 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1615 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1616 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1617 | } |
| 1618 | |
| 1619 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1620 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1621 | Action::OwningExprResult |
| 1622 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1623 | tok::TokenKind Kind, ExprArg Input) { |
| 1624 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1625 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1626 | UnaryOperator::Opcode Opc; |
| 1627 | switch (Kind) { |
| 1628 | default: assert(0 && "Unknown unary op!"); |
| 1629 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1630 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1631 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1632 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1633 | if (getLangOptions().CPlusPlus && |
| 1634 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1635 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1636 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1637 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1638 | |
| 1639 | // C++ [over.inc]p1: |
| 1640 | // |
| 1641 | // [...] If the function is a member function with one |
| 1642 | // parameter (which shall be of type int) or a non-member |
| 1643 | // function with two parameters (the second of which shall be |
| 1644 | // of type int), it defines the postfix increment operator ++ |
| 1645 | // for objects of that type. When the postfix increment is |
| 1646 | // called as a result of using the ++ operator, the int |
| 1647 | // argument will have value zero. |
| 1648 | Expr *Args[2] = { |
| 1649 | Arg, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1650 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
| 1651 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1652 | }; |
| 1653 | |
| 1654 | // Build the candidate set for overloading |
| 1655 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1656 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1657 | |
| 1658 | // Perform overload resolution. |
| 1659 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1660 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1661 | case OR_Success: { |
| 1662 | // We found a built-in operator or an overloaded operator. |
| 1663 | FunctionDecl *FnDecl = Best->Function; |
| 1664 | |
| 1665 | if (FnDecl) { |
| 1666 | // We matched an overloaded operator. Build a call to that |
| 1667 | // operator. |
| 1668 | |
| 1669 | // Convert the arguments. |
| 1670 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1671 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1672 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1673 | } else { |
| 1674 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1675 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1676 | FnDecl->getParamDecl(0)->getType(), |
| 1677 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1678 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1679 | } |
| 1680 | |
| 1681 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1682 | QualType ResultTy |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1683 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1684 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1685 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1686 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1687 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1688 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1689 | UsualUnaryConversions(FnExpr); |
| 1690 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1691 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1692 | Args[0] = Arg; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1693 | return Owned(new (Context) CXXOperatorCallExpr(Context, OverOp, FnExpr, |
| 1694 | Args, 2, ResultTy, |
| 1695 | OpLoc)); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1696 | } else { |
| 1697 | // We matched a built-in operator. Convert the arguments, then |
| 1698 | // break out so that we will build the appropriate built-in |
| 1699 | // operator node. |
| 1700 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1701 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1702 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1703 | |
| 1704 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1705 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1706 | } |
| 1707 | |
| 1708 | case OR_No_Viable_Function: |
| 1709 | // No viable function; fall through to handling this as a |
| 1710 | // built-in operator, which will produce an error message for us. |
| 1711 | break; |
| 1712 | |
| 1713 | case OR_Ambiguous: |
| 1714 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1715 | << UnaryOperator::getOpcodeStr(Opc) |
| 1716 | << Arg->getSourceRange(); |
| 1717 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1718 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1719 | |
| 1720 | case OR_Deleted: |
| 1721 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1722 | << Best->Function->isDeleted() |
| 1723 | << UnaryOperator::getOpcodeStr(Opc) |
| 1724 | << Arg->getSourceRange(); |
| 1725 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1726 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1727 | } |
| 1728 | |
| 1729 | // Either we found no viable overloaded operator or we matched a |
| 1730 | // built-in operator. In either case, fall through to trying to |
| 1731 | // build a built-in operation. |
| 1732 | } |
| 1733 | |
Eli Friedman | 6016cb2 | 2009-07-22 23:24:42 +0000 | [diff] [blame] | 1734 | Input.release(); |
| 1735 | Input = Arg; |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 1736 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1737 | } |
| 1738 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1739 | Action::OwningExprResult |
| 1740 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1741 | ExprArg Idx, SourceLocation RLoc) { |
| 1742 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1743 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1744 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1745 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1746 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1747 | Base.release(); |
| 1748 | Idx.release(); |
| 1749 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1750 | Context.DependentTy, RLoc)); |
| 1751 | } |
| 1752 | |
| 1753 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1754 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1755 | LHSExp->getType()->isEnumeralType() || |
| 1756 | RHSExp->getType()->isRecordType() || |
| 1757 | RHSExp->getType()->isEnumeralType())) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1758 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
| 1759 | // to the candidate set. |
| 1760 | OverloadCandidateSet CandidateSet; |
| 1761 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1762 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1763 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1764 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1765 | // Perform overload resolution. |
| 1766 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1767 | switch (BestViableFunction(CandidateSet, LLoc, Best)) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1768 | case OR_Success: { |
| 1769 | // We found a built-in operator or an overloaded operator. |
| 1770 | FunctionDecl *FnDecl = Best->Function; |
| 1771 | |
| 1772 | if (FnDecl) { |
| 1773 | // We matched an overloaded operator. Build a call to that |
| 1774 | // operator. |
| 1775 | |
| 1776 | // Convert the arguments. |
| 1777 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1778 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
| 1779 | PerformCopyInitialization(RHSExp, |
| 1780 | FnDecl->getParamDecl(0)->getType(), |
| 1781 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1782 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1783 | } else { |
| 1784 | // Convert the arguments. |
| 1785 | if (PerformCopyInitialization(LHSExp, |
| 1786 | FnDecl->getParamDecl(0)->getType(), |
| 1787 | "passing") || |
| 1788 | PerformCopyInitialization(RHSExp, |
| 1789 | FnDecl->getParamDecl(1)->getType(), |
| 1790 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1791 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1792 | } |
| 1793 | |
| 1794 | // Determine the result type |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1795 | QualType ResultTy |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1796 | = FnDecl->getType()->getAsFunctionType()->getResultType(); |
| 1797 | ResultTy = ResultTy.getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1798 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1799 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1800 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1801 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1802 | UsualUnaryConversions(FnExpr); |
| 1803 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1804 | Base.release(); |
| 1805 | Idx.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1806 | Args[0] = LHSExp; |
| 1807 | Args[1] = RHSExp; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1808 | return Owned(new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1809 | FnExpr, Args, 2, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1810 | ResultTy, LLoc)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1811 | } else { |
| 1812 | // We matched a built-in operator. Convert the arguments, then |
| 1813 | // break out so that we will build the appropriate built-in |
| 1814 | // operator node. |
| 1815 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1816 | "passing") || |
| 1817 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1818 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1819 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1820 | |
| 1821 | break; |
| 1822 | } |
| 1823 | } |
| 1824 | |
| 1825 | case OR_No_Viable_Function: |
| 1826 | // No viable function; fall through to handling this as a |
| 1827 | // built-in operator, which will produce an error message for us. |
| 1828 | break; |
| 1829 | |
| 1830 | case OR_Ambiguous: |
| 1831 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1832 | << "[]" |
| 1833 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1834 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1835 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1836 | |
| 1837 | case OR_Deleted: |
| 1838 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1839 | << Best->Function->isDeleted() |
| 1840 | << "[]" |
| 1841 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1842 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1843 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1844 | } |
| 1845 | |
| 1846 | // Either we found no viable overloaded operator or we matched a |
| 1847 | // built-in operator. In either case, fall through to trying to |
| 1848 | // build a built-in operation. |
| 1849 | } |
| 1850 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1851 | // Perform default conversions. |
| 1852 | DefaultFunctionArrayConversion(LHSExp); |
| 1853 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1854 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1855 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1856 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1857 | // 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] | 1858 | // 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] | 1859 | // 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] | 1860 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1861 | Expr *BaseExpr, *IndexExpr; |
| 1862 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1863 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1864 | BaseExpr = LHSExp; |
| 1865 | IndexExpr = RHSExp; |
| 1866 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1867 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1868 | BaseExpr = LHSExp; |
| 1869 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1870 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1871 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1872 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1873 | BaseExpr = RHSExp; |
| 1874 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1875 | ResultType = PTy->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1876 | } else if (const ObjCObjectPointerType *PTy = |
| 1877 | LHSTy->getAsObjCObjectPointerType()) { |
| 1878 | BaseExpr = LHSExp; |
| 1879 | IndexExpr = RHSExp; |
| 1880 | ResultType = PTy->getPointeeType(); |
| 1881 | } else if (const ObjCObjectPointerType *PTy = |
| 1882 | RHSTy->getAsObjCObjectPointerType()) { |
| 1883 | // Handle the uncommon case of "123[Ptr]". |
| 1884 | BaseExpr = RHSExp; |
| 1885 | IndexExpr = LHSExp; |
| 1886 | ResultType = PTy->getPointeeType(); |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1887 | } else if (const VectorType *VTy = LHSTy->getAsVectorType()) { |
| 1888 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1889 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1890 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1891 | // FIXME: need to deal with const... |
| 1892 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1893 | } else if (LHSTy->isArrayType()) { |
| 1894 | // If we see an array that wasn't promoted by |
| 1895 | // DefaultFunctionArrayConversion, it must be an array that |
| 1896 | // wasn't promoted because of the C90 rule that doesn't |
| 1897 | // allow promoting non-lvalue arrays. Warn, then |
| 1898 | // force the promotion here. |
| 1899 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1900 | LHSExp->getSourceRange(); |
| 1901 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1902 | LHSTy = LHSExp->getType(); |
| 1903 | |
| 1904 | BaseExpr = LHSExp; |
| 1905 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1906 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1907 | } else if (RHSTy->isArrayType()) { |
| 1908 | // Same as previous, except for 123[f().a] case |
| 1909 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1910 | RHSExp->getSourceRange(); |
| 1911 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1912 | RHSTy = RHSExp->getType(); |
| 1913 | |
| 1914 | BaseExpr = RHSExp; |
| 1915 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1916 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1917 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1918 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1919 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1920 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1921 | // C99 6.5.2.1p1 |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1922 | if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1923 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1924 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1925 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1926 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
| 1927 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1928 | // type. Note that Functions are not objects, and that (in C99 parlance) |
| 1929 | // incomplete types are not object types. |
| 1930 | if (ResultType->isFunctionType()) { |
| 1931 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1932 | << ResultType << BaseExpr->getSourceRange(); |
| 1933 | return ExprError(); |
| 1934 | } |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1935 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1936 | if (!ResultType->isDependentType() && |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1937 | RequireCompleteType(LLoc, ResultType, diag::err_subscript_incomplete_type, |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1938 | BaseExpr->getSourceRange())) |
| 1939 | return ExprError(); |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1940 | |
| 1941 | // Diagnose bad cases where we step over interface counts. |
| 1942 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1943 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1944 | << ResultType << BaseExpr->getSourceRange(); |
| 1945 | return ExprError(); |
| 1946 | } |
| 1947 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1948 | Base.release(); |
| 1949 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1950 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1951 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1952 | } |
| 1953 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1954 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1955 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1956 | IdentifierInfo &CompName, SourceLocation CompLoc) { |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1957 | const ExtVectorType *vecType = baseType->getAsExtVectorType(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1958 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1959 | // The vector accessor can't exceed the number of elements. |
| 1960 | const char *compStr = CompName.getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1961 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1962 | // 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] | 1963 | // special names that indicate a subset of exactly half the elements are |
| 1964 | // to be selected. |
| 1965 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1966 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1967 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1968 | // indicating that it is a string of hex values to be used as vector indices. |
Nate Begeman | 131f465 | 2009-06-25 21:06:09 +0000 | [diff] [blame] | 1969 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1970 | |
| 1971 | // Check that we've found one of the special components, or that the component |
| 1972 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1973 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1974 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1975 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1976 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1977 | do |
| 1978 | compStr++; |
| 1979 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1980 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1981 | do |
| 1982 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1983 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1984 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1985 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1986 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1987 | // We didn't get to the end of the string. This means the component names |
| 1988 | // 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] | 1989 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1990 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1991 | return QualType(); |
| 1992 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1993 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1994 | // Ensure no component accessor exceeds the width of the vector type it |
| 1995 | // operates on. |
| 1996 | if (!HalvingSwizzle) { |
| 1997 | compStr = CompName.getName(); |
| 1998 | |
| 1999 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2000 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2001 | |
| 2002 | while (*compStr) { |
| 2003 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 2004 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 2005 | << baseType << SourceRange(CompLoc); |
| 2006 | return QualType(); |
| 2007 | } |
| 2008 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2009 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2010 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2011 | // If this is a halving swizzle, verify that the base type has an even |
| 2012 | // number of elements. |
| 2013 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2014 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2015 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2016 | return QualType(); |
| 2017 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2018 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2019 | // 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] | 2020 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2021 | // 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] | 2022 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 2023 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 2024 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
| 2025 | : CompName.getLength(); |
| 2026 | if (HexSwizzle) |
| 2027 | CompSize--; |
| 2028 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 2029 | if (CompSize == 1) |
| 2030 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2031 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2032 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2033 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 2034 | // diagostics look bad. We want extended vector types to appear built-in. |
| 2035 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 2036 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 2037 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 2038 | } |
| 2039 | 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] | 2040 | } |
| 2041 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2042 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
| 2043 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2044 | const Selector &Sel, |
| 2045 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2046 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2047 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(&Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2048 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2049 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2050 | return OMD; |
| 2051 | |
| 2052 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 2053 | E = PDecl->protocol_end(); I != E; ++I) { |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2054 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
| 2055 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2056 | return D; |
| 2057 | } |
| 2058 | return 0; |
| 2059 | } |
| 2060 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2061 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2062 | IdentifierInfo &Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2063 | const Selector &Sel, |
| 2064 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2065 | // Check protocols on qualified interfaces. |
| 2066 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2067 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2068 | E = QIdTy->qual_end(); I != E; ++I) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2069 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2070 | GDecl = PD; |
| 2071 | break; |
| 2072 | } |
| 2073 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2074 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2075 | GDecl = OMD; |
| 2076 | break; |
| 2077 | } |
| 2078 | } |
| 2079 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2080 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2081 | E = QIdTy->qual_end(); I != E; ++I) { |
| 2082 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2083 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2084 | if (GDecl) |
| 2085 | return GDecl; |
| 2086 | } |
| 2087 | } |
| 2088 | return GDecl; |
| 2089 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2090 | |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2091 | /// FindMethodInNestedImplementations - Look up a method in current and |
| 2092 | /// all base class implementations. |
| 2093 | /// |
| 2094 | ObjCMethodDecl *Sema::FindMethodInNestedImplementations( |
| 2095 | const ObjCInterfaceDecl *IFace, |
| 2096 | const Selector &Sel) { |
| 2097 | ObjCMethodDecl *Method = 0; |
Argyrios Kyrtzidis | 8701877 | 2009-07-21 00:06:04 +0000 | [diff] [blame] | 2098 | if (ObjCImplementationDecl *ImpDecl = IFace->getImplementation()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2099 | Method = ImpDecl->getInstanceMethod(Sel); |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2100 | |
| 2101 | if (!Method && IFace->getSuperClass()) |
| 2102 | return FindMethodInNestedImplementations(IFace->getSuperClass(), Sel); |
| 2103 | return Method; |
| 2104 | } |
| 2105 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2106 | Action::OwningExprResult |
| 2107 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2108 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Fariborz Jahanian | a6e3ac5 | 2009-03-04 22:30:12 +0000 | [diff] [blame] | 2109 | IdentifierInfo &Member, |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 2110 | DeclPtrTy ObjCImpDecl) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2111 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2112 | assert(BaseExpr && "no record expression"); |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2113 | |
| 2114 | // Perform default conversions. |
| 2115 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2116 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2117 | QualType BaseType = BaseExpr->getType(); |
| 2118 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2119 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2120 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2121 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2122 | if (OpKind == tok::arrow) { |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2123 | if (BaseType->isDependentType()) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2124 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2125 | BaseExpr, true, |
| 2126 | OpLoc, |
| 2127 | DeclarationName(&Member), |
| 2128 | MemberLoc)); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2129 | else if (const PointerType *PT = BaseType->getAs<PointerType>()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2130 | BaseType = PT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2131 | else if (BaseType->isObjCObjectPointerType()) |
| 2132 | ; |
Douglas Gregor | 8ba1074 | 2008-11-20 16:27:02 +0000 | [diff] [blame] | 2133 | else if (getLangOptions().CPlusPlus && BaseType->isRecordType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2134 | return Owned(BuildOverloadedArrowExpr(S, BaseExpr, OpLoc, |
| 2135 | MemberLoc, Member)); |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2136 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2137 | return ExprError(Diag(MemberLoc, |
| 2138 | diag::err_typecheck_member_reference_arrow) |
| 2139 | << BaseType << BaseExpr->getSourceRange()); |
Anders Carlsson | ffce2df | 2009-05-15 23:10:19 +0000 | [diff] [blame] | 2140 | } else { |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2141 | if (BaseType->isDependentType()) { |
| 2142 | // Require that the base type isn't a pointer type |
| 2143 | // (so we'll report an error for) |
| 2144 | // T* t; |
| 2145 | // t.f; |
| 2146 | // |
| 2147 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2148 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2149 | // allows this, while still reporting an error if T is a struct pointer. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2150 | const PointerType *PT = BaseType->getAs<PointerType>(); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2151 | |
| 2152 | if (!PT || (getLangOptions().ObjC1 && |
| 2153 | !PT->getPointeeType()->isRecordType())) |
Douglas Gregor | 1c0ca59 | 2009-05-22 21:13:27 +0000 | [diff] [blame] | 2154 | return Owned(new (Context) CXXUnresolvedMemberExpr(Context, |
| 2155 | BaseExpr, false, |
| 2156 | OpLoc, |
| 2157 | DeclarationName(&Member), |
| 2158 | MemberLoc)); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2159 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2160 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2161 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2162 | // Handle field access to simple records. This also handles access to fields |
| 2163 | // of the ObjC 'id' struct. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2164 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2165 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2166 | if (RequireCompleteType(OpLoc, BaseType, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2167 | diag::err_typecheck_incomplete_tag, |
| 2168 | BaseExpr->getSourceRange())) |
| 2169 | return ExprError(); |
| 2170 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2171 | // The record definition is complete, now make sure the member is valid. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2172 | // FIXME: Qualified name lookup for C++ is a bit more complicated than this. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2173 | LookupResult Result |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2174 | = LookupQualifiedName(RDecl, DeclarationName(&Member), |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2175 | LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2176 | |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2177 | if (!Result) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2178 | return ExprError(Diag(MemberLoc, diag::err_typecheck_no_member) |
| 2179 | << &Member << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2180 | if (Result.isAmbiguous()) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2181 | DiagnoseAmbiguousLookup(Result, DeclarationName(&Member), |
| 2182 | MemberLoc, BaseExpr->getSourceRange()); |
| 2183 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2184 | } |
| 2185 | |
| 2186 | NamedDecl *MemberDecl = Result; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 2187 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2188 | // If the decl being referenced had an error, return an error for this |
| 2189 | // sub-expr without emitting another error, in order to avoid cascading |
| 2190 | // error cases. |
| 2191 | if (MemberDecl->isInvalidDecl()) |
| 2192 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2193 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2194 | // Check the use of this field |
| 2195 | if (DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
| 2196 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2197 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2198 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2199 | // We may have found a field within an anonymous union or struct |
| 2200 | // (C++ [class.union]). |
| 2201 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2202 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2203 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2204 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2205 | // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref] |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2206 | QualType MemberType = FD->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2207 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2208 | MemberType = Ref->getPointeeType(); |
| 2209 | else { |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 2210 | unsigned BaseAddrSpace = BaseType.getAddressSpace(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2211 | unsigned combinedQualifiers = |
| 2212 | MemberType.getCVRQualifiers() | BaseType.getCVRQualifiers(); |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2213 | if (FD->isMutable()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2214 | combinedQualifiers &= ~QualType::Const; |
| 2215 | MemberType = MemberType.getQualifiedType(combinedQualifiers); |
Mon P Wang | c6a38a4 | 2009-07-22 03:08:17 +0000 | [diff] [blame] | 2216 | if (BaseAddrSpace != MemberType.getAddressSpace()) |
| 2217 | MemberType = Context.getAddrSpaceQualType(MemberType, BaseAddrSpace); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2218 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2219 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2220 | MarkDeclarationReferenced(MemberLoc, FD); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 2221 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2222 | return ExprError(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2223 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, FD, |
| 2224 | MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2225 | } |
| 2226 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2227 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2228 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2229 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2230 | Var, MemberLoc, |
| 2231 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2232 | } |
| 2233 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2234 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2235 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2236 | MemberFn, MemberLoc, |
| 2237 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2238 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2239 | if (OverloadedFunctionDecl *Ovl |
| 2240 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2241 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, Ovl, |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2242 | MemberLoc, Context.OverloadTy)); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2243 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2244 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2245 | return Owned(new (Context) MemberExpr(BaseExpr, OpKind == tok::arrow, |
| 2246 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2247 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2248 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2249 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
| 2250 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2251 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2252 | // We found a declaration kind that we didn't expect. This is a |
| 2253 | // generic error message that tells the user that she can't refer |
| 2254 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2255 | return ExprError(Diag(MemberLoc, |
| 2256 | diag::err_typecheck_member_reference_unknown) |
| 2257 | << DeclarationName(&Member) << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2258 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2259 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2260 | // Handle properties on ObjC 'Class' types. |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 2261 | if (OpKind == tok::period && BaseType->isObjCClassType()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2262 | // Also must look for a getter name which uses property syntax. |
| 2263 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2264 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 2265 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2266 | ObjCMethodDecl *Getter; |
| 2267 | // FIXME: need to also look locally in the implementation. |
| 2268 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 2269 | // Check the use of this method. |
| 2270 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2271 | return ExprError(); |
| 2272 | } |
| 2273 | // If we found a getter then this may be a valid dot-reference, we |
| 2274 | // will look for the matching setter, in case it is needed. |
| 2275 | Selector SetterSel = |
| 2276 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2277 | PP.getSelectorTable(), &Member); |
| 2278 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2279 | if (!Setter) { |
| 2280 | // If this reference is in an @implementation, also check for 'private' |
| 2281 | // methods. |
| 2282 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
| 2283 | } |
| 2284 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2285 | if (!Setter) |
| 2286 | Setter = IFace->getCategoryClassMethod(SetterSel); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2287 | |
| 2288 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2289 | return ExprError(); |
| 2290 | |
| 2291 | if (Getter || Setter) { |
| 2292 | QualType PType; |
| 2293 | |
| 2294 | if (Getter) |
| 2295 | PType = Getter->getResultType(); |
| 2296 | else { |
| 2297 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2298 | E = Setter->param_end(); PI != E; ++PI) |
| 2299 | PType = (*PI)->getType(); |
| 2300 | } |
| 2301 | // FIXME: we must check that the setter has property type. |
| 2302 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2303 | Setter, MemberLoc, BaseExpr)); |
| 2304 | } |
| 2305 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2306 | << &Member << BaseType); |
| 2307 | } |
| 2308 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2309 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2310 | // (*Obj).ivar. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2311 | if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || |
| 2312 | (OpKind == tok::period && BaseType->isObjCInterfaceType())) { |
| 2313 | const ObjCObjectPointerType *OPT = BaseType->getAsObjCObjectPointerType(); |
| 2314 | const ObjCInterfaceType *IFaceT = |
| 2315 | OPT ? OPT->getInterfaceType() : BaseType->getAsObjCInterfaceType(); |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2316 | if (IFaceT) { |
| 2317 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2318 | ObjCInterfaceDecl *ClassDeclared; |
| 2319 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(&Member, ClassDeclared); |
| 2320 | |
| 2321 | if (IV) { |
| 2322 | // If the decl being referenced had an error, return an error for this |
| 2323 | // sub-expr without emitting another error, in order to avoid cascading |
| 2324 | // error cases. |
| 2325 | if (IV->isInvalidDecl()) |
| 2326 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2327 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2328 | // Check whether we can reference this field. |
| 2329 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2330 | return ExprError(); |
| 2331 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2332 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2333 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2334 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2335 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2336 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2337 | // Case of a c-function declared inside an objc implementation. |
| 2338 | // FIXME: For a c-style function nested inside an objc implementation |
| 2339 | // class, there is no implementation context available, so we pass |
| 2340 | // down the context as argument to this routine. Ideally, this context |
| 2341 | // need be passed down in the AST node and somehow calculated from the |
| 2342 | // AST for a function decl. |
| 2343 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
| 2344 | if (ObjCImplementationDecl *IMPD = |
| 2345 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2346 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2347 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2348 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2349 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2350 | } |
| 2351 | |
| 2352 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2353 | if (ClassDeclared != IDecl || |
| 2354 | ClassOfMethodDecl != ClassDeclared) |
| 2355 | Diag(MemberLoc, diag::error_private_ivar_access) |
| 2356 | << IV->getDeclName(); |
| 2357 | } |
| 2358 | // @protected |
| 2359 | else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2360 | Diag(MemberLoc, diag::error_protected_ivar_access) |
| 2361 | << IV->getDeclName(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2362 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2363 | |
| 2364 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2365 | MemberLoc, BaseExpr, |
| 2366 | OpKind == tok::arrow)); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2367 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2368 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
| 2369 | << IDecl->getDeclName() << &Member |
| 2370 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2371 | } |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2372 | // We have an 'id' type. Rather than fall through, we check if this |
| 2373 | // is a reference to 'isa'. |
Steve Naroff | 99b10be | 2009-07-29 14:06:03 +0000 | [diff] [blame] | 2374 | if (Member.isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2375 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, true, MemberLoc, |
| 2376 | Context.getObjCIdType())); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2377 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2378 | // Handle properties on 'id' and qualified "id". |
| 2379 | if (OpKind == tok::period && (BaseType->isObjCIdType() || |
| 2380 | BaseType->isObjCQualifiedIdType())) { |
| 2381 | const ObjCObjectPointerType *QIdTy = BaseType->getAsObjCObjectPointerType(); |
| 2382 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2383 | // Check protocols on qualified interfaces. |
| 2384 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
| 2385 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2386 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2387 | // Check the use of this declaration |
| 2388 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2389 | return ExprError(); |
| 2390 | |
| 2391 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2392 | MemberLoc, BaseExpr)); |
| 2393 | } |
| 2394 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2395 | // Check the use of this method. |
| 2396 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2397 | return ExprError(); |
| 2398 | |
| 2399 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
| 2400 | OMD->getResultType(), |
| 2401 | OMD, OpLoc, MemberLoc, |
| 2402 | NULL, 0)); |
| 2403 | } |
| 2404 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2405 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2406 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2407 | << &Member << BaseType); |
| 2408 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2409 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2410 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2411 | const ObjCObjectPointerType *OPT; |
| 2412 | if (OpKind == tok::period && |
| 2413 | (OPT = BaseType->getAsObjCInterfacePointerType())) { |
| 2414 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2415 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
| 2416 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2417 | // Search for a declared property first. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2418 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2419 | // Check whether we can reference this property. |
| 2420 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2421 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2422 | QualType ResTy = PD->getType(); |
| 2423 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2424 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2425 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2426 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2427 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2428 | MemberLoc, BaseExpr)); |
| 2429 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2430 | // Check protocols on qualified interfaces. |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2431 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2432 | E = OPT->qual_end(); I != E; ++I) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2433 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2434 | // Check whether we can reference this property. |
| 2435 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2436 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2437 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2438 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2439 | MemberLoc, BaseExpr)); |
| 2440 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2441 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2442 | E = OPT->qual_end(); I != E; ++I) |
| 2443 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(&Member)) { |
| 2444 | // Check whether we can reference this property. |
| 2445 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2446 | return ExprError(); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2447 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2448 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2449 | MemberLoc, BaseExpr)); |
| 2450 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2451 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2452 | // selector is implemented. |
| 2453 | |
| 2454 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2455 | // shared with the code in ActOnInstanceMessage. |
| 2456 | |
| 2457 | Selector Sel = PP.getSelectorTable().getNullarySelector(&Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2458 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2459 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2460 | // If this reference is in an @implementation, check for 'private' methods. |
| 2461 | if (!Getter) |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2462 | Getter = FindMethodInNestedImplementations(IFace, Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2463 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2464 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2465 | if (!Getter) |
| 2466 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2467 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2468 | // Check if we can reference this property. |
| 2469 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2470 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2471 | } |
| 2472 | // If we found a getter then this may be a valid dot-reference, we |
| 2473 | // will look for the matching setter, in case it is needed. |
| 2474 | Selector SetterSel = |
| 2475 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2476 | PP.getSelectorTable(), &Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2477 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2478 | if (!Setter) { |
| 2479 | // If this reference is in an @implementation, also check for 'private' |
| 2480 | // methods. |
Fariborz Jahanian | ef79bc9 | 2009-04-07 18:28:06 +0000 | [diff] [blame] | 2481 | Setter = FindMethodInNestedImplementations(IFace, SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2482 | } |
| 2483 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2484 | if (!Setter) |
| 2485 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2486 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2487 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2488 | return ExprError(); |
| 2489 | |
| 2490 | if (Getter || Setter) { |
| 2491 | QualType PType; |
| 2492 | |
| 2493 | if (Getter) |
| 2494 | PType = Getter->getResultType(); |
| 2495 | else { |
| 2496 | for (ObjCMethodDecl::param_iterator PI = Setter->param_begin(), |
| 2497 | E = Setter->param_end(); PI != E; ++PI) |
| 2498 | PType = (*PI)->getType(); |
| 2499 | } |
| 2500 | // FIXME: we must check that the setter has property type. |
| 2501 | return Owned(new (Context) ObjCKVCRefExpr(Getter, PType, |
| 2502 | Setter, MemberLoc, BaseExpr)); |
| 2503 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2504 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2505 | << &Member << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2506 | } |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 2507 | |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2508 | // Handle the following exceptional case (*Obj).isa. |
| 2509 | if (OpKind == tok::period && |
| 2510 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Steve Naroff | 99b10be | 2009-07-29 14:06:03 +0000 | [diff] [blame] | 2511 | Member.isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2512 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
| 2513 | Context.getObjCIdType())); |
| 2514 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2515 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2516 | if (BaseType->isExtVectorType()) { |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2517 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2518 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2519 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2520 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2521 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2522 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2523 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2524 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2525 | << BaseType << BaseExpr->getSourceRange(); |
| 2526 | |
| 2527 | // If the user is trying to apply -> or . to a function or function |
| 2528 | // pointer, it's probably because they forgot parentheses to call |
| 2529 | // the function. Suggest the addition of those parentheses. |
| 2530 | if (BaseType == Context.OverloadTy || |
| 2531 | BaseType->isFunctionType() || |
| 2532 | (BaseType->isPointerType() && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2533 | BaseType->getAs<PointerType>()->isFunctionType())) { |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2534 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2535 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2536 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2537 | } |
| 2538 | |
| 2539 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2540 | } |
| 2541 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2542 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2543 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2544 | /// function prototype Proto. Call is the call expression itself, and |
| 2545 | /// Fn is the function expression. For a C++ member function, this |
| 2546 | /// routine does not attempt to convert the object argument. Returns |
| 2547 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2548 | bool |
| 2549 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2550 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2551 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2552 | Expr **Args, unsigned NumArgs, |
| 2553 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2554 | // 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] | 2555 | // assignment, to the types of the corresponding parameter, ... |
| 2556 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2557 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2558 | bool Invalid = false; |
| 2559 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2560 | // If too few arguments are available (and we don't have default |
| 2561 | // arguments for the remaining parameters), don't make the call. |
| 2562 | if (NumArgs < NumArgsInProto) { |
| 2563 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2564 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2565 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2566 | // Use default arguments for missing arguments |
| 2567 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2568 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2569 | } |
| 2570 | |
| 2571 | // If too many are passed and not variadic, error on the extras and drop |
| 2572 | // them. |
| 2573 | if (NumArgs > NumArgsInProto) { |
| 2574 | if (!Proto->isVariadic()) { |
| 2575 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2576 | diag::err_typecheck_call_too_many_args) |
| 2577 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2578 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2579 | Args[NumArgs-1]->getLocEnd()); |
| 2580 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2581 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2582 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2583 | } |
| 2584 | NumArgsToCheck = NumArgsInProto; |
| 2585 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2586 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2587 | // Continue to check argument types (even if we have too few/many args). |
| 2588 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2589 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2590 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2591 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2592 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2593 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2594 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2595 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2596 | ProtoArgType, |
| 2597 | diag::err_call_incomplete_argument, |
| 2598 | Arg->getSourceRange())) |
| 2599 | return true; |
| 2600 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2601 | // Pass the argument. |
| 2602 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2603 | return true; |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2604 | } else { |
| 2605 | if (FDecl->getParamDecl(i)->hasUnparsedDefaultArg()) { |
| 2606 | Diag (Call->getSourceRange().getBegin(), |
| 2607 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2608 | FDecl << cast<CXXRecordDecl>(FDecl->getDeclContext())->getDeclName(); |
| 2609 | Diag(UnparsedDefaultArgLocs[FDecl->getParamDecl(i)], |
| 2610 | diag::note_default_argument_declared_here); |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2611 | } else { |
| 2612 | Expr *DefaultExpr = FDecl->getParamDecl(i)->getDefaultArg(); |
| 2613 | |
| 2614 | // If the default expression creates temporaries, we need to |
| 2615 | // push them to the current stack of expression temporaries so they'll |
| 2616 | // be properly destroyed. |
| 2617 | if (CXXExprWithTemporaries *E |
| 2618 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
| 2619 | assert(!E->shouldDestroyTemporaries() && |
| 2620 | "Can't destroy temporaries in a default argument expr!"); |
| 2621 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2622 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2623 | } |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2624 | } |
Anders Carlsson | f54741e | 2009-06-16 03:37:31 +0000 | [diff] [blame] | 2625 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2626 | // We already type-checked the argument, so we know it works. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2627 | Arg = new (Context) CXXDefaultArgExpr(FDecl->getParamDecl(i)); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2628 | } |
| 2629 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2630 | QualType ArgType = Arg->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2631 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2632 | Call->setArg(i, Arg); |
| 2633 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2634 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2635 | // If this is a variadic call, handle args passed through "...". |
| 2636 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2637 | VariadicCallType CallType = VariadicFunction; |
| 2638 | if (Fn->getType()->isBlockPointerType()) |
| 2639 | CallType = VariadicBlock; // Block |
| 2640 | else if (isa<MemberExpr>(Fn)) |
| 2641 | CallType = VariadicMethod; |
| 2642 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2643 | // Promote the arguments (C99 6.5.2.2p7). |
| 2644 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2645 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2646 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2647 | Call->setArg(i, Arg); |
| 2648 | } |
| 2649 | } |
| 2650 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2651 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2652 | } |
| 2653 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2654 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2655 | /// This provides the location of the left/right parens and a list of comma |
| 2656 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2657 | Action::OwningExprResult |
| 2658 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2659 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2660 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2661 | unsigned NumArgs = args.size(); |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2662 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2663 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2664 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2665 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2666 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2667 | DeclarationName UnqualifiedName; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2668 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2669 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2670 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2671 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2672 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2673 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2674 | bool Dependent = false; |
| 2675 | if (Fn->isTypeDependent()) |
| 2676 | Dependent = true; |
| 2677 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2678 | Dependent = true; |
| 2679 | |
| 2680 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2681 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2682 | Context.DependentTy, RParenLoc)); |
| 2683 | |
| 2684 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2685 | if (Fn->getType()->isRecordType()) |
| 2686 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2687 | CommaLocs, RParenLoc)); |
| 2688 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2689 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2690 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2691 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2692 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2693 | isa<CXXMethodDecl>(MemDecl) || |
| 2694 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2695 | isa<CXXMethodDecl>( |
| 2696 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2697 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2698 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2699 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2700 | } |
| 2701 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2702 | // If we're directly calling a function, get the appropriate declaration. |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2703 | // Also, in C++, keep track of whether we should perform argument-dependent |
| 2704 | // lookup and whether there were any explicitly-specified template arguments. |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2705 | Expr *FnExpr = Fn; |
| 2706 | bool ADL = true; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2707 | bool HasExplicitTemplateArgs = 0; |
| 2708 | const TemplateArgument *ExplicitTemplateArgs = 0; |
| 2709 | unsigned NumExplicitTemplateArgs = 0; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2710 | while (true) { |
| 2711 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2712 | FnExpr = IcExpr->getSubExpr(); |
| 2713 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2714 | // Parentheses around a function disable ADL |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2715 | // (C++0x [basic.lookup.argdep]p1). |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2716 | ADL = false; |
| 2717 | FnExpr = PExpr->getSubExpr(); |
| 2718 | } else if (isa<UnaryOperator>(FnExpr) && |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2719 | cast<UnaryOperator>(FnExpr)->getOpcode() |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2720 | == UnaryOperator::AddrOf) { |
| 2721 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2722 | } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2723 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2724 | ADL &= !isa<QualifiedDeclRefExpr>(DRExpr); |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2725 | NDecl = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2726 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2727 | } else if (UnresolvedFunctionNameExpr *DepName |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2728 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2729 | UnqualifiedName = DepName->getName(); |
| 2730 | break; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2731 | } else if (TemplateIdRefExpr *TemplateIdRef |
| 2732 | = dyn_cast<TemplateIdRefExpr>(FnExpr)) { |
| 2733 | NDecl = TemplateIdRef->getTemplateName().getAsTemplateDecl(); |
Douglas Gregor | d99cbe6 | 2009-07-29 18:26:50 +0000 | [diff] [blame] | 2734 | if (!NDecl) |
| 2735 | NDecl = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2736 | HasExplicitTemplateArgs = true; |
| 2737 | ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs(); |
| 2738 | NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs(); |
| 2739 | |
| 2740 | // C++ [temp.arg.explicit]p6: |
| 2741 | // [Note: For simple function names, argument dependent lookup (3.4.2) |
| 2742 | // applies even when the function name is not visible within the |
| 2743 | // scope of the call. This is because the call still has the syntactic |
| 2744 | // form of a function call (3.4.1). But when a function template with |
| 2745 | // explicit template arguments is used, the call does not have the |
| 2746 | // correct syntactic form unless there is a function template with |
| 2747 | // that name visible at the point of the call. If no such name is |
| 2748 | // visible, the call is not syntactically well-formed and |
| 2749 | // argument-dependent lookup does not apply. If some such name is |
| 2750 | // visible, argument dependent lookup applies and additional function |
| 2751 | // templates may be found in other namespaces. |
| 2752 | // |
| 2753 | // The summary of this paragraph is that, if we get to this point and the |
| 2754 | // template-id was not a qualified name, then argument-dependent lookup |
| 2755 | // is still possible. |
| 2756 | if (TemplateIdRef->getQualifier()) |
| 2757 | ADL = false; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2758 | break; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2759 | } else { |
Chris Lattner | 90e150d | 2009-02-14 07:22:29 +0000 | [diff] [blame] | 2760 | // Any kind of name that does not refer to a declaration (or |
| 2761 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2762 | ADL = false; |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2763 | break; |
| 2764 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2765 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2766 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2767 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2768 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2769 | if (NDecl) { |
| 2770 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2771 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl))) |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2772 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2773 | else |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2774 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2775 | Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2776 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2777 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2778 | if (Ovl || FunctionTemplate || |
| 2779 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2780 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 3c385e5 | 2009-02-14 18:57:46 +0000 | [diff] [blame] | 2781 | if (FDecl && FDecl->getBuiltinID(Context) && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2782 | ADL = false; |
| 2783 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2784 | // We don't perform ADL in C. |
| 2785 | if (!getLangOptions().CPlusPlus) |
| 2786 | ADL = false; |
| 2787 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2788 | if (Ovl || FunctionTemplate || ADL) { |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2789 | FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName, |
| 2790 | HasExplicitTemplateArgs, |
| 2791 | ExplicitTemplateArgs, |
| 2792 | NumExplicitTemplateArgs, |
| 2793 | LParenLoc, Args, NumArgs, CommaLocs, |
| 2794 | RParenLoc, ADL); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2795 | if (!FDecl) |
| 2796 | return ExprError(); |
| 2797 | |
| 2798 | // Update Fn to refer to the actual function selected. |
| 2799 | Expr *NewFn = 0; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2800 | if (QualifiedDeclRefExpr *QDRExpr |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2801 | = dyn_cast<QualifiedDeclRefExpr>(FnExpr)) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2802 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
| 2803 | QDRExpr->getLocation(), |
| 2804 | false, false, |
| 2805 | QDRExpr->getQualifierRange(), |
| 2806 | QDRExpr->getQualifier()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2807 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2808 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2809 | Fn->getSourceRange().getBegin()); |
| 2810 | Fn->Destroy(Context); |
| 2811 | Fn = NewFn; |
| 2812 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2813 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2814 | |
| 2815 | // Promote the function operand. |
| 2816 | UsualUnaryConversions(Fn); |
| 2817 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2818 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2819 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2820 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2821 | Args, NumArgs, |
| 2822 | Context.BoolTy, |
| 2823 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2824 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2825 | const FunctionType *FuncT; |
| 2826 | if (!Fn->getType()->isBlockPointerType()) { |
| 2827 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2828 | // have type pointer to function". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2829 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2830 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2831 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2832 | << Fn->getType() << Fn->getSourceRange()); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2833 | FuncT = PT->getPointeeType()->getAsFunctionType(); |
| 2834 | } else { // This is a block call. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2835 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2836 | getAsFunctionType(); |
| 2837 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2838 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2839 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2840 | << Fn->getType() << Fn->getSourceRange()); |
| 2841 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2842 | // Check for a valid return type |
| 2843 | if (!FuncT->getResultType()->isVoidType() && |
| 2844 | RequireCompleteType(Fn->getSourceRange().getBegin(), |
| 2845 | FuncT->getResultType(), |
| 2846 | diag::err_call_incomplete_return, |
| 2847 | TheCall->getSourceRange())) |
| 2848 | return ExprError(); |
| 2849 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2850 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2851 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2852 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2853 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2854 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2855 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2856 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2857 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2858 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2859 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2860 | if (FDecl) { |
| 2861 | // Check if we have too few/too many template arguments, based |
| 2862 | // on our knowledge of the function definition. |
| 2863 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2864 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2865 | const FunctionProtoType *Proto = |
| 2866 | Def->getType()->getAsFunctionProtoType(); |
| 2867 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2868 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2869 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2870 | } |
| 2871 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2872 | } |
| 2873 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2874 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2875 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2876 | Expr *Arg = Args[i]; |
| 2877 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2878 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2879 | Arg->getType(), |
| 2880 | diag::err_call_incomplete_argument, |
| 2881 | Arg->getSourceRange())) |
| 2882 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2883 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2884 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2885 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2886 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2887 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2888 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2889 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2890 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2891 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2892 | // Check for sentinels |
| 2893 | if (NDecl) |
| 2894 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2895 | // Do special checking on direct calls to functions. |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2896 | if (FDecl) |
Eli Friedman | d38617c | 2008-05-14 19:38:39 +0000 | [diff] [blame] | 2897 | return CheckFunctionCall(FDecl, TheCall.take()); |
Fariborz Jahanian | 725165f | 2009-05-18 21:05:18 +0000 | [diff] [blame] | 2898 | if (NDecl) |
| 2899 | return CheckBlockCall(NDecl, TheCall.take()); |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2900 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2901 | return Owned(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2902 | } |
| 2903 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2904 | Action::OwningExprResult |
| 2905 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2906 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2907 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2908 | QualType literalType = QualType::getFromOpaquePtr(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2909 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2910 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2911 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2912 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2913 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2914 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2915 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2916 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 2917 | } else if (!literalType->isDependentType() && |
| 2918 | RequireCompleteType(LParenLoc, literalType, |
| 2919 | diag::err_typecheck_decl_incomplete_type, |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2920 | SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2921 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2922 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2923 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2924 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2925 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2926 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2927 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2928 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2929 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2930 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2931 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2932 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2933 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2934 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2935 | } |
| 2936 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2937 | Action::OwningExprResult |
| 2938 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2939 | SourceLocation RBraceLoc) { |
| 2940 | unsigned NumInit = initlist.size(); |
| 2941 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 2942 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 2943 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2944 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2945 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2946 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 2947 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 2948 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2949 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2950 | } |
| 2951 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2952 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 2953 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
| 2954 | bool FunctionalStyle) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 2955 | if (getLangOptions().CPlusPlus) |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 2956 | return CXXCheckCStyleCast(TyR, castType, castExpr, FunctionalStyle); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 2957 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2958 | UsualUnaryConversions(castExpr); |
| 2959 | |
| 2960 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 2961 | // type needs to be scalar. |
| 2962 | if (castType->isVoidType()) { |
| 2963 | // Cast to void allows any expr type. |
| 2964 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2965 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 2966 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 2967 | (castType->isStructureType() || castType->isUnionType())) { |
| 2968 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 2969 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2970 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 2971 | << castType << castExpr->getSourceRange(); |
| 2972 | } else if (castType->isUnionType()) { |
| 2973 | // GCC cast to union extension |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2974 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2975 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2976 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 2977 | Field != FieldEnd; ++Field) { |
| 2978 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 2979 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 2980 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 2981 | << castExpr->getSourceRange(); |
| 2982 | break; |
| 2983 | } |
| 2984 | } |
| 2985 | if (Field == FieldEnd) |
| 2986 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 2987 | << castExpr->getType() << castExpr->getSourceRange(); |
| 2988 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2989 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2990 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2991 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2992 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2993 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 2994 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 2995 | return Diag(castExpr->getLocStart(), |
| 2996 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 2997 | << castExpr->getType() << castExpr->getSourceRange(); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 2998 | } else if (castType->isExtVectorType()) { |
| 2999 | if (CheckExtVectorCast(TyR, castType, castExpr->getType())) |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3000 | return true; |
| 3001 | } else if (castType->isVectorType()) { |
| 3002 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 3003 | return true; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3004 | } else if (castExpr->getType()->isVectorType()) { |
| 3005 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 3006 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 3007 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3008 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3009 | } else if (!castType->isArithmeticType()) { |
| 3010 | QualType castExprType = castExpr->getType(); |
| 3011 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3012 | return Diag(castExpr->getLocStart(), |
| 3013 | diag::err_cast_pointer_from_non_pointer_int) |
| 3014 | << castExprType << castExpr->getSourceRange(); |
| 3015 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3016 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3017 | return Diag(castExpr->getLocStart(), |
| 3018 | diag::err_cast_pointer_to_non_pointer_int) |
| 3019 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3020 | } |
Fariborz Jahanian | b5ff6bf | 2009-05-22 21:42:52 +0000 | [diff] [blame] | 3021 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3022 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3023 | return false; |
| 3024 | } |
| 3025 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 3026 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3027 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3028 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3029 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3030 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3031 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3032 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3033 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3034 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3035 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3036 | } else |
| 3037 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3038 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3039 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3040 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3041 | return false; |
| 3042 | } |
| 3043 | |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3044 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) { |
| 3045 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
| 3046 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3047 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3048 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3049 | if (SrcTy->isVectorType()) { |
| 3050 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3051 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3052 | << DestTy << SrcTy << R; |
| 3053 | return false; |
| 3054 | } |
| 3055 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3056 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3057 | // conversion will take place first from scalar to elt type, and then |
| 3058 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3059 | if (SrcTy->isPointerType()) |
| 3060 | return Diag(R.getBegin(), |
| 3061 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3062 | << DestTy << SrcTy << R; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3063 | return false; |
| 3064 | } |
| 3065 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3066 | Action::OwningExprResult |
| 3067 | Sema::ActOnCastExpr(SourceLocation LParenLoc, TypeTy *Ty, |
| 3068 | SourceLocation RParenLoc, ExprArg Op) { |
| 3069 | assert((Ty != 0) && (Op.get() != 0) && |
| 3070 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3071 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 3072 | Expr *castExpr = Op.takeAs<Expr>(); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3073 | QualType castType = QualType::getFromOpaquePtr(Ty); |
| 3074 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3075 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3076 | return ExprError(); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3077 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
| 3078 | castExpr, castType, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3079 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3080 | } |
| 3081 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3082 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3083 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3084 | /// C99 6.5.15 |
| 3085 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3086 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3087 | // C++ is sufficiently different to merit its own checker. |
| 3088 | if (getLangOptions().CPlusPlus) |
| 3089 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3090 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3091 | UsualUnaryConversions(Cond); |
| 3092 | UsualUnaryConversions(LHS); |
| 3093 | UsualUnaryConversions(RHS); |
| 3094 | QualType CondTy = Cond->getType(); |
| 3095 | QualType LHSTy = LHS->getType(); |
| 3096 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3097 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3098 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3099 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3100 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3101 | << CondTy; |
| 3102 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3103 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3104 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3105 | // Now check the two expressions. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3106 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3107 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3108 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3109 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3110 | UsualArithmeticConversions(LHS, RHS); |
| 3111 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3112 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3113 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3114 | // If both operands are the same structure or union type, the result is that |
| 3115 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3116 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3117 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3118 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3119 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3120 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3121 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3122 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3123 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3124 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3125 | // 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] | 3126 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3127 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3128 | if (!LHSTy->isVoidType()) |
| 3129 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3130 | << RHS->getSourceRange(); |
| 3131 | if (!RHSTy->isVoidType()) |
| 3132 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3133 | << LHS->getSourceRange(); |
| 3134 | ImpCastExprToType(LHS, Context.VoidTy); |
| 3135 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3136 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3137 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3138 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3139 | // the type of the other operand." |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3140 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3141 | RHS->isNullPointerConstant(Context)) { |
| 3142 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 3143 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3144 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3145 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3146 | LHS->isNullPointerConstant(Context)) { |
| 3147 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 3148 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3149 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3150 | // Handle block pointer types. |
| 3151 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3152 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3153 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3154 | QualType destType = Context.getPointerType(Context.VoidTy); |
| 3155 | ImpCastExprToType(LHS, destType); |
| 3156 | ImpCastExprToType(RHS, destType); |
| 3157 | return destType; |
| 3158 | } |
| 3159 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3160 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3161 | return QualType(); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3162 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3163 | // We have 2 block pointer types. |
| 3164 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3165 | // Two identical block pointer types are always compatible. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3166 | return LHSTy; |
| 3167 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3168 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3169 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3170 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3171 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3172 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3173 | rhptee.getUnqualifiedType())) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3174 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3175 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3176 | // In this situation, we assume void* type. No especially good |
| 3177 | // reason, but this is what gcc does, and we do have to pick |
| 3178 | // to get a consistent AST. |
| 3179 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3180 | ImpCastExprToType(LHS, incompatTy); |
| 3181 | ImpCastExprToType(RHS, incompatTy); |
| 3182 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3183 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3184 | // The block pointer types are compatible. |
| 3185 | ImpCastExprToType(LHS, LHSTy); |
| 3186 | ImpCastExprToType(RHS, LHSTy); |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3187 | return LHSTy; |
| 3188 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3189 | // Check constraints for Objective-C object pointers types. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3190 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3191 | |
| 3192 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3193 | // Two identical object pointer types are always compatible. |
| 3194 | return LHSTy; |
| 3195 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3196 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAsObjCObjectPointerType(); |
| 3197 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAsObjCObjectPointerType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3198 | QualType compositeType = LHSTy; |
| 3199 | |
| 3200 | // If both operands are interfaces and either operand can be |
| 3201 | // assigned to the other, use that type as the composite |
| 3202 | // type. This allows |
| 3203 | // xxx ? (A*) a : (B*) b |
| 3204 | // where B is a subclass of A. |
| 3205 | // |
| 3206 | // Additionally, as for assignment, if either type is 'id' |
| 3207 | // allow silent coercion. Finally, if the types are |
| 3208 | // incompatible then make sure to use 'id' as the composite |
| 3209 | // type so the result is acceptable for sending messages to. |
| 3210 | |
| 3211 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3212 | // It could return the composite type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3213 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3214 | compositeType = LHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3215 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3216 | compositeType = RHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3217 | } else if ((LHSTy->isObjCQualifiedIdType() || |
| 3218 | RHSTy->isObjCQualifiedIdType()) && |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3219 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3220 | // Need to handle "id<xx>" explicitly. |
| 3221 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3222 | // id. Currently localizing to here until clear this should be |
| 3223 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 3224 | compositeType = Context.getObjCIdType(); |
| 3225 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3226 | compositeType = Context.getObjCIdType(); |
| 3227 | } else { |
| 3228 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3229 | << LHSTy << RHSTy |
| 3230 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3231 | QualType incompatTy = Context.getObjCIdType(); |
| 3232 | ImpCastExprToType(LHS, incompatTy); |
| 3233 | ImpCastExprToType(RHS, incompatTy); |
| 3234 | return incompatTy; |
| 3235 | } |
| 3236 | // The object pointer types are compatible. |
| 3237 | ImpCastExprToType(LHS, compositeType); |
| 3238 | ImpCastExprToType(RHS, compositeType); |
| 3239 | return compositeType; |
| 3240 | } |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3241 | // Check Objective-C object pointer types and 'void *' |
| 3242 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3243 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3244 | QualType rhptee = RHSTy->getAsObjCObjectPointerType()->getPointeeType(); |
| 3245 | QualType destPointee = lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 3246 | QualType destType = Context.getPointerType(destPointee); |
| 3247 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3248 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3249 | return destType; |
| 3250 | } |
| 3251 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
| 3252 | QualType lhptee = LHSTy->getAsObjCObjectPointerType()->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3253 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3254 | QualType destPointee = rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 3255 | QualType destType = Context.getPointerType(destPointee); |
| 3256 | ImpCastExprToType(RHS, destType); // add qualifiers if necessary |
| 3257 | ImpCastExprToType(LHS, destType); // promote to void* |
| 3258 | return destType; |
| 3259 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3260 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3261 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3262 | // get the "pointed to" types |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3263 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3264 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3265 | |
| 3266 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3267 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3268 | // Figure out necessary qualifiers (C99 6.5.15p6) |
| 3269 | QualType destPointee=lhptee.getQualifiedType(rhptee.getCVRQualifiers()); |
| 3270 | QualType destType = Context.getPointerType(destPointee); |
| 3271 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3272 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3273 | return destType; |
| 3274 | } |
| 3275 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
| 3276 | QualType destPointee=rhptee.getQualifiedType(lhptee.getCVRQualifiers()); |
| 3277 | QualType destType = Context.getPointerType(destPointee); |
| 3278 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3279 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3280 | return destType; |
| 3281 | } |
| 3282 | |
| 3283 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3284 | // Two identical pointer types are always compatible. |
| 3285 | return LHSTy; |
| 3286 | } |
| 3287 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3288 | rhptee.getUnqualifiedType())) { |
| 3289 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3290 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3291 | // In this situation, we assume void* type. No especially good |
| 3292 | // reason, but this is what gcc does, and we do have to pick |
| 3293 | // to get a consistent AST. |
| 3294 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3295 | ImpCastExprToType(LHS, incompatTy); |
| 3296 | ImpCastExprToType(RHS, incompatTy); |
| 3297 | return incompatTy; |
| 3298 | } |
| 3299 | // The pointer types are compatible. |
| 3300 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3301 | // differently qualified versions of compatible types, the result type is |
| 3302 | // a pointer to an appropriately qualified version of the *composite* |
| 3303 | // type. |
| 3304 | // FIXME: Need to calculate the composite type. |
| 3305 | // FIXME: Need to add qualifiers |
| 3306 | ImpCastExprToType(LHS, LHSTy); |
| 3307 | ImpCastExprToType(RHS, LHSTy); |
| 3308 | return LHSTy; |
| 3309 | } |
| 3310 | |
| 3311 | // GCC compatibility: soften pointer/integer mismatch. |
| 3312 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3313 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3314 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3315 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 3316 | return RHSTy; |
| 3317 | } |
| 3318 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3319 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3320 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3321 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 3322 | return LHSTy; |
| 3323 | } |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3324 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3325 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3326 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3327 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3328 | return QualType(); |
| 3329 | } |
| 3330 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3331 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3332 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3333 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3334 | SourceLocation ColonLoc, |
| 3335 | ExprArg Cond, ExprArg LHS, |
| 3336 | ExprArg RHS) { |
| 3337 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3338 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3339 | |
| 3340 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3341 | // was the condition. |
| 3342 | bool isLHSNull = LHSExpr == 0; |
| 3343 | if (isLHSNull) |
| 3344 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3345 | |
| 3346 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3347 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3348 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3349 | return ExprError(); |
| 3350 | |
| 3351 | Cond.release(); |
| 3352 | LHS.release(); |
| 3353 | RHS.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3354 | return Owned(new (Context) ConditionalOperator(CondExpr, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3355 | isLHSNull ? 0 : LHSExpr, |
| 3356 | RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3357 | } |
| 3358 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3359 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3360 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3361 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3362 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3363 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3364 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3365 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3366 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3367 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3368 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3369 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 3370 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3371 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3372 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3373 | lhptee = Context.getCanonicalType(lhptee); |
| 3374 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3375 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3376 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3377 | |
| 3378 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3379 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3380 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3381 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3382 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3383 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3384 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3385 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3386 | // 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] | 3387 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3388 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3389 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3390 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3391 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3392 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3393 | assert(rhptee->isFunctionType()); |
| 3394 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3395 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3396 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3397 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3398 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3399 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3400 | |
| 3401 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3402 | assert(lhptee->isFunctionType()); |
| 3403 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3404 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3405 | // 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] | 3406 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3407 | lhptee = lhptee.getUnqualifiedType(); |
| 3408 | rhptee = rhptee.getUnqualifiedType(); |
| 3409 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3410 | // Check if the pointee types are compatible ignoring the sign. |
| 3411 | // We explicitly check for char so that we catch "char" vs |
| 3412 | // "unsigned char" on systems where "char" is unsigned. |
| 3413 | if (lhptee->isCharType()) { |
| 3414 | lhptee = Context.UnsignedCharTy; |
| 3415 | } else if (lhptee->isSignedIntegerType()) { |
| 3416 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3417 | } |
| 3418 | if (rhptee->isCharType()) { |
| 3419 | rhptee = Context.UnsignedCharTy; |
| 3420 | } else if (rhptee->isSignedIntegerType()) { |
| 3421 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3422 | } |
| 3423 | if (lhptee == rhptee) { |
| 3424 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3425 | // takes priority over sign incompatibility because the sign |
| 3426 | // warning can be disabled. |
| 3427 | if (ConvTy != Compatible) |
| 3428 | return ConvTy; |
| 3429 | return IncompatiblePointerSign; |
| 3430 | } |
| 3431 | // General pointer incompatibility takes priority over qualifiers. |
| 3432 | return IncompatiblePointer; |
| 3433 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3434 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3435 | } |
| 3436 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3437 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3438 | /// block pointer types are compatible or whether a block and normal pointer |
| 3439 | /// are compatible. It is more restrict than comparing two function pointer |
| 3440 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3441 | Sema::AssignConvertType |
| 3442 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3443 | QualType rhsType) { |
| 3444 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3445 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3446 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3447 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 3448 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3449 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3450 | // make sure we operate on the canonical type |
| 3451 | lhptee = Context.getCanonicalType(lhptee); |
| 3452 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3453 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3454 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3455 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3456 | // For blocks we enforce that qualifiers are identical. |
| 3457 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3458 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3459 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3460 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3461 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3462 | return ConvTy; |
| 3463 | } |
| 3464 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3465 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3466 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3467 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3468 | /// |
| 3469 | /// int a, *pint; |
| 3470 | /// short *pshort; |
| 3471 | /// struct foo *pfoo; |
| 3472 | /// |
| 3473 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3474 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3475 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3476 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3477 | /// |
| 3478 | /// 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] | 3479 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3480 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3481 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3482 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3483 | // Get canonical types. We're not formatting these types, just comparing |
| 3484 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3485 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3486 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3487 | |
| 3488 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3489 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3490 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3491 | // If the left-hand side is a reference type, then we are in a |
| 3492 | // (rare!) case where we've allowed the use of references in C, |
| 3493 | // e.g., as a parameter type in a built-in function. In this case, |
| 3494 | // just make sure that the type referenced is compatible with the |
| 3495 | // right-hand side type. The caller is responsible for adjusting |
| 3496 | // lhsType so that the resulting expression does not have reference |
| 3497 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3498 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3499 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3500 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3501 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3502 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3503 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3504 | // to the same ExtVector type. |
| 3505 | if (lhsType->isExtVectorType()) { |
| 3506 | if (rhsType->isExtVectorType()) |
| 3507 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3508 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3509 | return Compatible; |
| 3510 | } |
| 3511 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3512 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3513 | // 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] | 3514 | // 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] | 3515 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3516 | if (getLangOptions().LaxVectorConversions && |
| 3517 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3518 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3519 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3520 | } |
| 3521 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3522 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3523 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3524 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3525 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3526 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3527 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3528 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3529 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3530 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3531 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3532 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3533 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3534 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3535 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3536 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3537 | return Compatible; |
| 3538 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3539 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3540 | if (rhsType->getAs<BlockPointerType>()) { |
| 3541 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3542 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3543 | |
| 3544 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3545 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3546 | return Compatible; |
| 3547 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3548 | return Incompatible; |
| 3549 | } |
| 3550 | |
| 3551 | if (isa<BlockPointerType>(lhsType)) { |
| 3552 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3553 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3554 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3555 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3556 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3557 | return Compatible; |
| 3558 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3559 | if (rhsType->isBlockPointerType()) |
| 3560 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3561 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3562 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3563 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3564 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3565 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3566 | return Incompatible; |
| 3567 | } |
| 3568 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3569 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 3570 | if (rhsType->isIntegerType()) |
| 3571 | return IntToPointer; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3572 | |
| 3573 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3574 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3575 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 3576 | return Compatible; |
| 3577 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3578 | } |
| 3579 | if (rhsType->isObjCObjectPointerType()) { |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 3580 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 3581 | return Compatible; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3582 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 3583 | return Compatible; |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3584 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 3585 | return IncompatibleObjCQualifiedId; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3586 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3587 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3588 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3589 | if (RHSPT->getPointeeType()->isVoidType()) |
| 3590 | return Compatible; |
| 3591 | } |
| 3592 | // Treat block pointers as objects. |
| 3593 | if (rhsType->isBlockPointerType()) |
| 3594 | return Compatible; |
| 3595 | return Incompatible; |
| 3596 | } |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3597 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3598 | // 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] | 3599 | if (lhsType == Context.BoolTy) |
| 3600 | return Compatible; |
| 3601 | |
| 3602 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3603 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3604 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3605 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3606 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3607 | |
| 3608 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3609 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3610 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3611 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3612 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3613 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 3614 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 3615 | if (lhsType == Context.BoolTy) |
| 3616 | return Compatible; |
| 3617 | |
| 3618 | if (lhsType->isIntegerType()) |
| 3619 | return PointerToInt; |
| 3620 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3621 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3622 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3623 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3624 | return Compatible; |
| 3625 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3626 | } |
| 3627 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3628 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3629 | return Compatible; |
| 3630 | return Incompatible; |
| 3631 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3632 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3633 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3634 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3635 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3636 | } |
| 3637 | return Incompatible; |
| 3638 | } |
| 3639 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3640 | /// \brief Constructs a transparent union from an expression that is |
| 3641 | /// used to initialize the transparent union. |
| 3642 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
| 3643 | QualType UnionType, FieldDecl *Field) { |
| 3644 | // Build an initializer list that designates the appropriate member |
| 3645 | // of the transparent union. |
| 3646 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3647 | &E, 1, |
| 3648 | SourceLocation()); |
| 3649 | Initializer->setType(UnionType); |
| 3650 | Initializer->setInitializedFieldInUnion(Field); |
| 3651 | |
| 3652 | // Build a compound literal constructing a value of the transparent |
| 3653 | // union type from this initializer list. |
| 3654 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3655 | false); |
| 3656 | } |
| 3657 | |
| 3658 | Sema::AssignConvertType |
| 3659 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3660 | QualType FromType = rExpr->getType(); |
| 3661 | |
| 3662 | // If the ArgType is a Union type, we want to handle a potential |
| 3663 | // transparent_union GCC extension. |
| 3664 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3665 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3666 | return Incompatible; |
| 3667 | |
| 3668 | // The field to initialize within the transparent union. |
| 3669 | RecordDecl *UD = UT->getDecl(); |
| 3670 | FieldDecl *InitField = 0; |
| 3671 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3672 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 3673 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3674 | it != itend; ++it) { |
| 3675 | if (it->getType()->isPointerType()) { |
| 3676 | // If the transparent union contains a pointer type, we allow: |
| 3677 | // 1) void pointer |
| 3678 | // 2) null pointer constant |
| 3679 | if (FromType->isPointerType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3680 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3681 | ImpCastExprToType(rExpr, it->getType()); |
| 3682 | InitField = *it; |
| 3683 | break; |
| 3684 | } |
| 3685 | |
| 3686 | if (rExpr->isNullPointerConstant(Context)) { |
| 3687 | ImpCastExprToType(rExpr, it->getType()); |
| 3688 | InitField = *it; |
| 3689 | break; |
| 3690 | } |
| 3691 | } |
| 3692 | |
| 3693 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3694 | == Compatible) { |
| 3695 | InitField = *it; |
| 3696 | break; |
| 3697 | } |
| 3698 | } |
| 3699 | |
| 3700 | if (!InitField) |
| 3701 | return Incompatible; |
| 3702 | |
| 3703 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3704 | return Compatible; |
| 3705 | } |
| 3706 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3707 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3708 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3709 | if (getLangOptions().CPlusPlus) { |
| 3710 | if (!lhsType->isRecordType()) { |
| 3711 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3712 | // expression is implicitly converted (C++ 4) to the |
| 3713 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 3714 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 3715 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3716 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 3717 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3718 | } |
| 3719 | |
| 3720 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 3721 | // structures. |
| 3722 | } |
| 3723 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3724 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 3725 | // a null pointer constant. |
Steve Naroff | f7f52e7 | 2009-02-21 21:17:01 +0000 | [diff] [blame] | 3726 | if ((lhsType->isPointerType() || |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3727 | lhsType->isObjCObjectPointerType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3728 | lhsType->isBlockPointerType()) |
Fariborz Jahanian | 9d3185e | 2008-01-03 18:46:52 +0000 | [diff] [blame] | 3729 | && rExpr->isNullPointerConstant(Context)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 3730 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 3731 | return Compatible; |
| 3732 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3733 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3734 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3735 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3736 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3737 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3738 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3739 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 3740 | if (!lhsType->isReferenceType()) |
| 3741 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3742 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3743 | Sema::AssignConvertType result = |
| 3744 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3745 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3746 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 3747 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3748 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 3749 | // so that we can use references in built-in functions even in C. |
| 3750 | // The getNonReferenceType() call makes sure that the resulting expression |
| 3751 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3752 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3753 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 3754 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3755 | } |
| 3756 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3757 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3758 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 3759 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3760 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 3761 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3762 | } |
| 3763 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3764 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3765 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3766 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3767 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3768 | QualType lhsType = |
| 3769 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 3770 | QualType rhsType = |
| 3771 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3772 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3773 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 3774 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3775 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3776 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3777 | // Handle the case of a vector & extvector type of the same size and element |
| 3778 | // 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] | 3779 | if (getLangOptions().LaxVectorConversions) { |
| 3780 | // FIXME: Should we warn here? |
| 3781 | if (const VectorType *LV = lhsType->getAsVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3782 | if (const VectorType *RV = rhsType->getAsVectorType()) |
| 3783 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3784 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3785 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3786 | } |
| 3787 | } |
| 3788 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3789 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3790 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 3791 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 3792 | bool swapped = false; |
| 3793 | if (rhsType->isExtVectorType()) { |
| 3794 | swapped = true; |
| 3795 | std::swap(rex, lex); |
| 3796 | std::swap(rhsType, lhsType); |
| 3797 | } |
| 3798 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3799 | // Handle the case of an ext vector and scalar. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3800 | if (const ExtVectorType *LV = lhsType->getAsExtVectorType()) { |
| 3801 | QualType EltTy = LV->getElementType(); |
| 3802 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 3803 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3804 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3805 | if (swapped) std::swap(rex, lex); |
| 3806 | return lhsType; |
| 3807 | } |
| 3808 | } |
| 3809 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 3810 | rhsType->isRealFloatingType()) { |
| 3811 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3812 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3813 | if (swapped) std::swap(rex, lex); |
| 3814 | return lhsType; |
| 3815 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 3816 | } |
| 3817 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3818 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 3819 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3820 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3821 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 3822 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3823 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 3824 | } |
| 3825 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3826 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3827 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3828 | { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 3829 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3830 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3831 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3832 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3833 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3834 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3835 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3836 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3837 | } |
| 3838 | |
| 3839 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3840 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3841 | { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 3842 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3843 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 3844 | return CheckVectorOperands(Loc, lex, rex); |
| 3845 | return InvalidOperands(Loc, lex, rex); |
| 3846 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3847 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3848 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3849 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3850 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3851 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3852 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3853 | } |
| 3854 | |
| 3855 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3856 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3857 | { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3858 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3859 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3860 | if (CompLHSTy) *CompLHSTy = compType; |
| 3861 | return compType; |
| 3862 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 3863 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3864 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3865 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3866 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3867 | if (lex->getType()->isArithmeticType() && |
| 3868 | rex->getType()->isArithmeticType()) { |
| 3869 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3870 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3871 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3872 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3873 | // Put any potential pointer into PExp |
| 3874 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3875 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3876 | std::swap(PExp, IExp); |
| 3877 | |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3878 | if (PExp->getType()->isAnyPointerType()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3879 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3880 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 3881 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3882 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3883 | // Check for arithmetic on pointers to incomplete types. |
| 3884 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3885 | if (getLangOptions().CPlusPlus) { |
| 3886 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3887 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 3888 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3889 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3890 | |
| 3891 | // GNU extension: arithmetic on pointer to void |
| 3892 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 3893 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3894 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3895 | if (getLangOptions().CPlusPlus) { |
| 3896 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 3897 | << lex->getType() << lex->getSourceRange(); |
| 3898 | return QualType(); |
| 3899 | } |
| 3900 | |
| 3901 | // GNU extension: arithmetic on pointer to function |
| 3902 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 3903 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 3904 | } else { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 3905 | // Check if we require a complete type. |
| 3906 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 3907 | !PExp->getType()->isDependentType()) || |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 3908 | PExp->getType()->isObjCObjectPointerType()) && |
| 3909 | RequireCompleteType(Loc, PointeeTy, |
| 3910 | diag::err_typecheck_arithmetic_incomplete_type, |
| 3911 | PExp->getSourceRange(), SourceRange(), |
| 3912 | PExp->getType())) |
| 3913 | return QualType(); |
| 3914 | } |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3915 | // Diagnose bad cases where we step over interface counts. |
| 3916 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3917 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3918 | << PointeeTy << PExp->getSourceRange(); |
| 3919 | return QualType(); |
| 3920 | } |
| 3921 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3922 | if (CompLHSTy) { |
| 3923 | QualType LHSTy = lex->getType(); |
| 3924 | if (LHSTy->isPromotableIntegerType()) |
| 3925 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 3926 | else { |
| 3927 | QualType T = isPromotableBitField(lex, Context); |
| 3928 | if (!T.isNull()) |
| 3929 | LHSTy = T; |
| 3930 | } |
| 3931 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3932 | *CompLHSTy = LHSTy; |
| 3933 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 3934 | return PExp->getType(); |
| 3935 | } |
| 3936 | } |
| 3937 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 3938 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3939 | } |
| 3940 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 3941 | // C99 6.5.6 |
| 3942 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3943 | SourceLocation Loc, QualType* CompLHSTy) { |
| 3944 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 3945 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 3946 | if (CompLHSTy) *CompLHSTy = compType; |
| 3947 | return compType; |
| 3948 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3949 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3950 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3951 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3952 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3953 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3954 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 3955 | if (lex->getType()->isArithmeticType() |
| 3956 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3957 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 3958 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 3959 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3960 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3961 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3962 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 3963 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3964 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3965 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 3966 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3967 | bool ComplainAboutVoid = false; |
| 3968 | Expr *ComplainAboutFunc = 0; |
| 3969 | if (lpointee->isVoidType()) { |
| 3970 | if (getLangOptions().CPlusPlus) { |
| 3971 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 3972 | << lex->getSourceRange() << rex->getSourceRange(); |
| 3973 | return QualType(); |
| 3974 | } |
| 3975 | |
| 3976 | // GNU C extension: arithmetic on pointer to void |
| 3977 | ComplainAboutVoid = true; |
| 3978 | } else if (lpointee->isFunctionType()) { |
| 3979 | if (getLangOptions().CPlusPlus) { |
| 3980 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3981 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3982 | return QualType(); |
| 3983 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 3984 | |
| 3985 | // GNU C extension: arithmetic on pointer to function |
| 3986 | ComplainAboutFunc = lex; |
| 3987 | } else if (!lpointee->isDependentType() && |
| 3988 | RequireCompleteType(Loc, lpointee, |
| 3989 | diag::err_typecheck_sub_ptr_object, |
| 3990 | lex->getSourceRange(), |
| 3991 | SourceRange(), |
| 3992 | lex->getType())) |
| 3993 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 3994 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 3995 | // Diagnose bad cases where we step over interface counts. |
| 3996 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 3997 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 3998 | << lpointee << lex->getSourceRange(); |
| 3999 | return QualType(); |
| 4000 | } |
| 4001 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4002 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4003 | if (rex->getType()->isIntegerType()) { |
| 4004 | if (ComplainAboutVoid) |
| 4005 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4006 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4007 | if (ComplainAboutFunc) |
| 4008 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4009 | << ComplainAboutFunc->getType() |
| 4010 | << ComplainAboutFunc->getSourceRange(); |
| 4011 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4012 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4013 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4014 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4015 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4016 | // Handle pointer-pointer subtractions. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4017 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4018 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4019 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4020 | // RHS must be a completely-type object type. |
| 4021 | // Handle the GNU void* extension. |
| 4022 | if (rpointee->isVoidType()) { |
| 4023 | if (getLangOptions().CPlusPlus) { |
| 4024 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4025 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4026 | return QualType(); |
| 4027 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4028 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4029 | ComplainAboutVoid = true; |
| 4030 | } else if (rpointee->isFunctionType()) { |
| 4031 | if (getLangOptions().CPlusPlus) { |
| 4032 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4033 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4034 | return QualType(); |
| 4035 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4036 | |
| 4037 | // GNU extension: arithmetic on pointer to function |
| 4038 | if (!ComplainAboutFunc) |
| 4039 | ComplainAboutFunc = rex; |
| 4040 | } else if (!rpointee->isDependentType() && |
| 4041 | RequireCompleteType(Loc, rpointee, |
| 4042 | diag::err_typecheck_sub_ptr_object, |
| 4043 | rex->getSourceRange(), |
| 4044 | SourceRange(), |
| 4045 | rex->getType())) |
| 4046 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4047 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4048 | if (getLangOptions().CPlusPlus) { |
| 4049 | // Pointee types must be the same: C++ [expr.add] |
| 4050 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4051 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4052 | << lex->getType() << rex->getType() |
| 4053 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4054 | return QualType(); |
| 4055 | } |
| 4056 | } else { |
| 4057 | // Pointee types must be compatible C99 6.5.6p3 |
| 4058 | if (!Context.typesAreCompatible( |
| 4059 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4060 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4061 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4062 | << lex->getType() << rex->getType() |
| 4063 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4064 | return QualType(); |
| 4065 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4066 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4067 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4068 | if (ComplainAboutVoid) |
| 4069 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4070 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4071 | if (ComplainAboutFunc) |
| 4072 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4073 | << ComplainAboutFunc->getType() |
| 4074 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4075 | |
| 4076 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4077 | return Context.getPointerDiffType(); |
| 4078 | } |
| 4079 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4080 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4081 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4082 | } |
| 4083 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4084 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4085 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4086 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4087 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4088 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4089 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4090 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4091 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4092 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4093 | QualType LHSTy; |
| 4094 | if (lex->getType()->isPromotableIntegerType()) |
| 4095 | LHSTy = Context.IntTy; |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4096 | else { |
| 4097 | LHSTy = isPromotableBitField(lex, Context); |
| 4098 | if (LHSTy.isNull()) |
| 4099 | LHSTy = lex->getType(); |
| 4100 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4101 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4102 | ImpCastExprToType(lex, LHSTy); |
| 4103 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4104 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4105 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4106 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4107 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4108 | } |
| 4109 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4110 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4111 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4112 | unsigned OpaqueOpc, bool isRelational) { |
| 4113 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 4114 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4115 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4116 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4117 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4118 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 4119 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 4120 | UsualArithmeticConversions(lex, rex); |
| 4121 | else { |
| 4122 | UsualUnaryConversions(lex); |
| 4123 | UsualUnaryConversions(rex); |
| 4124 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4125 | QualType lType = lex->getType(); |
| 4126 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4127 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4128 | if (!lType->isFloatingType() |
| 4129 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4130 | // For non-floating point types, check for self-comparisons of the form |
| 4131 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4132 | // often indicate logic errors in the program. |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 4133 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
| 4134 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4135 | Expr *LHSStripped = lex->IgnoreParens(); |
| 4136 | Expr *RHSStripped = rex->IgnoreParens(); |
| 4137 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 4138 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 4139 | if (DRL->getDecl() == DRR->getDecl() && |
| 4140 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4141 | Diag(Loc, diag::warn_selfcomparison); |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4142 | |
| 4143 | if (isa<CastExpr>(LHSStripped)) |
| 4144 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 4145 | if (isa<CastExpr>(RHSStripped)) |
| 4146 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
| 4147 | |
| 4148 | // Warn about comparisons against a string constant (unless the other |
| 4149 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4150 | Expr *literalString = 0; |
| 4151 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4152 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4153 | !RHSStripped->isNullPointerConstant(Context)) { |
| 4154 | literalString = lex; |
| 4155 | literalStringStripped = LHSStripped; |
| 4156 | } |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4157 | else if ((isa<StringLiteral>(RHSStripped) || |
| 4158 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4159 | !LHSStripped->isNullPointerConstant(Context)) { |
| 4160 | literalString = rex; |
| 4161 | literalStringStripped = RHSStripped; |
| 4162 | } |
| 4163 | |
| 4164 | if (literalString) { |
| 4165 | std::string resultComparison; |
| 4166 | switch (Opc) { |
| 4167 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4168 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4169 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4170 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4171 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4172 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4173 | default: assert(false && "Invalid comparison operator"); |
| 4174 | } |
| 4175 | Diag(Loc, diag::warn_stringcompare) |
| 4176 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4177 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4178 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4179 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4180 | "strcmp(") |
| 4181 | << CodeModificationHint::CreateInsertion( |
| 4182 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4183 | resultComparison); |
| 4184 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4185 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4186 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4187 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4188 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4189 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4190 | if (isRelational) { |
| 4191 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4192 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4193 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4194 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4195 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4196 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4197 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4198 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4199 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4200 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4201 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4202 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4203 | |
Chris Lattner | d28f815 | 2007-08-26 01:10:14 +0000 | [diff] [blame] | 4204 | bool LHSIsNull = lex->isNullPointerConstant(Context); |
| 4205 | bool RHSIsNull = rex->isNullPointerConstant(Context); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4206 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4207 | // All of the following pointer related warnings are GCC extensions, except |
| 4208 | // when handling null pointer constants. One day, we can consider making them |
| 4209 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4210 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4211 | QualType LCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4212 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4213 | QualType RCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4214 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4215 | |
Douglas Gregor | f933437 | 2009-07-06 20:14:23 +0000 | [diff] [blame] | 4216 | if (isRelational) { |
| 4217 | if (lType->isFunctionPointerType() || rType->isFunctionPointerType()) { |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4218 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4219 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4220 | } |
Douglas Gregor | f933437 | 2009-07-06 20:14:23 +0000 | [diff] [blame] | 4221 | if (LCanPointeeTy->isVoidType() != RCanPointeeTy->isVoidType()) { |
| 4222 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4223 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4224 | } |
| 4225 | } else { |
| 4226 | if (lType->isFunctionPointerType() != rType->isFunctionPointerType()) { |
| 4227 | if (!LHSIsNull && !RHSIsNull) |
| 4228 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4229 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4230 | } |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4231 | } |
Douglas Gregor | f933437 | 2009-07-06 20:14:23 +0000 | [diff] [blame] | 4232 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4233 | // Simple check: if the pointee types are identical, we're done. |
| 4234 | if (LCanPointeeTy == RCanPointeeTy) |
| 4235 | return ResultTy; |
| 4236 | |
| 4237 | if (getLangOptions().CPlusPlus) { |
| 4238 | // C++ [expr.rel]p2: |
| 4239 | // [...] Pointer conversions (4.10) and qualification |
| 4240 | // conversions (4.4) are performed on pointer operands (or on |
| 4241 | // a pointer operand and a null pointer constant) to bring |
| 4242 | // them to their composite pointer type. [...] |
| 4243 | // |
| 4244 | // C++ [expr.eq]p2 uses the same notion for (in)equality |
| 4245 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4246 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4247 | if (T.isNull()) { |
| 4248 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4249 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4250 | return QualType(); |
| 4251 | } |
| 4252 | |
| 4253 | ImpCastExprToType(lex, T); |
| 4254 | ImpCastExprToType(rex, T); |
| 4255 | return ResultTy; |
| 4256 | } |
| 4257 | |
Steve Naroff | 66296cb | 2007-11-13 14:57:38 +0000 | [diff] [blame] | 4258 | if (!LHSIsNull && !RHSIsNull && // C99 6.5.9p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4259 | !LCanPointeeTy->isVoidType() && !RCanPointeeTy->isVoidType() && |
| 4260 | !Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4261 | RCanPointeeTy.getUnqualifiedType())) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4262 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4263 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4264 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4265 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4266 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4267 | } |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4268 | // C++ allows comparison of pointers with null pointer constants. |
| 4269 | if (getLangOptions().CPlusPlus) { |
| 4270 | if (lType->isPointerType() && RHSIsNull) { |
| 4271 | ImpCastExprToType(rex, lType); |
| 4272 | return ResultTy; |
| 4273 | } |
| 4274 | if (rType->isPointerType() && LHSIsNull) { |
| 4275 | ImpCastExprToType(lex, rType); |
| 4276 | return ResultTy; |
| 4277 | } |
| 4278 | // And comparison of nullptr_t with itself. |
| 4279 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4280 | return ResultTy; |
| 4281 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4282 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4283 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4284 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 4285 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4286 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4287 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4288 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4289 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4290 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4291 | } |
| 4292 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4293 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4294 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4295 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4296 | if (!isRelational |
| 4297 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4298 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4299 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4300 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4301 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4302 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4303 | ->getPointeeType()->isVoidType()))) |
| 4304 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4305 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4306 | } |
| 4307 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4308 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4309 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4310 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4311 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4312 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4313 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 4314 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4315 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4316 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4317 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4318 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4319 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4320 | if (!LPtrToVoid && !RPtrToVoid && |
| 4321 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4322 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4323 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4324 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4325 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4326 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4327 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4328 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
| 4329 | if (!Context.areComparableObjCPointerTypes(lType, rType)) { |
| 4330 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4331 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4332 | } |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4333 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4334 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4335 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4336 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4337 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4338 | if (isRelational) |
| 4339 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) |
| 4340 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4341 | else if (!RHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4342 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4343 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4344 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4345 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4346 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4347 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4348 | if (isRelational) |
| 4349 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_pointer_integer) |
| 4350 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4351 | else if (!LHSIsNull) |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4352 | Diag(Loc, diag::ext_typecheck_comparison_of_pointer_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4353 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4354 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4355 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4356 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4357 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4358 | if (!isRelational && RHSIsNull |
| 4359 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4360 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4361 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4362 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4363 | if (!isRelational && LHSIsNull |
| 4364 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4365 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4366 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4367 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4368 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4369 | } |
| 4370 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4371 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4372 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4373 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4374 | /// types. |
| 4375 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4376 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4377 | bool isRelational) { |
| 4378 | // Check to make sure we're operating on vectors of the same type and width, |
| 4379 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4380 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4381 | if (vType.isNull()) |
| 4382 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4383 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4384 | QualType lType = lex->getType(); |
| 4385 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4386 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4387 | // For non-floating point types, check for self-comparisons of the form |
| 4388 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4389 | // often indicate logic errors in the program. |
| 4390 | if (!lType->isFloatingType()) { |
| 4391 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4392 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4393 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4394 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4395 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4396 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4397 | // Check for comparisons of floating point operands using != and ==. |
| 4398 | if (!isRelational && lType->isFloatingType()) { |
| 4399 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4400 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4401 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4402 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4403 | // Return the type for the comparison, which is the same as vector type for |
| 4404 | // integer vectors, or an integer type of identical size and number of |
| 4405 | // elements for floating point vectors. |
| 4406 | if (lType->isIntegerType()) |
| 4407 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4408 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4409 | const VectorType *VTy = lType->getAsVectorType(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4410 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4411 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4412 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4413 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4414 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4415 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4416 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4417 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4418 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4419 | } |
| 4420 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4421 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4422 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4423 | { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4424 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4425 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4426 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4427 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4428 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4429 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4430 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4431 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4432 | } |
| 4433 | |
| 4434 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4435 | Expr *&lex, Expr *&rex, SourceLocation Loc) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4436 | { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4437 | UsualUnaryConversions(lex); |
| 4438 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4439 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 4440 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4441 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4442 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4443 | } |
| 4444 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4445 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4446 | /// is a read-only property; return true if so. A readonly property expression |
| 4447 | /// depends on various declarations and thus must be treated specially. |
| 4448 | /// |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4449 | static bool IsReadonlyProperty(Expr *E, Sema &S) |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4450 | { |
| 4451 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4452 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4453 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4454 | QualType BaseType = PropExpr->getBase()->getType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4455 | if (const ObjCObjectPointerType *OPT = |
| 4456 | BaseType->getAsObjCInterfacePointerType()) |
| 4457 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 4458 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4459 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4460 | } |
| 4461 | } |
| 4462 | return false; |
| 4463 | } |
| 4464 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4465 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4466 | /// emit an error and return true. If so, return false. |
| 4467 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4468 | SourceLocation OrigLoc = Loc; |
| 4469 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
| 4470 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4471 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4472 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4473 | if (IsLV == Expr::MLV_Valid) |
| 4474 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4475 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4476 | unsigned Diag = 0; |
| 4477 | bool NeedType = false; |
| 4478 | switch (IsLV) { // C99 6.5.16p2 |
| 4479 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4480 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4481 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4482 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4483 | NeedType = true; |
| 4484 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4485 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4486 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4487 | NeedType = true; |
| 4488 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4489 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4490 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4491 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4492 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4493 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4494 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4495 | case Expr::MLV_IncompleteType: |
| 4496 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4497 | return S.RequireCompleteType(Loc, E->getType(), |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4498 | diag::err_typecheck_incomplete_type_not_modifiable_lvalue, |
| 4499 | E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4500 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4501 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4502 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4503 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4504 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4505 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4506 | case Expr::MLV_ReadonlyProperty: |
| 4507 | Diag = diag::error_readonly_property_assignment; |
| 4508 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4509 | case Expr::MLV_NoSetterProperty: |
| 4510 | Diag = diag::error_nosetter_property_assignment; |
| 4511 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4512 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4513 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4514 | SourceRange Assign; |
| 4515 | if (Loc != OrigLoc) |
| 4516 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4517 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4518 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4519 | else |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4520 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4521 | return true; |
| 4522 | } |
| 4523 | |
| 4524 | |
| 4525 | |
| 4526 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4527 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4528 | SourceLocation Loc, |
| 4529 | QualType CompoundType) { |
| 4530 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4531 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4532 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4533 | |
| 4534 | QualType LHSType = LHS->getType(); |
| 4535 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4536 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4537 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4538 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4539 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4540 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4541 | // Special case of NSObject attributes on c-style pointer types. |
| 4542 | if (ConvTy == IncompatiblePointer && |
| 4543 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4544 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4545 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4546 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4547 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4548 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4549 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4550 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4551 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4552 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4553 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4554 | RHSCheck = ICE->getSubExpr(); |
| 4555 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4556 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4557 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4558 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4559 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4560 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4561 | // And there is a space or other character before the subexpr of the |
| 4562 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4563 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4564 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4565 | Diag(Loc, diag::warn_not_compound_assign) |
| 4566 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4567 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4568 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4569 | } |
| 4570 | } else { |
| 4571 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4572 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4573 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4574 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4575 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4576 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4577 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4578 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4579 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4580 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4581 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4582 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4583 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4584 | // C++ 5.17p1: the type of the assignment expression is that of its left |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4585 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4586 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4587 | } |
| 4588 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4589 | // C99 6.5.17 |
| 4590 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4591 | // 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] | 4592 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4593 | |
| 4594 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4595 | // incomplete in C++). |
| 4596 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4597 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4598 | } |
| 4599 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4600 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4601 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4602 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4603 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4604 | if (Op->isTypeDependent()) |
| 4605 | return Context.DependentTy; |
| 4606 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4607 | QualType ResType = Op->getType(); |
| 4608 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4609 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4610 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4611 | // Decrement of bool is not allowed. |
| 4612 | if (!isInc) { |
| 4613 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4614 | return QualType(); |
| 4615 | } |
| 4616 | // Increment of bool sets it to true, but is deprecated. |
| 4617 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4618 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4619 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4620 | } else if (ResType->isAnyPointerType()) { |
| 4621 | QualType PointeeTy = ResType->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4622 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4623 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4624 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4625 | if (getLangOptions().CPlusPlus) { |
| 4626 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4627 | << Op->getSourceRange(); |
| 4628 | return QualType(); |
| 4629 | } |
| 4630 | |
| 4631 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4632 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4633 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4634 | if (getLangOptions().CPlusPlus) { |
| 4635 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 4636 | << Op->getType() << Op->getSourceRange(); |
| 4637 | return QualType(); |
| 4638 | } |
| 4639 | |
| 4640 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4641 | << ResType << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4642 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Douglas Gregor | 8dcb29d | 2009-03-24 20:13:58 +0000 | [diff] [blame] | 4643 | diag::err_typecheck_arithmetic_incomplete_type, |
| 4644 | Op->getSourceRange(), SourceRange(), |
| 4645 | ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4646 | return QualType(); |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 4647 | // Diagnose bad cases where we step over interface counts. |
| 4648 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4649 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 4650 | << PointeeTy << Op->getSourceRange(); |
| 4651 | return QualType(); |
| 4652 | } |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4653 | } else if (ResType->isComplexType()) { |
| 4654 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 4655 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4656 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4657 | } else { |
| 4658 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4659 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4660 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4661 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4662 | // 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] | 4663 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4664 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4665 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4666 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4667 | } |
| 4668 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4669 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4670 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4671 | /// where the declaration is needed for type checking. We only need to |
| 4672 | /// handle cases when the expression references a function designator |
| 4673 | /// or is an lvalue. Here are some examples: |
| 4674 | /// - &(x) => x |
| 4675 | /// - &*****f => f for f a function designator. |
| 4676 | /// - &s.xx => s |
| 4677 | /// - &s.zz[1].yy -> s, if zz is an array |
| 4678 | /// - *(x + 1) -> x, if x is an array |
| 4679 | /// - &"123"[2] -> 0 |
| 4680 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4681 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4682 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4683 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 4684 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4685 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4686 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4687 | // If this is an arrow operator, the address is an offset from |
| 4688 | // the base's value, so the object the base refers to is |
| 4689 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4690 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4691 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4692 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4693 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4694 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 4695 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 4696 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4697 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 4698 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 4699 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 4700 | return getPrimaryDecl(ICE->getSubExpr()); |
| 4701 | } |
| 4702 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 4703 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4704 | case Stmt::UnaryOperatorClass: { |
| 4705 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4706 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4707 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 4708 | case UnaryOperator::Real: |
| 4709 | case UnaryOperator::Imag: |
| 4710 | case UnaryOperator::Extension: |
| 4711 | return getPrimaryDecl(UO->getSubExpr()); |
| 4712 | default: |
| 4713 | return 0; |
| 4714 | } |
| 4715 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4716 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4717 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4718 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4719 | // If the result of an implicit cast is an l-value, we care about |
| 4720 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 4721 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4722 | default: |
| 4723 | return 0; |
| 4724 | } |
| 4725 | } |
| 4726 | |
| 4727 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4728 | /// 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] | 4729 | /// 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] | 4730 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4731 | /// 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] | 4732 | /// 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] | 4733 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4734 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4735 | // Make sure to ignore parentheses in subsequent checks |
| 4736 | op = op->IgnoreParens(); |
| 4737 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 4738 | if (op->isTypeDependent()) |
| 4739 | return Context.DependentTy; |
| 4740 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4741 | if (getLangOptions().C99) { |
| 4742 | // Implement C99-only parts of addressof rules. |
| 4743 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 4744 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 4745 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 4746 | // (assuming the deref expression is valid). |
| 4747 | return uOp->getSubExpr()->getType(); |
| 4748 | } |
| 4749 | // Technically, there should be a check for array subscript |
| 4750 | // expressions here, but the result of one is always an lvalue anyway. |
| 4751 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 4752 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 4753 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 4754 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4755 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 4756 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4757 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4758 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 4759 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 4760 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 4761 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4762 | return QualType(); |
| 4763 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 4764 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4765 | // The operand cannot be a bit-field |
| 4766 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4767 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 4768 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4769 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 4770 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 4771 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4772 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 4773 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4774 | return QualType(); |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 4775 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 4776 | // cannot take address of a property expression. |
| 4777 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4778 | << "property expression" << op->getSourceRange(); |
| 4779 | return QualType(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 4780 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4781 | // 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] | 4782 | // with the register storage-class specifier. |
| 4783 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 4784 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4785 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 4786 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4787 | return QualType(); |
| 4788 | } |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 4789 | } else if (isa<OverloadedFunctionDecl>(dcl) || |
| 4790 | isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 4791 | return Context.OverloadTy; |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 4792 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 4793 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4794 | // Could be a pointer to member, though, if there is an explicit |
| 4795 | // scope qualifier for the class. |
| 4796 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 4797 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 4798 | if (Ctx && Ctx->isRecord()) { |
| 4799 | if (FD->getType()->isReferenceType()) { |
| 4800 | Diag(OpLoc, |
| 4801 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 4802 | << FD->getDeclName() << FD->getType(); |
| 4803 | return QualType(); |
| 4804 | } |
| 4805 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4806 | return Context.getMemberPointerType(op->getType(), |
| 4807 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 4808 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 4809 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4810 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 4811 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4812 | // As above. |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 4813 | if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) |
| 4814 | return Context.getMemberPointerType(op->getType(), |
| 4815 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 4816 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4817 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4818 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 4819 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 4820 | if (lval == Expr::LV_IncompleteVoidType) { |
| 4821 | // Taking the address of a void variable is technically illegal, but we |
| 4822 | // allow it in cases which are otherwise valid. |
| 4823 | // Example: "extern void x; void* y = &x;". |
| 4824 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 4825 | } |
| 4826 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4827 | // If the operand has type "type", the result has type "pointer to type". |
| 4828 | return Context.getPointerType(op->getType()); |
| 4829 | } |
| 4830 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4831 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4832 | if (Op->isTypeDependent()) |
| 4833 | return Context.DependentTy; |
| 4834 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4835 | UsualUnaryConversions(Op); |
| 4836 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4837 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4838 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 4839 | // incomplete type or void. It would be possible to warn about dereferencing |
| 4840 | // a void pointer, but it's completely well-defined, and such a warning is |
| 4841 | // unlikely to catch any mistakes. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4842 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 4843 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4844 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4845 | if (const ObjCObjectPointerType *OPT = Ty->getAsObjCObjectPointerType()) |
| 4846 | return OPT->getPointeeType(); |
| 4847 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4848 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4849 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4850 | return QualType(); |
| 4851 | } |
| 4852 | |
| 4853 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 4854 | tok::TokenKind Kind) { |
| 4855 | BinaryOperator::Opcode Opc; |
| 4856 | switch (Kind) { |
| 4857 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4858 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 4859 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4860 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 4861 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 4862 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 4863 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 4864 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 4865 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 4866 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 4867 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 4868 | case tok::less: Opc = BinaryOperator::LT; break; |
| 4869 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 4870 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 4871 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 4872 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 4873 | case tok::amp: Opc = BinaryOperator::And; break; |
| 4874 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 4875 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 4876 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 4877 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 4878 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 4879 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 4880 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 4881 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 4882 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 4883 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 4884 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 4885 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 4886 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 4887 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 4888 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 4889 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 4890 | } |
| 4891 | return Opc; |
| 4892 | } |
| 4893 | |
| 4894 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 4895 | tok::TokenKind Kind) { |
| 4896 | UnaryOperator::Opcode Opc; |
| 4897 | switch (Kind) { |
| 4898 | default: assert(0 && "Unknown unary op!"); |
| 4899 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 4900 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 4901 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 4902 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 4903 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 4904 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 4905 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 4906 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4907 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 4908 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 4909 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 4910 | } |
| 4911 | return Opc; |
| 4912 | } |
| 4913 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4914 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 4915 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 4916 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 4917 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 4918 | unsigned Op, |
| 4919 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4920 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4921 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4922 | // The following two variables are used for compound assignment operators |
| 4923 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 4924 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4925 | |
| 4926 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4927 | case BinaryOperator::Assign: |
| 4928 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 4929 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4930 | case BinaryOperator::PtrMemD: |
| 4931 | case BinaryOperator::PtrMemI: |
| 4932 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 4933 | Opc == BinaryOperator::PtrMemI); |
| 4934 | break; |
| 4935 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4936 | case BinaryOperator::Div: |
| 4937 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 4938 | break; |
| 4939 | case BinaryOperator::Rem: |
| 4940 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 4941 | break; |
| 4942 | case BinaryOperator::Add: |
| 4943 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 4944 | break; |
| 4945 | case BinaryOperator::Sub: |
| 4946 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 4947 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4948 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4949 | case BinaryOperator::Shr: |
| 4950 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 4951 | break; |
| 4952 | case BinaryOperator::LE: |
| 4953 | case BinaryOperator::LT: |
| 4954 | case BinaryOperator::GE: |
| 4955 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4956 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4957 | break; |
| 4958 | case BinaryOperator::EQ: |
| 4959 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4960 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4961 | break; |
| 4962 | case BinaryOperator::And: |
| 4963 | case BinaryOperator::Xor: |
| 4964 | case BinaryOperator::Or: |
| 4965 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 4966 | break; |
| 4967 | case BinaryOperator::LAnd: |
| 4968 | case BinaryOperator::LOr: |
| 4969 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 4970 | break; |
| 4971 | case BinaryOperator::MulAssign: |
| 4972 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4973 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 4974 | CompLHSTy = CompResultTy; |
| 4975 | if (!CompResultTy.isNull()) |
| 4976 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4977 | break; |
| 4978 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4979 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 4980 | CompLHSTy = CompResultTy; |
| 4981 | if (!CompResultTy.isNull()) |
| 4982 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4983 | break; |
| 4984 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4985 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4986 | if (!CompResultTy.isNull()) |
| 4987 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4988 | break; |
| 4989 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4990 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 4991 | if (!CompResultTy.isNull()) |
| 4992 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 4993 | break; |
| 4994 | case BinaryOperator::ShlAssign: |
| 4995 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4996 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 4997 | CompLHSTy = CompResultTy; |
| 4998 | if (!CompResultTy.isNull()) |
| 4999 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5000 | break; |
| 5001 | case BinaryOperator::AndAssign: |
| 5002 | case BinaryOperator::XorAssign: |
| 5003 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5004 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 5005 | CompLHSTy = CompResultTy; |
| 5006 | if (!CompResultTy.isNull()) |
| 5007 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5008 | break; |
| 5009 | case BinaryOperator::Comma: |
| 5010 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 5011 | break; |
| 5012 | } |
| 5013 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5014 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5015 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5016 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 5017 | else |
| 5018 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5019 | CompLHSTy, CompResultTy, |
| 5020 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5021 | } |
| 5022 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5023 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5024 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 5025 | tok::TokenKind Kind, |
| 5026 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5027 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5028 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5029 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5030 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 5031 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5032 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5033 | if (getLangOptions().CPlusPlus && |
| 5034 | (lhs->getType()->isOverloadableType() || |
| 5035 | rhs->getType()->isOverloadableType())) { |
| 5036 | // Find all of the overloaded operators visible from this |
| 5037 | // point. We perform both an operator-name lookup from the local |
| 5038 | // scope and an argument-dependent lookup based on the types of |
| 5039 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 5040 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5041 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 5042 | if (OverOp != OO_None) { |
| 5043 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 5044 | Functions); |
| 5045 | Expr *Args[2] = { lhs, rhs }; |
| 5046 | DeclarationName OpName |
| 5047 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 5048 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 5049 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5050 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5051 | // Build the (potentially-overloaded, potentially-dependent) |
| 5052 | // binary operation. |
| 5053 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5054 | } |
| 5055 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5056 | // Build a built-in binary operation. |
| 5057 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5058 | } |
| 5059 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5060 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
| 5061 | unsigned OpcIn, |
| 5062 | ExprArg InputArg) { |
| 5063 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5064 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5065 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5066 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5067 | QualType resultType; |
| 5068 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5069 | case UnaryOperator::OffsetOf: |
| 5070 | assert(false && "Invalid unary operator"); |
| 5071 | break; |
| 5072 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5073 | case UnaryOperator::PreInc: |
| 5074 | case UnaryOperator::PreDec: |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5075 | case UnaryOperator::PostInc: |
| 5076 | case UnaryOperator::PostDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5077 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5078 | Opc == UnaryOperator::PreInc || |
| 5079 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5080 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5081 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5082 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 5083 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5084 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 5085 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5086 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 5087 | break; |
| 5088 | case UnaryOperator::Plus: |
| 5089 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5090 | UsualUnaryConversions(Input); |
| 5091 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5092 | if (resultType->isDependentType()) |
| 5093 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5094 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 5095 | break; |
| 5096 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 5097 | resultType->isEnumeralType()) |
| 5098 | break; |
| 5099 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 5100 | Opc == UnaryOperator::Plus && |
| 5101 | resultType->isPointerType()) |
| 5102 | break; |
| 5103 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5104 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5105 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5106 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5107 | UsualUnaryConversions(Input); |
| 5108 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5109 | if (resultType->isDependentType()) |
| 5110 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5111 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 5112 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 5113 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5114 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5115 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5116 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5117 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5118 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5119 | break; |
| 5120 | case UnaryOperator::LNot: // logical negation |
| 5121 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5122 | DefaultFunctionArrayConversion(Input); |
| 5123 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5124 | if (resultType->isDependentType()) |
| 5125 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5126 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5127 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5128 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5129 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5130 | // In C++, it's bool. C++ 5.3.1p8 |
| 5131 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5132 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5133 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5134 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 5135 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5136 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5137 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5138 | resultType = Input->getType(); |
| 5139 | break; |
| 5140 | } |
| 5141 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5142 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5143 | |
| 5144 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5145 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5146 | } |
| 5147 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5148 | // Unary Operators. 'Tok' is the token for the operator. |
| 5149 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5150 | tok::TokenKind Op, ExprArg input) { |
| 5151 | Expr *Input = (Expr*)input.get(); |
| 5152 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 5153 | |
| 5154 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 5155 | // Find all of the overloaded operators visible from this |
| 5156 | // point. We perform both an operator-name lookup from the local |
| 5157 | // scope and an argument-dependent lookup based on the types of |
| 5158 | // the arguments. |
| 5159 | FunctionSet Functions; |
| 5160 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 5161 | if (OverOp != OO_None) { |
| 5162 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 5163 | Functions); |
| 5164 | DeclarationName OpName |
| 5165 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 5166 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 5167 | } |
| 5168 | |
| 5169 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 5170 | } |
| 5171 | |
| 5172 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 5173 | } |
| 5174 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 5175 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5176 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 5177 | SourceLocation LabLoc, |
| 5178 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5179 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 5180 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5181 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 5182 | // If we haven't seen this label yet, create a forward reference. It |
| 5183 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5184 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5185 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5186 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5187 | // 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] | 5188 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5189 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5190 | } |
| 5191 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5192 | Sema::OwningExprResult |
| 5193 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5194 | SourceLocation RPLoc) { // "({..})" |
| 5195 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5196 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5197 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5198 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5199 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5200 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5201 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5202 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5203 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5204 | // example, it is not possible to goto into a stmt expression apparently. |
| 5205 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5206 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5207 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5208 | // as the type of the stmtexpr. |
| 5209 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5210 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5211 | if (!Compound->body_empty()) { |
| 5212 | Stmt *LastStmt = Compound->body_back(); |
| 5213 | // If LastStmt is a label, skip down through into the body. |
| 5214 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5215 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5216 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5217 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5218 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5219 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5220 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5221 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5222 | // expressions are not lvalues. |
| 5223 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5224 | substmt.release(); |
| 5225 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5226 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5227 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5228 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5229 | SourceLocation BuiltinLoc, |
| 5230 | SourceLocation TypeLoc, |
| 5231 | TypeTy *argty, |
| 5232 | OffsetOfComponent *CompPtr, |
| 5233 | unsigned NumComponents, |
| 5234 | SourceLocation RPLoc) { |
| 5235 | // FIXME: This function leaks all expressions in the offset components on |
| 5236 | // error. |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5237 | QualType ArgTy = QualType::getFromOpaquePtr(argty); |
| 5238 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5239 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5240 | bool Dependent = ArgTy->isDependentType(); |
| 5241 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5242 | // We must have at least one component that refers to the type, and the first |
| 5243 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5244 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5245 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5246 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5247 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5248 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5249 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5250 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5251 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5252 | // the offsetof designators. |
| 5253 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5254 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5255 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5256 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5257 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5258 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5259 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5260 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5261 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5262 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5263 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5264 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5265 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5266 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5267 | bool DidWarnAboutNonPOD = false; |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5268 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5269 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5270 | // leaks like a sieve. |
| 5271 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5272 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5273 | if (OC.isBrackets) { |
| 5274 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5275 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5276 | if (!AT) { |
| 5277 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5278 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5279 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5280 | } |
| 5281 | |
| 5282 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5283 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5284 | // Promote the array so it looks more like a normal array subscript |
| 5285 | // expression. |
| 5286 | DefaultFunctionArrayConversion(Res); |
| 5287 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5288 | // C99 6.5.2.1p1 |
| 5289 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5290 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5291 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5292 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5293 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5294 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5295 | |
| 5296 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5297 | OC.LocEnd); |
| 5298 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5299 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5300 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5301 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5302 | if (!RC) { |
| 5303 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5304 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5305 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5306 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5307 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5308 | // Get the decl corresponding to this. |
| 5309 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5310 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5311 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5312 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5313 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5314 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5315 | DidWarnAboutNonPOD = true; |
| 5316 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5317 | } |
| 5318 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5319 | FieldDecl *MemberDecl |
| 5320 | = dyn_cast_or_null<FieldDecl>(LookupQualifiedName(RD, OC.U.IdentInfo, |
| 5321 | LookupMemberName) |
| 5322 | .getAsDecl()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5323 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5324 | if (!MemberDecl) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5325 | return ExprError(Diag(BuiltinLoc, diag::err_typecheck_no_member) |
| 5326 | << OC.U.IdentInfo << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5327 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5328 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5329 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5330 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5331 | Res = BuildAnonymousStructUnionMemberReference( |
| 5332 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5333 | } else { |
| 5334 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5335 | // doesn't matter here. |
| 5336 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5337 | MemberDecl->getType().getNonReferenceType()); |
| 5338 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5339 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5340 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5341 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5342 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5343 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5344 | } |
| 5345 | |
| 5346 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5347 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5348 | TypeTy *arg1,TypeTy *arg2, |
| 5349 | SourceLocation RPLoc) { |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5350 | QualType argT1 = QualType::getFromOpaquePtr(arg1); |
| 5351 | QualType argT2 = QualType::getFromOpaquePtr(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5352 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5353 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5354 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5355 | if (getLangOptions().CPlusPlus) { |
| 5356 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5357 | << SourceRange(BuiltinLoc, RPLoc); |
| 5358 | return ExprError(); |
| 5359 | } |
| 5360 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5361 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5362 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5363 | } |
| 5364 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5365 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5366 | ExprArg cond, |
| 5367 | ExprArg expr1, ExprArg expr2, |
| 5368 | SourceLocation RPLoc) { |
| 5369 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5370 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5371 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5372 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5373 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5374 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5375 | QualType resType; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5376 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5377 | resType = Context.DependentTy; |
| 5378 | } else { |
| 5379 | // The conditional expression is required to be a constant expression. |
| 5380 | llvm::APSInt condEval(32); |
| 5381 | SourceLocation ExpLoc; |
| 5382 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5383 | return ExprError(Diag(ExpLoc, |
| 5384 | diag::err_typecheck_choose_expr_requires_constant) |
| 5385 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5386 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5387 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5388 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
| 5389 | } |
| 5390 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5391 | cond.release(); expr1.release(); expr2.release(); |
| 5392 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
| 5393 | resType, RPLoc)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5394 | } |
| 5395 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5396 | //===----------------------------------------------------------------------===// |
| 5397 | // Clang Extensions. |
| 5398 | //===----------------------------------------------------------------------===// |
| 5399 | |
| 5400 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5401 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5402 | // Analyze block parameters. |
| 5403 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5404 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5405 | // Add BSI to CurBlock. |
| 5406 | BSI->PrevBlockInfo = CurBlock; |
| 5407 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5408 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5409 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5410 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5411 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | 1d2154c | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 5412 | BSI->hasPrototype = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5413 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5414 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5415 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5416 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5417 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5418 | } |
| 5419 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5420 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5421 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5422 | |
| 5423 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5424 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5425 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5426 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5427 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5428 | if (T->isArrayType()) { |
| 5429 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5430 | diag::err_block_returns_array); |
| 5431 | return; |
| 5432 | } |
| 5433 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5434 | // The parameter list is optional, if there was none, assume (). |
| 5435 | if (!T->isFunctionType()) |
| 5436 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5437 | |
| 5438 | CurBlock->hasPrototype = true; |
| 5439 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5440 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5441 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5442 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5443 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5444 | // FIXME: remove the attribute. |
| 5445 | } |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5446 | QualType RetTy = T.getTypePtr()->getAsFunctionType()->getResultType(); |
| 5447 | |
| 5448 | // Do not allow returning a objc interface by-value. |
| 5449 | if (RetTy->isObjCInterfaceType()) { |
| 5450 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5451 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5452 | return; |
| 5453 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5454 | return; |
| 5455 | } |
| 5456 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5457 | // Analyze arguments to block. |
| 5458 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5459 | "Not a function declarator!"); |
| 5460 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5461 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5462 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5463 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5464 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5465 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5466 | // no arguments, not a function that takes a single void argument. |
| 5467 | if (FTI.hasPrototype && |
| 5468 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5469 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5470 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5471 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5472 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5473 | } else if (FTI.hasPrototype) { |
| 5474 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5475 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5476 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5477 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5478 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5479 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5480 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5481 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5482 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5483 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5484 | // If this has an identifier, add it to the scope stack. |
| 5485 | if ((*AI)->getIdentifier()) |
| 5486 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5487 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5488 | // Check for a valid sentinel attribute on this block. |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 5489 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5490 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5491 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5492 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5493 | // FIXME: remove the attribute. |
| 5494 | } |
| 5495 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5496 | // Analyze the return type. |
| 5497 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5498 | QualType RetTy = T->getAsFunctionType()->getResultType(); |
| 5499 | |
| 5500 | // Do not allow returning a objc interface by-value. |
| 5501 | if (RetTy->isObjCInterfaceType()) { |
| 5502 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5503 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5504 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5505 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5506 | } |
| 5507 | |
| 5508 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5509 | /// is invoked to pop the information about the block from the action impl. |
| 5510 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5511 | // Ensure that CurBlock is deleted. |
| 5512 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5513 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5514 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5515 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5516 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5517 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5518 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5519 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5520 | } |
| 5521 | |
| 5522 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5523 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5524 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5525 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5526 | // If blocks are disabled, emit an error. |
| 5527 | if (!LangOpts.Blocks) |
| 5528 | Diag(CaretLoc, diag::err_blocks_disable); |
| 5529 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5530 | // Ensure that CurBlock is deleted. |
| 5531 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5532 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5533 | PopDeclContext(); |
| 5534 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5535 | // Pop off CurBlock, handle nested blocks. |
| 5536 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5537 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5538 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5539 | if (!BSI->ReturnType.isNull()) |
| 5540 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5541 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5542 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5543 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5544 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5545 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5546 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5547 | QualType BlockTy; |
| 5548 | if (!BSI->hasPrototype) |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5549 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 5550 | NoReturn); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5551 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5552 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5553 | BSI->isVariadic, 0, false, false, 0, 0, |
| 5554 | NoReturn); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5555 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5556 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5557 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5558 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5559 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5560 | // If needed, diagnose invalid gotos and switches in the block. |
| 5561 | if (CurFunctionNeedsScopeChecking) |
| 5562 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5563 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
| 5564 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5565 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5566 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5567 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5568 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5569 | } |
| 5570 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5571 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5572 | ExprArg expr, TypeTy *type, |
| 5573 | SourceLocation RPLoc) { |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5574 | QualType T = QualType::getFromOpaquePtr(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5575 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5576 | Expr *OrigExpr = E; |
| 5577 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5578 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5579 | |
| 5580 | // Get the va_list type |
| 5581 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5582 | if (VaListType->isArrayType()) { |
| 5583 | // Deal with implicit array decay; for example, on x86-64, |
| 5584 | // va_list is an array, but it's supposed to decay to |
| 5585 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5586 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5587 | // Make sure the input expression also decays appropriately. |
| 5588 | UsualUnaryConversions(E); |
| 5589 | } else { |
| 5590 | // Otherwise, the va_list argument must be an l-value because |
| 5591 | // it is modified by va_arg. |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5592 | if (!E->isTypeDependent() && |
| 5593 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5594 | return ExprError(); |
| 5595 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5596 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5597 | if (!E->isTypeDependent() && |
| 5598 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5599 | return ExprError(Diag(E->getLocStart(), |
| 5600 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5601 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5602 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5603 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5604 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5605 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5606 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5607 | expr.release(); |
| 5608 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5609 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5610 | } |
| 5611 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5612 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5613 | // The type of __null will be int or long, depending on the size of |
| 5614 | // pointers on the target. |
| 5615 | QualType Ty; |
| 5616 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 5617 | Ty = Context.IntTy; |
| 5618 | else |
| 5619 | Ty = Context.LongTy; |
| 5620 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5621 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5622 | } |
| 5623 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5624 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 5625 | SourceLocation Loc, |
| 5626 | QualType DstType, QualType SrcType, |
| 5627 | Expr *SrcExpr, const char *Flavor) { |
| 5628 | // Decode the result (notice that AST's are still created for extensions). |
| 5629 | bool isInvalid = false; |
| 5630 | unsigned DiagKind; |
| 5631 | switch (ConvTy) { |
| 5632 | default: assert(0 && "Unknown conversion type"); |
| 5633 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5634 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5635 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 5636 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 5637 | case IntToPointer: |
| 5638 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 5639 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5640 | case IncompatiblePointer: |
| 5641 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 5642 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 5643 | case IncompatiblePointerSign: |
| 5644 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 5645 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5646 | case FunctionVoidPointer: |
| 5647 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 5648 | break; |
| 5649 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 5650 | // If the qualifiers lost were because we were applying the |
| 5651 | // (deprecated) C++ conversion from a string literal to a char* |
| 5652 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 5653 | // Ideally, this check would be performed in |
| 5654 | // CheckPointerTypesForAssignment. However, that would require a |
| 5655 | // bit of refactoring (so that the second argument is an |
| 5656 | // expression, rather than a type), which should be done as part |
| 5657 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 5658 | // C++ semantics. |
| 5659 | if (getLangOptions().CPlusPlus && |
| 5660 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 5661 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5662 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 5663 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5664 | case IntToBlockPointer: |
| 5665 | DiagKind = diag::err_int_to_block_pointer; |
| 5666 | break; |
| 5667 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 5668 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 5669 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5670 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5671 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 5672 | // it can give a more specific diagnostic. |
| 5673 | DiagKind = diag::warn_incompatible_qualified_id; |
| 5674 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 5675 | case IncompatibleVectors: |
| 5676 | DiagKind = diag::warn_incompatible_vectors; |
| 5677 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5678 | case Incompatible: |
| 5679 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 5680 | isInvalid = true; |
| 5681 | break; |
| 5682 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5683 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 5684 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 5685 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5686 | return isInvalid; |
| 5687 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5688 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 5689 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5690 | llvm::APSInt ICEResult; |
| 5691 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 5692 | if (Result) |
| 5693 | *Result = ICEResult; |
| 5694 | return false; |
| 5695 | } |
| 5696 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5697 | Expr::EvalResult EvalResult; |
| 5698 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5699 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5700 | EvalResult.HasSideEffects) { |
| 5701 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 5702 | |
| 5703 | if (EvalResult.Diag) { |
| 5704 | // We only show the note if it's not the usual "invalid subexpression" |
| 5705 | // or if it's actually in a subexpression. |
| 5706 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 5707 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 5708 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 5709 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5710 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5711 | return true; |
| 5712 | } |
| 5713 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5714 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 5715 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5716 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 5717 | if (EvalResult.Diag && |
| 5718 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 5719 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5720 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 5721 | if (Result) |
| 5722 | *Result = EvalResult.Val.getInt(); |
| 5723 | return false; |
| 5724 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5725 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5726 | Sema::ExpressionEvaluationContext |
| 5727 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
| 5728 | // Introduce a new set of potentially referenced declarations to the stack. |
| 5729 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 5730 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
| 5731 | |
| 5732 | std::swap(ExprEvalContext, NewContext); |
| 5733 | return NewContext; |
| 5734 | } |
| 5735 | |
| 5736 | void |
| 5737 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 5738 | ExpressionEvaluationContext NewContext) { |
| 5739 | ExprEvalContext = NewContext; |
| 5740 | |
| 5741 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 5742 | // Mark any remaining declarations in the current position of the stack |
| 5743 | // as "referenced". If they were not meant to be referenced, semantic |
| 5744 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 5745 | PotentiallyReferencedDecls RemainingDecls; |
| 5746 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 5747 | PotentiallyReferencedDeclStack.pop_back(); |
| 5748 | |
| 5749 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 5750 | IEnd = RemainingDecls.end(); |
| 5751 | I != IEnd; ++I) |
| 5752 | MarkDeclarationReferenced(I->first, I->second); |
| 5753 | } |
| 5754 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5755 | |
| 5756 | /// \brief Note that the given declaration was referenced in the source code. |
| 5757 | /// |
| 5758 | /// This routine should be invoke whenever a given declaration is referenced |
| 5759 | /// in the source code, and where that reference occurred. If this declaration |
| 5760 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 5761 | /// C99 6.9p3), then the declaration will be marked as used. |
| 5762 | /// |
| 5763 | /// \param Loc the location where the declaration was referenced. |
| 5764 | /// |
| 5765 | /// \param D the declaration that has been referenced by the source code. |
| 5766 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 5767 | assert(D && "No declaration?"); |
| 5768 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5769 | if (D->isUsed()) |
| 5770 | return; |
| 5771 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5772 | // Mark a parameter declaration "used", regardless of whether we're in a |
| 5773 | // template or not. |
| 5774 | if (isa<ParmVarDecl>(D)) |
| 5775 | D->setUsed(true); |
| 5776 | |
| 5777 | // Do not mark anything as "used" within a dependent context; wait for |
| 5778 | // an instantiation. |
| 5779 | if (CurContext->isDependentContext()) |
| 5780 | return; |
| 5781 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 5782 | switch (ExprEvalContext) { |
| 5783 | case Unevaluated: |
| 5784 | // We are in an expression that is not potentially evaluated; do nothing. |
| 5785 | return; |
| 5786 | |
| 5787 | case PotentiallyEvaluated: |
| 5788 | // We are in a potentially-evaluated expression, so this declaration is |
| 5789 | // "used"; handle this below. |
| 5790 | break; |
| 5791 | |
| 5792 | case PotentiallyPotentiallyEvaluated: |
| 5793 | // We are in an expression that may be potentially evaluated; queue this |
| 5794 | // declaration reference until we know whether the expression is |
| 5795 | // potentially evaluated. |
| 5796 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 5797 | return; |
| 5798 | } |
| 5799 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5800 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 5801 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5802 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 5803 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 5804 | if (!Constructor->isUsed()) |
| 5805 | DefineImplicitDefaultConstructor(Loc, Constructor); |
| 5806 | } |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 5807 | else if (Constructor->isImplicit() && |
| 5808 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
| 5809 | if (!Constructor->isUsed()) |
| 5810 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 5811 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 5812 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 5813 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 5814 | DefineImplicitDestructor(Loc, Destructor); |
| 5815 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 5816 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 5817 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 5818 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 5819 | if (!MethodDecl->isUsed()) |
| 5820 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 5821 | } |
| 5822 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 5823 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5824 | // Implicit instantiation of function templates and member functions of |
| 5825 | // class templates. |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 5826 | if (!Function->getBody()) { |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 5827 | // FIXME: distinguish between implicit instantiations of function |
| 5828 | // templates and explicit specializations (the latter don't get |
| 5829 | // instantiated, naturally). |
| 5830 | if (Function->getInstantiatedFromMemberFunction() || |
| 5831 | Function->getPrimaryTemplate()) |
Douglas Gregor | b33fe2f | 2009-06-30 17:20:14 +0000 | [diff] [blame] | 5832 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5833 | } |
| 5834 | |
| 5835 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5836 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5837 | Function->setUsed(true); |
| 5838 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 5839 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5840 | |
| 5841 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 5842 | // Implicit instantiation of static data members of class templates. |
| 5843 | // FIXME: distinguish between implicit instantiations (which we need to |
| 5844 | // actually instantiate) and explicit specializations. |
| 5845 | if (Var->isStaticDataMember() && |
| 5846 | Var->getInstantiatedFromStaticDataMember()) |
| 5847 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 5848 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5849 | // FIXME: keep track of references to static data? |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 5850 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5851 | D->setUsed(true); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 5852 | return; |
| 5853 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5854 | } |
| 5855 | |