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" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 19 | #include "clang/AST/ExprObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 20 | #include "clang/Basic/PartialDiagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 23 | #include "clang/Lex/LiteralSupport.h" |
| 24 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 25 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 26 | #include "clang/Parse/Designator.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 27 | #include "clang/Parse/Scope.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 30 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 31 | /// \brief Determine whether the use of this declaration is valid, and |
| 32 | /// emit any corresponding diagnostics. |
| 33 | /// |
| 34 | /// This routine diagnoses various problems with referencing |
| 35 | /// declarations that can occur when using a declaration. For example, |
| 36 | /// it might warn if a deprecated or unavailable declaration is being |
| 37 | /// used, or produce an error (and return true) if a C++0x deleted |
| 38 | /// function is being used. |
| 39 | /// |
| 40 | /// \returns true if there was an error (this declaration cannot be |
| 41 | /// referenced), false otherwise. |
| 42 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 43 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 44 | if (D->getAttr<DeprecatedAttr>()) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 45 | // Implementing deprecated stuff requires referencing deprecated |
| 46 | // stuff. Don't warn if we are implementing a deprecated |
| 47 | // construct. |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 48 | bool isSilenced = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 49 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 50 | if (NamedDecl *ND = getCurFunctionOrMethodDecl()) { |
| 51 | // If this reference happens *in* a deprecated function or method, don't |
| 52 | // warn. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 53 | isSilenced = ND->getAttr<DeprecatedAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 54 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 55 | // If this is an Objective-C method implementation, check to see if the |
| 56 | // method was deprecated on the declaration, not the definition. |
| 57 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { |
| 58 | // The semantic decl context of a ObjCMethodDecl is the |
| 59 | // ObjCImplementationDecl. |
| 60 | if (ObjCImplementationDecl *Impl |
| 61 | = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 62 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 63 | MD = Impl->getClassInterface()->getMethod(MD->getSelector(), |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 64 | MD->isInstanceMethod()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 65 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 69 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 70 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 71 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 72 | } |
| 73 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 74 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 75 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 76 | if (FD->isDeleted()) { |
| 77 | Diag(Loc, diag::err_deleted_function_use); |
| 78 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 79 | return true; |
| 80 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 81 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 82 | |
| 83 | // See if the decl is unavailable |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 84 | if (D->getAttr<UnavailableAttr>()) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 85 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 86 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 87 | } |
| 88 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 89 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 92 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 93 | /// (and other functions in future), which have been declared with sentinel |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 94 | /// attribute. It warns if call does not have the sentinel argument. |
| 95 | /// |
| 96 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 97 | Expr **Args, unsigned NumArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 98 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 100 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 101 | int sentinelPos = attr->getSentinel(); |
| 102 | int nullPos = attr->getNullPos(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 103 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 104 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 105 | // base class. Then we won't be needing two versions of the same code. |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 106 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 107 | bool warnNotEnoughArgs = false; |
| 108 | int isMethod = 0; |
| 109 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 110 | // skip over named parameters. |
| 111 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 112 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 113 | if (nullPos) |
| 114 | --nullPos; |
| 115 | else |
| 116 | ++i; |
| 117 | } |
| 118 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 119 | isMethod = 1; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 120 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 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); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 130 | } else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 131 | // block or function pointer call. |
| 132 | QualType Ty = V->getType(); |
| 133 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 134 | const FunctionType *FT = Ty->isFunctionPointerType() |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 135 | ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>() |
| 136 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 137 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 138 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 139 | unsigned k; |
| 140 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 141 | if (nullPos) |
| 142 | --nullPos; |
| 143 | else |
| 144 | ++i; |
| 145 | } |
| 146 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 147 | } |
| 148 | if (Ty->isBlockPointerType()) |
| 149 | isMethod = 2; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 150 | } else |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 151 | return; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 152 | } else |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 153 | return; |
| 154 | |
| 155 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 156 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 157 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 158 | return; |
| 159 | } |
| 160 | int sentinel = i; |
| 161 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 162 | --sentinelPos; |
| 163 | ++i; |
| 164 | } |
| 165 | if (sentinelPos > 0) { |
| 166 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 167 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 168 | return; |
| 169 | } |
| 170 | while (i < NumArgs-1) { |
| 171 | ++i; |
| 172 | ++sentinel; |
| 173 | } |
| 174 | Expr *sentinelExpr = Args[sentinel]; |
| 175 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 176 | !sentinelExpr->isNullPointerConstant(Context, |
| 177 | Expr::NPC_ValueDependentIsNull))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 178 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 179 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 180 | } |
| 181 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 184 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 185 | Expr *Ex = (Expr *)E; |
| 186 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 187 | } |
| 188 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 189 | //===----------------------------------------------------------------------===// |
| 190 | // Standard Promotions and Conversions |
| 191 | //===----------------------------------------------------------------------===// |
| 192 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 193 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 194 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 195 | QualType Ty = E->getType(); |
| 196 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 197 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 198 | if (Ty->isFunctionType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 199 | ImpCastExprToType(E, Context.getPointerType(Ty), |
Anders Carlsson | b633c4e | 2009-09-01 20:37:18 +0000 | [diff] [blame] | 200 | CastExpr::CK_FunctionToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 201 | else if (Ty->isArrayType()) { |
| 202 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 203 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 204 | // type 'array of type' is converted to an expression that has type 'pointer |
| 205 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 206 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 207 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 208 | // |
| 209 | // C++ 4.2p1: |
| 210 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 211 | // T" can be converted to an rvalue of type "pointer to T". |
| 212 | // |
| 213 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 214 | E->isLvalue(Context) == Expr::LV_Valid) |
Anders Carlsson | 112a0a8 | 2009-08-07 23:48:20 +0000 | [diff] [blame] | 215 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 216 | CastExpr::CK_ArrayToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 217 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 221 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 222 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 223 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 224 | /// In these instances, this routine should *not* be called. |
| 225 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 226 | QualType Ty = Expr->getType(); |
| 227 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 228 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 229 | // C99 6.3.1.1p2: |
| 230 | // |
| 231 | // The following may be used in an expression wherever an int or |
| 232 | // unsigned int may be used: |
| 233 | // - an object or expression with an integer type whose integer |
| 234 | // conversion rank is less than or equal to the rank of int |
| 235 | // and unsigned int. |
| 236 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 237 | // |
| 238 | // If an int can represent all values of the original type, the |
| 239 | // value is converted to an int; otherwise, it is converted to an |
| 240 | // unsigned int. These are called the integer promotions. All |
| 241 | // other types are unchanged by the integer promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 242 | QualType PTy = Context.isPromotableBitField(Expr); |
| 243 | if (!PTy.isNull()) { |
| 244 | ImpCastExprToType(Expr, PTy); |
| 245 | return Expr; |
| 246 | } |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 247 | if (Ty->isPromotableIntegerType()) { |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 248 | QualType PT = Context.getPromotedIntegerType(Ty); |
| 249 | ImpCastExprToType(Expr, PT); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 250 | return Expr; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 251 | } |
| 252 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 253 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 254 | return Expr; |
| 255 | } |
| 256 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 257 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | /// do not have a prototype. Arguments that have type float are promoted to |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 259 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 260 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 261 | QualType Ty = Expr->getType(); |
| 262 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 263 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 264 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 265 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 266 | if (BT->getKind() == BuiltinType::Float) |
| 267 | return ImpCastExprToType(Expr, Context.DoubleTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 268 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 269 | UsualUnaryConversions(Expr); |
| 270 | } |
| 271 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 272 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 273 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 274 | /// interfaces passed by value. This returns true if the argument type is |
| 275 | /// completely illegal. |
| 276 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 277 | DefaultArgumentPromotion(Expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 278 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 279 | if (Expr->getType()->isObjCInterfaceType()) { |
| 280 | Diag(Expr->getLocStart(), |
| 281 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 282 | << Expr->getType() << CT; |
| 283 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 284 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 286 | if (!Expr->getType()->isPODType()) |
| 287 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 288 | << Expr->getType() << CT; |
| 289 | |
| 290 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 294 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 295 | /// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 296 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 297 | /// responsible for emitting appropriate error diagnostics. |
| 298 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 299 | /// GCC. |
| 300 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 301 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 302 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 303 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 304 | |
| 305 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 306 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 307 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 308 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 309 | QualType lhs = |
| 310 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 311 | QualType rhs = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 312 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 313 | |
| 314 | // If both types are identical, no conversion is needed. |
| 315 | if (lhs == rhs) |
| 316 | return lhs; |
| 317 | |
| 318 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 319 | // The caller can deal with this (e.g. pointer + int). |
| 320 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 321 | return lhs; |
| 322 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 323 | // Perform bitfield promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 324 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 325 | if (!LHSBitfieldPromoteTy.isNull()) |
| 326 | lhs = LHSBitfieldPromoteTy; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 327 | QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 328 | if (!RHSBitfieldPromoteTy.isNull()) |
| 329 | rhs = RHSBitfieldPromoteTy; |
| 330 | |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 331 | QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 332 | if (!isCompAssign) |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 333 | ImpCastExprToType(lhsExpr, destType); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 334 | ImpCastExprToType(rhsExpr, destType); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 335 | return destType; |
| 336 | } |
| 337 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 338 | //===----------------------------------------------------------------------===// |
| 339 | // Semantic Analysis for various Expression Types |
| 340 | //===----------------------------------------------------------------------===// |
| 341 | |
| 342 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 343 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 344 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 345 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 346 | /// multiple tokens. However, the common case is that StringToks points to one |
| 347 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 348 | /// |
| 349 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 350 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 351 | assert(NumStringToks && "Must have at least one string!"); |
| 352 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 353 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 354 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 355 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 356 | |
| 357 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 358 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 359 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 360 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 361 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 362 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 363 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 364 | |
| 365 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 366 | if (getLangOptions().CPlusPlus) |
| 367 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 368 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 369 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 370 | // the nul terminator character as well as the string length for pascal |
| 371 | // strings. |
| 372 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 373 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 374 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 375 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 376 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 377 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 378 | Literal.GetStringLength(), |
| 379 | Literal.AnyWide, StrTy, |
| 380 | &StringTokLocs[0], |
| 381 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 384 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 385 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 386 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 387 | /// for values inside the block or for globals). |
| 388 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 389 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 390 | /// up-to-date. |
| 391 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 392 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 393 | ValueDecl *VD) { |
| 394 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 395 | // we wanted to. |
| 396 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 397 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 398 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 399 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 400 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 401 | return false; |
| 402 | |
| 403 | // If this is a reference to an extern, static, or global variable, no need to |
| 404 | // snapshot it. |
| 405 | // FIXME: What about 'const' variables in C++? |
| 406 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 407 | if (!Var->hasLocalStorage()) |
| 408 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 409 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 410 | // Blocks that have these can't be constant. |
| 411 | CurBlock->hasBlockDeclRefExprs = true; |
| 412 | |
| 413 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 414 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 415 | // be defined outside all of the current blocks (in which case the blocks do |
| 416 | // all get the bit). Walk the nesting chain. |
| 417 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 418 | NextBlock = NextBlock->PrevBlockInfo) { |
| 419 | // If we found the defining block for the variable, don't mark the block as |
| 420 | // having a reference outside it. |
| 421 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 422 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 423 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 424 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 425 | // a snapshot as well. |
| 426 | NextBlock->hasBlockDeclRefExprs = true; |
| 427 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 428 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 429 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 432 | |
| 433 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 434 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 435 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 436 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 437 | /// 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] | 438 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 439 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 440 | IdentifierInfo &II, |
| 441 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 442 | const CXXScopeSpec *SS, |
| 443 | bool isAddressOfOperand) { |
| 444 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 445 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 448 | /// BuildDeclRefExpr - Build either a DeclRefExpr or a |
| 449 | /// QualifiedDeclRefExpr based on whether or not SS is a |
| 450 | /// nested-name-specifier. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 451 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 452 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 453 | bool TypeDependent, bool ValueDependent, |
| 454 | const CXXScopeSpec *SS) { |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 455 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 456 | Diag(Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 457 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 458 | << D->getDeclName(); |
| 459 | return ExprError(); |
| 460 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 461 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 462 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 463 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 464 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 465 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 466 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 467 | << D->getIdentifier() << FD->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 468 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 469 | << D->getIdentifier(); |
| 470 | return ExprError(); |
| 471 | } |
| 472 | } |
| 473 | } |
| 474 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 475 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 476 | MarkDeclarationReferenced(Loc, D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 477 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 478 | Expr *E; |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 479 | if (SS && !SS->isEmpty()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 480 | E = new (Context) QualifiedDeclRefExpr(D, Ty, Loc, TypeDependent, |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 481 | ValueDependent, SS->getRange(), |
Douglas Gregor | 3507369 | 2009-03-26 23:56:24 +0000 | [diff] [blame] | 482 | static_cast<NestedNameSpecifier *>(SS->getScopeRep())); |
Douglas Gregor | bad3518 | 2009-03-19 03:51:16 +0000 | [diff] [blame] | 483 | } else |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 484 | E = new (Context) DeclRefExpr(D, Ty, Loc, TypeDependent, ValueDependent); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 485 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 486 | return Owned(E); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 487 | } |
| 488 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 489 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 490 | /// variable corresponding to the anonymous union or struct whose type |
| 491 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 492 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 493 | RecordDecl *Record) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 494 | assert(Record->isAnonymousStructOrUnion() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 495 | "Record must be an anonymous struct or union!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 496 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 497 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 498 | // operation rather than a slow walk through DeclContext's vector (which |
| 499 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 500 | DeclContext *Ctx = Record->getDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 501 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 502 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 503 | D != DEnd; ++D) { |
| 504 | if (*D == Record) { |
| 505 | // The object for the anonymous struct/union directly |
| 506 | // follows its type in the list of declarations. |
| 507 | ++D; |
| 508 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 509 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 510 | return *D; |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | assert(false && "Missing object for anonymous record"); |
| 515 | return 0; |
| 516 | } |
| 517 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 518 | /// \brief Given a field that represents a member of an anonymous |
| 519 | /// struct/union, build the path from that field's context to the |
| 520 | /// actual member. |
| 521 | /// |
| 522 | /// Construct the sequence of field member references we'll have to |
| 523 | /// perform to get to the field in the anonymous union/struct. The |
| 524 | /// list of members is built from the field outward, so traverse it |
| 525 | /// backwards to go from an object in the current context to the field |
| 526 | /// we found. |
| 527 | /// |
| 528 | /// \returns The variable from which the field access should begin, |
| 529 | /// for an anonymous struct/union that is not a member of another |
| 530 | /// class. Otherwise, returns NULL. |
| 531 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 532 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 533 | assert(Field->getDeclContext()->isRecord() && |
| 534 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 535 | && "Field must be stored inside an anonymous struct or union"); |
| 536 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 537 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 538 | VarDecl *BaseObject = 0; |
| 539 | DeclContext *Ctx = Field->getDeclContext(); |
| 540 | do { |
| 541 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 542 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 543 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 544 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 545 | else { |
| 546 | BaseObject = cast<VarDecl>(AnonObject); |
| 547 | break; |
| 548 | } |
| 549 | Ctx = Ctx->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 550 | } while (Ctx->isRecord() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 551 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 552 | |
| 553 | return BaseObject; |
| 554 | } |
| 555 | |
| 556 | Sema::OwningExprResult |
| 557 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 558 | FieldDecl *Field, |
| 559 | Expr *BaseObjectExpr, |
| 560 | SourceLocation OpLoc) { |
| 561 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 562 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 563 | AnonFields); |
| 564 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 565 | // Build the expression that refers to the base object, from |
| 566 | // which we will build a sequence of member references to each |
| 567 | // of the anonymous union objects and, eventually, the field we |
| 568 | // found via name lookup. |
| 569 | bool BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 570 | Qualifiers BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 571 | if (BaseObject) { |
| 572 | // BaseObject is an anonymous struct/union variable (and is, |
| 573 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 574 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 575 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 576 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 577 | SourceLocation()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 578 | BaseQuals |
| 579 | = Context.getCanonicalType(BaseObject->getType()).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 580 | } else if (BaseObjectExpr) { |
| 581 | // The caller provided the base object expression. Determine |
| 582 | // whether its a pointer and whether it adds any qualifiers to the |
| 583 | // anonymous struct/union fields we're looking into. |
| 584 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 585 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 586 | BaseObjectIsPointer = true; |
| 587 | ObjectType = ObjectPtr->getPointeeType(); |
| 588 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 589 | BaseQuals |
| 590 | = Context.getCanonicalType(ObjectType).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 591 | } else { |
| 592 | // We've found a member of an anonymous struct/union that is |
| 593 | // inside a non-anonymous struct/union, so in a well-formed |
| 594 | // program our base object expression is "this". |
| 595 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 596 | if (!MD->isStatic()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 597 | QualType AnonFieldType |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 598 | = Context.getTagDeclType( |
| 599 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 600 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 601 | if ((Context.getCanonicalType(AnonFieldType) |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 602 | == Context.getCanonicalType(ThisType)) || |
| 603 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 604 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 605 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 606 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 607 | BaseObjectIsPointer = true; |
| 608 | } |
| 609 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 610 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 611 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 612 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 613 | BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 614 | } |
| 615 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 616 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 617 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 618 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | // Build the implicit member references to the field of the |
| 622 | // anonymous struct/union. |
| 623 | Expr *Result = BaseObjectExpr; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 624 | Qualifiers ResultQuals = BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 625 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 626 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 627 | FI != FIEnd; ++FI) { |
| 628 | QualType MemberType = (*FI)->getType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 629 | Qualifiers MemberTypeQuals = |
| 630 | Context.getCanonicalType(MemberType).getQualifiers(); |
| 631 | |
| 632 | // CVR attributes from the base are picked up by members, |
| 633 | // except that 'mutable' members don't pick up 'const'. |
| 634 | if ((*FI)->isMutable()) |
| 635 | ResultQuals.removeConst(); |
| 636 | |
| 637 | // GC attributes are never picked up by members. |
| 638 | ResultQuals.removeObjCGCAttr(); |
| 639 | |
| 640 | // TR 18037 does not allow fields to be declared with address spaces. |
| 641 | assert(!MemberTypeQuals.hasAddressSpace()); |
| 642 | |
| 643 | Qualifiers NewQuals = ResultQuals + MemberTypeQuals; |
| 644 | if (NewQuals != MemberTypeQuals) |
| 645 | MemberType = Context.getQualifiedType(MemberType, NewQuals); |
| 646 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 647 | MarkDeclarationReferenced(Loc, *FI); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 648 | // FIXME: Might this end up being a qualified name? |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 649 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 650 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 651 | BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 652 | ResultQuals = NewQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 653 | } |
| 654 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 655 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 656 | } |
| 657 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 658 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 659 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 660 | /// performs lookup on that name and returns an expression that refers |
| 661 | /// to that name. This routine isn't directly called from the parser, |
| 662 | /// because the parser doesn't know about DeclarationName. Rather, |
| 663 | /// this routine is called by ActOnIdentifierExpr, |
| 664 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 665 | /// which form the DeclarationName from the corresponding syntactic |
| 666 | /// forms. |
| 667 | /// |
| 668 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 669 | /// function call context. LookupCtx is only used for a C++ |
| 670 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 671 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 672 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 673 | /// isAddressOfOperand means that this expression is the direct operand |
| 674 | /// of an address-of operator. This matters because this is the only |
| 675 | /// situation where a qualified name referencing a non-static member may |
| 676 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 677 | Sema::OwningExprResult |
| 678 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 679 | DeclarationName Name, bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 680 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 681 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 682 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 683 | if (SS && SS->isInvalid()) |
| 684 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 685 | |
| 686 | // C++ [temp.dep.expr]p3: |
| 687 | // An id-expression is type-dependent if it contains: |
| 688 | // -- a nested-name-specifier that contains a class-name that |
| 689 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 690 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 691 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 692 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 693 | Loc, SS->getRange(), |
Anders Carlsson | 9b31df4 | 2009-07-09 00:05:08 +0000 | [diff] [blame] | 694 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()), |
| 695 | isAddressOfOperand)); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 696 | } |
| 697 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 698 | LookupResult Lookup; |
| 699 | LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 700 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 701 | if (Lookup.isAmbiguous()) { |
| 702 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 703 | SS && SS->isSet() ? SS->getRange() |
| 704 | : SourceRange()); |
| 705 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 706 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 707 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 708 | NamedDecl *D = Lookup.getAsSingleDecl(Context); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 709 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 710 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 711 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 712 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 713 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 714 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 715 | // in which case we should look for an ivar. 2) scoped lookup could have |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 716 | // found a decl, but that decl is outside the current instance method (i.e. |
| 717 | // a global variable). In these two cases, we do a lookup for an ivar with |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 718 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 719 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 720 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 721 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 722 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 723 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 724 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 725 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 726 | |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 727 | // If we're referencing an invalid decl, just return this as a silent |
| 728 | // error node. The error diagnostic was already emitted on the decl. |
| 729 | if (IV->isInvalidDecl()) |
| 730 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 731 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 732 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 733 | // If a class method attemps to use a free standing ivar, this is |
| 734 | // an error. |
| 735 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 736 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 737 | << IV->getDeclName()); |
| 738 | // If a class method uses a global variable, even if an ivar with |
| 739 | // same name exists, use the global. |
| 740 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 741 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 742 | ClassDeclared != IFace) |
| 743 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 744 | // FIXME: This should use a new expr for a direct reference, don't |
| 745 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 746 | IdentifierInfo &II = Context.Idents.get("self"); |
Argyrios Kyrtzidis | ecd1bae | 2009-07-18 08:49:37 +0000 | [diff] [blame] | 747 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(), |
| 748 | II, false); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 749 | MarkDeclarationReferenced(Loc, IV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 750 | return Owned(new (Context) |
| 751 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 752 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 753 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 754 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 755 | } else if (getCurMethodDecl()->isInstanceMethod()) { |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 756 | // We should warn if a local variable hides an ivar. |
| 757 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 758 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 759 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 760 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 761 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 762 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 763 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 764 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 765 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 766 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 767 | QualType T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 768 | |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 769 | if (getCurMethodDecl()->isInstanceMethod()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 770 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 771 | getCurMethodDecl()->getClassInterface())); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 772 | else |
| 773 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 774 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 775 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 776 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 777 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 778 | // Determine whether this name might be a candidate for |
| 779 | // argument-dependent lookup. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 780 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 781 | HasTrailingLParen; |
| 782 | |
| 783 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 784 | // We've seen something of the form |
| 785 | // |
| 786 | // identifier( |
| 787 | // |
| 788 | // and we did not find any entity by the name |
| 789 | // "identifier". However, this identifier is still subject to |
| 790 | // argument-dependent lookup, so keep track of the name. |
| 791 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 792 | Context.OverloadTy, |
| 793 | Loc)); |
| 794 | } |
| 795 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 796 | if (D == 0) { |
| 797 | // Otherwise, this could be an implicitly declared function reference (legal |
| 798 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 799 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 800 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 801 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 802 | else { |
| 803 | // If this name wasn't predeclared and if this is not a function call, |
| 804 | // diagnose the problem. |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 805 | if (SS && !SS->isEmpty()) |
| 806 | return ExprError(Diag(Loc, diag::err_no_member) |
| 807 | << Name << computeDeclContext(*SS, false) |
| 808 | << SS->getRange()); |
| 809 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 810 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 811 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 812 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 813 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 814 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 815 | } |
| 816 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 817 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 818 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 819 | // Warn about constructs like: |
| 820 | // if (void *X = foo()) { ... } else { X }. |
| 821 | // In the else block, the pointer is always false. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 822 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 823 | // FIXME: In a template instantiation, we don't have scope |
| 824 | // information to check this property. |
| 825 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 826 | Scope *CheckS = S; |
| 827 | while (CheckS) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 828 | if (CheckS->isWithinElse() && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 829 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
| 830 | if (Var->getType()->isBooleanType()) |
| 831 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 832 | << Var->getDeclName()); |
| 833 | else |
| 834 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 835 | << Var->getDeclName()); |
| 836 | break; |
| 837 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 838 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 839 | // Move up one more control parent to check again. |
| 840 | CheckS = CheckS->getControlParent(); |
| 841 | if (CheckS) |
| 842 | CheckS = CheckS->getParent(); |
| 843 | } |
| 844 | } |
| 845 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { |
| 846 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 847 | // C99 DR 316 says that, if a function type comes from a |
| 848 | // function definition (without a prototype), that type is only |
| 849 | // used for checking compatibility. Therefore, when referencing |
| 850 | // the function, we pretend that we don't have the full function |
| 851 | // type. |
| 852 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 853 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 854 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 855 | QualType T = Func->getType(); |
| 856 | QualType NoProtoType = T; |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 857 | if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>()) |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 858 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
| 859 | return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); |
| 860 | } |
| 861 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 862 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 863 | return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); |
| 864 | } |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 865 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 866 | bool |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 867 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 868 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 869 | if (CXXRecordDecl *RD = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 870 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 871 | QualType DestType = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 872 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 873 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 874 | return false; |
| 875 | QualType FromRecordType = From->getType(); |
| 876 | QualType DestRecordType = DestType; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 877 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 878 | DestType = Context.getPointerType(DestType); |
| 879 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 880 | } |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 881 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 882 | CheckDerivedToBaseConversion(FromRecordType, |
| 883 | DestRecordType, |
| 884 | From->getSourceRange().getBegin(), |
| 885 | From->getSourceRange())) |
| 886 | return true; |
Anders Carlsson | 3503d04 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 887 | ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, |
| 888 | /*isLvalue=*/true); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 889 | } |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 890 | return false; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 891 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 892 | |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 893 | /// \brief Build a MemberExpr AST node. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 894 | static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow, |
| 895 | const CXXScopeSpec *SS, NamedDecl *Member, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 896 | SourceLocation Loc, QualType Ty) { |
| 897 | if (SS && SS->isSet()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 898 | return MemberExpr::Create(C, Base, isArrow, |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 899 | (NestedNameSpecifier *)SS->getScopeRep(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 900 | SS->getRange(), Member, Loc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 901 | // FIXME: Explicit template argument lists |
| 902 | false, SourceLocation(), 0, 0, SourceLocation(), |
| 903 | Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 904 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 905 | return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty); |
| 906 | } |
| 907 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 908 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 909 | Sema::OwningExprResult |
| 910 | Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 911 | bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 912 | const CXXScopeSpec *SS, |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 913 | bool isAddressOfOperand) { |
| 914 | assert(D && "Cannot refer to a NULL declaration"); |
| 915 | DeclarationName Name = D->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 916 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 917 | // If this is an expression of the form &Class::member, don't build an |
| 918 | // implicit member ref, because we want a pointer to the member in general, |
| 919 | // not any specific instance's member. |
| 920 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 921 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 922 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 923 | QualType DType; |
| 924 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 925 | DType = FD->getType().getNonReferenceType(); |
| 926 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 927 | DType = Method->getType(); |
| 928 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 929 | DType = Context.OverloadTy; |
| 930 | } |
| 931 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 932 | if (!DType.isNull()) { |
| 933 | // The pointer is type- and value-dependent if it points into something |
| 934 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 935 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 936 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 937 | } |
| 938 | } |
| 939 | } |
| 940 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 941 | // We may have found a field within an anonymous union or struct |
| 942 | // (C++ [class.union]). |
| 943 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 944 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 945 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 946 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 947 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 948 | if (!MD->isStatic()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 949 | // C++ [class.mfct.nonstatic]p2: |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 950 | // [...] if name lookup (3.4.1) resolves the name in the |
| 951 | // id-expression to a nonstatic nontype member of class X or of |
| 952 | // a base class of X, the id-expression is transformed into a |
| 953 | // class member access expression (5.2.5) using (*this) (9.3.2) |
| 954 | // as the postfix-expression to the left of the '.' operator. |
| 955 | DeclContext *Ctx = 0; |
| 956 | QualType MemberType; |
| 957 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 958 | Ctx = FD->getDeclContext(); |
| 959 | MemberType = FD->getType(); |
| 960 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 961 | if (const ReferenceType *RefType = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 962 | MemberType = RefType->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 963 | else if (!FD->isMutable()) |
| 964 | MemberType |
| 965 | = Context.getQualifiedType(MemberType, |
| 966 | Qualifiers::fromCVRMask(MD->getTypeQualifiers())); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 967 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 968 | if (!Method->isStatic()) { |
| 969 | Ctx = Method->getParent(); |
| 970 | MemberType = Method->getType(); |
| 971 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 972 | } else if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 973 | = dyn_cast<FunctionTemplateDecl>(D)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 974 | if (CXXMethodDecl *Method |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 975 | = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 976 | if (!Method->isStatic()) { |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 977 | Ctx = Method->getParent(); |
| 978 | MemberType = Context.OverloadTy; |
| 979 | } |
| 980 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 981 | } else if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 982 | = dyn_cast<OverloadedFunctionDecl>(D)) { |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 983 | // FIXME: We need an abstraction for iterating over one or more function |
| 984 | // templates or functions. This code is far too repetitive! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 985 | for (OverloadedFunctionDecl::function_iterator |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 986 | Func = Ovl->function_begin(), |
| 987 | FuncEnd = Ovl->function_end(); |
| 988 | Func != FuncEnd; ++Func) { |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 989 | CXXMethodDecl *DMethod = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 990 | if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 991 | = dyn_cast<FunctionTemplateDecl>(*Func)) |
| 992 | DMethod = dyn_cast<CXXMethodDecl>(FunTmpl->getTemplatedDecl()); |
| 993 | else |
| 994 | DMethod = dyn_cast<CXXMethodDecl>(*Func); |
| 995 | |
| 996 | if (DMethod && !DMethod->isStatic()) { |
| 997 | Ctx = DMethod->getDeclContext(); |
| 998 | MemberType = Context.OverloadTy; |
| 999 | break; |
| 1000 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1001 | } |
| 1002 | } |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1003 | |
| 1004 | if (Ctx && Ctx->isRecord()) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1005 | QualType CtxType = Context.getTagDeclType(cast<CXXRecordDecl>(Ctx)); |
| 1006 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1007 | if ((Context.getCanonicalType(CtxType) |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1008 | == Context.getCanonicalType(ThisType)) || |
| 1009 | IsDerivedFrom(ThisType, CtxType)) { |
| 1010 | // Build the implicit member access expression. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1011 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1012 | MD->getThisType(Context)); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1013 | MarkDeclarationReferenced(Loc, D); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 1014 | if (PerformObjectMemberConversion(This, D)) |
| 1015 | return ExprError(); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1016 | |
Anders Carlsson | ed90c4e | 2009-09-11 05:54:14 +0000 | [diff] [blame] | 1017 | bool ShouldCheckUse = true; |
| 1018 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 1019 | // Don't diagnose the use of a virtual member function unless it's |
| 1020 | // explicitly qualified. |
| 1021 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 1022 | ShouldCheckUse = false; |
| 1023 | } |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1024 | |
Anders Carlsson | ed90c4e | 2009-09-11 05:54:14 +0000 | [diff] [blame] | 1025 | if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc)) |
Anders Carlsson | 0f44b5a | 2009-08-08 16:55:18 +0000 | [diff] [blame] | 1026 | return ExprError(); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 1027 | return Owned(BuildMemberExpr(Context, This, true, SS, D, |
| 1028 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1029 | } |
| 1030 | } |
| 1031 | } |
| 1032 | } |
| 1033 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1034 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1035 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 1036 | if (MD->isStatic()) |
| 1037 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1038 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 1039 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1040 | } |
| 1041 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1042 | // Any other ways we could have found the field in a well-formed |
| 1043 | // program would have been turned into implicit member expressions |
| 1044 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1045 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 1046 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 1047 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 1048 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1049 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1050 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 1051 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1052 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 1053 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1054 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1055 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1056 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 1057 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1058 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 1059 | false, false, SS); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 1060 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1061 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 1062 | false, false, SS); |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 1063 | else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1064 | return BuildDeclRefExpr(UD, Context.DependentTy, Loc, |
| 1065 | /*TypeDependent=*/true, |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 1066 | /*ValueDependent=*/true, SS); |
| 1067 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1068 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1069 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1070 | // Check whether this declaration can be used. Note that we suppress |
| 1071 | // this check when we're going to perform argument-dependent lookup |
| 1072 | // on this function name, because this might not be the function |
| 1073 | // that overload resolution actually selects. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1074 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1075 | HasTrailingLParen; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1076 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1077 | return ExprError(); |
| 1078 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1079 | // Only create DeclRefExpr's for valid Decl's. |
| 1080 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1081 | return ExprError(); |
| 1082 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1083 | // If the identifier reference is inside a block, and it refers to a value |
| 1084 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1085 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1086 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1087 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1088 | // We do not do this for things like enum constants, global variables, etc, |
| 1089 | // as they do not get snapshotted. |
| 1090 | // |
| 1091 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1092 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1093 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1094 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1095 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1096 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1097 | // This is to record that a 'const' was actually synthesize and added. |
| 1098 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1099 | // Variable will be bound by-copy, make it const within the closure. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1100 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1101 | ExprTy.addConst(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1102 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1103 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1104 | } |
| 1105 | // If this reference is not in a block or if the referenced variable is |
| 1106 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1107 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1108 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1109 | bool ValueDependent = false; |
| 1110 | if (getLangOptions().CPlusPlus) { |
| 1111 | // C++ [temp.dep.expr]p3: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1112 | // An id-expression is type-dependent if it contains: |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1113 | // - an identifier that was declared with a dependent type, |
| 1114 | if (VD->getType()->isDependentType()) |
| 1115 | TypeDependent = true; |
| 1116 | // - FIXME: a template-id that is dependent, |
| 1117 | // - a conversion-function-id that specifies a dependent type, |
| 1118 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1119 | Name.getCXXNameType()->isDependentType()) |
| 1120 | TypeDependent = true; |
| 1121 | // - a nested-name-specifier that contains a class-name that |
| 1122 | // names a dependent type. |
| 1123 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1124 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1125 | DC; DC = DC->getParent()) { |
| 1126 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1127 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1128 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1129 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1130 | TypeDependent = true; |
| 1131 | break; |
| 1132 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1133 | } |
| 1134 | } |
| 1135 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1136 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1137 | // C++ [temp.dep.constexpr]p2: |
| 1138 | // |
| 1139 | // An identifier is value-dependent if it is: |
| 1140 | // - a name declared with a dependent type, |
| 1141 | if (TypeDependent) |
| 1142 | ValueDependent = true; |
| 1143 | // - the name of a non-type template parameter, |
| 1144 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1145 | ValueDependent = true; |
| 1146 | // - a constant with integral or enumeration type and is |
| 1147 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1148 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1149 | if (Dcl->getType().getCVRQualifiers() == Qualifiers::Const && |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1150 | Dcl->getInit()) { |
| 1151 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1152 | } |
| 1153 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1154 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1155 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1156 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1157 | TypeDependent, ValueDependent, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1158 | } |
| 1159 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1160 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1161 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1162 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1163 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1164 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1165 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1166 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1167 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1168 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1169 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1170 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1171 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1172 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1173 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1174 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
| 1175 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1176 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1177 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1178 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1179 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1180 | QualType ResTy; |
| 1181 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 1182 | ResTy = Context.DependentTy; |
| 1183 | } else { |
| 1184 | unsigned Length = |
| 1185 | PredefinedExpr::ComputeName(Context, IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1186 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1187 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1188 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1189 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 1190 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1191 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1192 | } |
| 1193 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1194 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1195 | llvm::SmallString<16> CharBuffer; |
| 1196 | CharBuffer.resize(Tok.getLength()); |
| 1197 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1198 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1199 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1200 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1201 | Tok.getLocation(), PP); |
| 1202 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1203 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1204 | |
| 1205 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1206 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1207 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1208 | Literal.isWide(), |
| 1209 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1210 | } |
| 1211 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1212 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1213 | // 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] | 1214 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1215 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1216 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1217 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1218 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1219 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1220 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1221 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1222 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1223 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1224 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1225 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1226 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1227 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1228 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1229 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1230 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1231 | Tok.getLocation(), PP); |
| 1232 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1233 | return ExprError(); |
| 1234 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1235 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1236 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1237 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1238 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1239 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1240 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1241 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1242 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1243 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1244 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1245 | |
| 1246 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1247 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1248 | // isExact will be set by GetFloatValue(). |
| 1249 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1250 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1251 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1252 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1253 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1254 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1255 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1256 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1257 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1258 | // long long is a C99 feature. |
| 1259 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1260 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1261 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1262 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1263 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1264 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1265 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1266 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1267 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1268 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1269 | Ty = Context.UnsignedLongLongTy; |
| 1270 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1271 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1272 | } else { |
| 1273 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1274 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1275 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1276 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1277 | // be an unsigned int. |
| 1278 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1279 | |
| 1280 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1281 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1282 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1283 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1284 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1285 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1286 | // Does it fit in a unsigned int? |
| 1287 | if (ResultVal.isIntN(IntSize)) { |
| 1288 | // Does it fit in a signed int? |
| 1289 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1290 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1291 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1292 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1293 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1294 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1295 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1296 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1297 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1298 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1299 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1300 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1301 | // Does it fit in a unsigned long? |
| 1302 | if (ResultVal.isIntN(LongSize)) { |
| 1303 | // Does it fit in a signed long? |
| 1304 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1305 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1306 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1307 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1308 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1309 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1310 | } |
| 1311 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1312 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1313 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1314 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1315 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1316 | // Does it fit in a unsigned long long? |
| 1317 | if (ResultVal.isIntN(LongLongSize)) { |
| 1318 | // Does it fit in a signed long long? |
| 1319 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1320 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1321 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1322 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1323 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1324 | } |
| 1325 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1326 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1327 | // If we still couldn't decide a type, we probably have something that |
| 1328 | // 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] | 1329 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1330 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1331 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1332 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1333 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1334 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1335 | if (ResultVal.getBitWidth() != Width) |
| 1336 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1337 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1338 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1339 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1340 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1341 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1342 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1343 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1344 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1345 | |
| 1346 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1349 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1350 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1351 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1352 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1353 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1354 | } |
| 1355 | |
| 1356 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1357 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1358 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1359 | SourceLocation OpLoc, |
| 1360 | const SourceRange &ExprRange, |
| 1361 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1362 | if (exprType->isDependentType()) |
| 1363 | return false; |
| 1364 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1365 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1366 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1367 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1368 | if (isSizeof) |
| 1369 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1370 | return false; |
| 1371 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1372 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1373 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1374 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1375 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1376 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1377 | return false; |
| 1378 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1379 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1380 | if (RequireCompleteType(OpLoc, exprType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1381 | isSizeof ? diag::err_sizeof_incomplete_type : |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1382 | PDiag(diag::err_alignof_incomplete_type) |
| 1383 | << ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1384 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1385 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1386 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1387 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1388 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1389 | << exprType << isSizeof << ExprRange; |
| 1390 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1391 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1392 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1393 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1394 | } |
| 1395 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1396 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1397 | const SourceRange &ExprRange) { |
| 1398 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1399 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1400 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1401 | if (isa<DeclRefExpr>(E)) |
| 1402 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1403 | |
| 1404 | // Cannot know anything else if the expression is dependent. |
| 1405 | if (E->isTypeDependent()) |
| 1406 | return false; |
| 1407 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1408 | if (E->getBitField()) { |
| 1409 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1410 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1411 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1412 | |
| 1413 | // Alignment of a field access is always okay, so long as it isn't a |
| 1414 | // bit-field. |
| 1415 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1416 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1417 | return false; |
| 1418 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1419 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1420 | } |
| 1421 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1422 | /// \brief Build a sizeof or alignof expression given a type operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1423 | Action::OwningExprResult |
| 1424 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1425 | bool isSizeOf, SourceRange R) { |
| 1426 | if (T.isNull()) |
| 1427 | return ExprError(); |
| 1428 | |
| 1429 | if (!T->isDependentType() && |
| 1430 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1431 | return ExprError(); |
| 1432 | |
| 1433 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1434 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1435 | Context.getSizeType(), OpLoc, |
| 1436 | R.getEnd())); |
| 1437 | } |
| 1438 | |
| 1439 | /// \brief Build a sizeof or alignof expression given an expression |
| 1440 | /// operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1441 | Action::OwningExprResult |
| 1442 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1443 | bool isSizeOf, SourceRange R) { |
| 1444 | // Verify that the operand is valid. |
| 1445 | bool isInvalid = false; |
| 1446 | if (E->isTypeDependent()) { |
| 1447 | // Delay type-checking for type-dependent expressions. |
| 1448 | } else if (!isSizeOf) { |
| 1449 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1450 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1451 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1452 | isInvalid = true; |
| 1453 | } else { |
| 1454 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1455 | } |
| 1456 | |
| 1457 | if (isInvalid) |
| 1458 | return ExprError(); |
| 1459 | |
| 1460 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1461 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1462 | Context.getSizeType(), OpLoc, |
| 1463 | R.getEnd())); |
| 1464 | } |
| 1465 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1466 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1467 | /// the same for @c alignof and @c __alignof |
| 1468 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1469 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1470 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1471 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1472 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1473 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1474 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1475 | if (isType) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 1476 | // FIXME: Preserve type source info. |
| 1477 | QualType ArgTy = GetTypeFromParser(TyOrEx); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1478 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1479 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1480 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1481 | // Get the end location. |
| 1482 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1483 | Action::OwningExprResult Result |
| 1484 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1485 | |
| 1486 | if (Result.isInvalid()) |
| 1487 | DeleteExpr(ArgEx); |
| 1488 | |
| 1489 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1490 | } |
| 1491 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1492 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1493 | if (V->isTypeDependent()) |
| 1494 | return Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1495 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1496 | // These operators return the element type of a complex type. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1497 | if (const ComplexType *CT = V->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1498 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1499 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1500 | // Otherwise they pass through real integer and floating point types here. |
| 1501 | if (V->getType()->isArithmeticType()) |
| 1502 | return V->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1503 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1504 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1505 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1506 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1507 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1508 | } |
| 1509 | |
| 1510 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1511 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1512 | Action::OwningExprResult |
| 1513 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1514 | tok::TokenKind Kind, ExprArg Input) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1515 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1516 | Input = MaybeConvertParenListExprToParenExpr(S, move(Input)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1517 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1518 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1519 | UnaryOperator::Opcode Opc; |
| 1520 | switch (Kind) { |
| 1521 | default: assert(0 && "Unknown unary op!"); |
| 1522 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1523 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1524 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1525 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1526 | if (getLangOptions().CPlusPlus && |
| 1527 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1528 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1529 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1530 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1531 | |
| 1532 | // C++ [over.inc]p1: |
| 1533 | // |
| 1534 | // [...] If the function is a member function with one |
| 1535 | // parameter (which shall be of type int) or a non-member |
| 1536 | // function with two parameters (the second of which shall be |
| 1537 | // of type int), it defines the postfix increment operator ++ |
| 1538 | // for objects of that type. When the postfix increment is |
| 1539 | // called as a result of using the ++ operator, the int |
| 1540 | // argument will have value zero. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1541 | Expr *Args[2] = { |
| 1542 | Arg, |
| 1543 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1544 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1545 | }; |
| 1546 | |
| 1547 | // Build the candidate set for overloading |
| 1548 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1549 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1550 | |
| 1551 | // Perform overload resolution. |
| 1552 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1553 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1554 | case OR_Success: { |
| 1555 | // We found a built-in operator or an overloaded operator. |
| 1556 | FunctionDecl *FnDecl = Best->Function; |
| 1557 | |
| 1558 | if (FnDecl) { |
| 1559 | // We matched an overloaded operator. Build a call to that |
| 1560 | // operator. |
| 1561 | |
| 1562 | // Convert the arguments. |
| 1563 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1564 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1565 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1566 | } else { |
| 1567 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1568 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1569 | FnDecl->getParamDecl(0)->getType(), |
| 1570 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1571 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1572 | } |
| 1573 | |
| 1574 | // Determine the result type |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1575 | QualType ResultTy = FnDecl->getResultType().getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1576 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1577 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1578 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1579 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1580 | UsualUnaryConversions(FnExpr); |
| 1581 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1582 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1583 | Args[0] = Arg; |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1584 | |
| 1585 | ExprOwningPtr<CXXOperatorCallExpr> |
| 1586 | TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp, |
| 1587 | FnExpr, Args, 2, |
| 1588 | ResultTy, OpLoc)); |
| 1589 | |
| 1590 | if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(), |
| 1591 | FnDecl)) |
| 1592 | return ExprError(); |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1593 | return Owned(TheCall.release()); |
| 1594 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1595 | } else { |
| 1596 | // We matched a built-in operator. Convert the arguments, then |
| 1597 | // break out so that we will build the appropriate built-in |
| 1598 | // operator node. |
| 1599 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1600 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1601 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1602 | |
| 1603 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1604 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1605 | } |
| 1606 | |
Douglas Gregor | 3307475 | 2009-09-30 21:46:01 +0000 | [diff] [blame] | 1607 | case OR_No_Viable_Function: { |
| 1608 | // No viable function; try checking this as a built-in operator, which |
| 1609 | // will fail and provide a diagnostic. Then, print the overload |
| 1610 | // candidates. |
| 1611 | OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
| 1612 | assert(Result.isInvalid() && |
| 1613 | "C++ postfix-unary operator overloading is missing candidates!"); |
| 1614 | if (Result.isInvalid()) |
| 1615 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false); |
| 1616 | |
| 1617 | return move(Result); |
| 1618 | } |
| 1619 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1620 | case OR_Ambiguous: |
| 1621 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1622 | << UnaryOperator::getOpcodeStr(Opc) |
| 1623 | << Arg->getSourceRange(); |
| 1624 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1625 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1626 | |
| 1627 | case OR_Deleted: |
| 1628 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1629 | << Best->Function->isDeleted() |
| 1630 | << UnaryOperator::getOpcodeStr(Opc) |
| 1631 | << Arg->getSourceRange(); |
| 1632 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1633 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1634 | } |
| 1635 | |
| 1636 | // Either we found no viable overloaded operator or we matched a |
| 1637 | // built-in operator. In either case, fall through to trying to |
| 1638 | // build a built-in operation. |
| 1639 | } |
| 1640 | |
Eli Friedman | 6016cb2 | 2009-07-22 23:24:42 +0000 | [diff] [blame] | 1641 | Input.release(); |
| 1642 | Input = Arg; |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 1643 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1644 | } |
| 1645 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1646 | Action::OwningExprResult |
| 1647 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1648 | ExprArg Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1649 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1650 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1651 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1652 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1653 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1654 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1655 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1656 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1657 | Base.release(); |
| 1658 | Idx.release(); |
| 1659 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1660 | Context.DependentTy, RLoc)); |
| 1661 | } |
| 1662 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1663 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1664 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1665 | LHSExp->getType()->isEnumeralType() || |
| 1666 | RHSExp->getType()->isRecordType() || |
| 1667 | RHSExp->getType()->isEnumeralType())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1668 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1669 | // to the candidate set. |
| 1670 | OverloadCandidateSet CandidateSet; |
| 1671 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1672 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1673 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1674 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1675 | // Perform overload resolution. |
| 1676 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1677 | switch (BestViableFunction(CandidateSet, LLoc, Best)) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1678 | case OR_Success: { |
| 1679 | // We found a built-in operator or an overloaded operator. |
| 1680 | FunctionDecl *FnDecl = Best->Function; |
| 1681 | |
| 1682 | if (FnDecl) { |
| 1683 | // We matched an overloaded operator. Build a call to that |
| 1684 | // operator. |
| 1685 | |
| 1686 | // Convert the arguments. |
| 1687 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1688 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1689 | PerformCopyInitialization(RHSExp, |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1690 | FnDecl->getParamDecl(0)->getType(), |
| 1691 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1692 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1693 | } else { |
| 1694 | // Convert the arguments. |
| 1695 | if (PerformCopyInitialization(LHSExp, |
| 1696 | FnDecl->getParamDecl(0)->getType(), |
| 1697 | "passing") || |
| 1698 | PerformCopyInitialization(RHSExp, |
| 1699 | FnDecl->getParamDecl(1)->getType(), |
| 1700 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1701 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1702 | } |
| 1703 | |
| 1704 | // Determine the result type |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1705 | QualType ResultTy = FnDecl->getResultType().getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1706 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1707 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1708 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1709 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1710 | UsualUnaryConversions(FnExpr); |
| 1711 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1712 | Base.release(); |
| 1713 | Idx.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1714 | Args[0] = LHSExp; |
| 1715 | Args[1] = RHSExp; |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1716 | |
| 1717 | ExprOwningPtr<CXXOperatorCallExpr> |
| 1718 | TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1719 | FnExpr, Args, 2, |
| 1720 | ResultTy, RLoc)); |
| 1721 | if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall.get(), |
| 1722 | FnDecl)) |
| 1723 | return ExprError(); |
| 1724 | |
| 1725 | return Owned(TheCall.release()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1726 | } else { |
| 1727 | // We matched a built-in operator. Convert the arguments, then |
| 1728 | // break out so that we will build the appropriate built-in |
| 1729 | // operator node. |
| 1730 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1731 | "passing") || |
| 1732 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1733 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1734 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1735 | |
| 1736 | break; |
| 1737 | } |
| 1738 | } |
| 1739 | |
| 1740 | case OR_No_Viable_Function: |
| 1741 | // No viable function; fall through to handling this as a |
| 1742 | // built-in operator, which will produce an error message for us. |
| 1743 | break; |
| 1744 | |
| 1745 | case OR_Ambiguous: |
| 1746 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1747 | << "[]" |
| 1748 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1749 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1750 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1751 | |
| 1752 | case OR_Deleted: |
| 1753 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1754 | << Best->Function->isDeleted() |
| 1755 | << "[]" |
| 1756 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1757 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1758 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1759 | } |
| 1760 | |
| 1761 | // Either we found no viable overloaded operator or we matched a |
| 1762 | // built-in operator. In either case, fall through to trying to |
| 1763 | // build a built-in operation. |
| 1764 | } |
| 1765 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1766 | // Perform default conversions. |
| 1767 | DefaultFunctionArrayConversion(LHSExp); |
| 1768 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1769 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1770 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1771 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1772 | // 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] | 1773 | // 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] | 1774 | // 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] | 1775 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1776 | Expr *BaseExpr, *IndexExpr; |
| 1777 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1778 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1779 | BaseExpr = LHSExp; |
| 1780 | IndexExpr = RHSExp; |
| 1781 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1782 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1783 | BaseExpr = LHSExp; |
| 1784 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1785 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1786 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1787 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1788 | BaseExpr = RHSExp; |
| 1789 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1790 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1791 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1792 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1793 | BaseExpr = LHSExp; |
| 1794 | IndexExpr = RHSExp; |
| 1795 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1796 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1797 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1798 | // Handle the uncommon case of "123[Ptr]". |
| 1799 | BaseExpr = RHSExp; |
| 1800 | IndexExpr = LHSExp; |
| 1801 | ResultType = PTy->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1802 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1803 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1804 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1805 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1806 | // FIXME: need to deal with const... |
| 1807 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1808 | } else if (LHSTy->isArrayType()) { |
| 1809 | // If we see an array that wasn't promoted by |
| 1810 | // DefaultFunctionArrayConversion, it must be an array that |
| 1811 | // wasn't promoted because of the C90 rule that doesn't |
| 1812 | // allow promoting non-lvalue arrays. Warn, then |
| 1813 | // force the promotion here. |
| 1814 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1815 | LHSExp->getSourceRange(); |
| 1816 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy)); |
| 1817 | LHSTy = LHSExp->getType(); |
| 1818 | |
| 1819 | BaseExpr = LHSExp; |
| 1820 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1821 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1822 | } else if (RHSTy->isArrayType()) { |
| 1823 | // Same as previous, except for 123[f().a] case |
| 1824 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1825 | RHSExp->getSourceRange(); |
| 1826 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy)); |
| 1827 | RHSTy = RHSExp->getType(); |
| 1828 | |
| 1829 | BaseExpr = RHSExp; |
| 1830 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1831 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1832 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1833 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1834 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1835 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1836 | // C99 6.5.2.1p1 |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1837 | if (!(IndexExpr->getType()->isIntegerType() && |
| 1838 | IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1839 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1840 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1841 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1842 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 1843 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 1844 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 1845 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 1846 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1847 | // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1848 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1849 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1850 | // incomplete types are not object types. |
| 1851 | if (ResultType->isFunctionType()) { |
| 1852 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1853 | << ResultType << BaseExpr->getSourceRange(); |
| 1854 | return ExprError(); |
| 1855 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1856 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1857 | if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1858 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1859 | PDiag(diag::err_subscript_incomplete_type) |
| 1860 | << BaseExpr->getSourceRange())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1861 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1862 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1863 | // Diagnose bad cases where we step over interface counts. |
| 1864 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1865 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1866 | << ResultType << BaseExpr->getSourceRange(); |
| 1867 | return ExprError(); |
| 1868 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1869 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1870 | Base.release(); |
| 1871 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1872 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1873 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1874 | } |
| 1875 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1876 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1877 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1878 | const IdentifierInfo *CompName, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1879 | SourceLocation CompLoc) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1880 | const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1881 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1882 | // The vector accessor can't exceed the number of elements. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1883 | const char *compStr = CompName->getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1884 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1885 | // 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] | 1886 | // special names that indicate a subset of exactly half the elements are |
| 1887 | // to be selected. |
| 1888 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1889 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1890 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1891 | // 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] | 1892 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1893 | |
| 1894 | // Check that we've found one of the special components, or that the component |
| 1895 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1896 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1897 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1898 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1899 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1900 | do |
| 1901 | compStr++; |
| 1902 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1903 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1904 | do |
| 1905 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1906 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1907 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1908 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1909 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1910 | // We didn't get to the end of the string. This means the component names |
| 1911 | // 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] | 1912 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1913 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1914 | return QualType(); |
| 1915 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1916 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1917 | // Ensure no component accessor exceeds the width of the vector type it |
| 1918 | // operates on. |
| 1919 | if (!HalvingSwizzle) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1920 | compStr = CompName->getName(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1921 | |
| 1922 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1923 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1924 | |
| 1925 | while (*compStr) { |
| 1926 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1927 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1928 | << baseType << SourceRange(CompLoc); |
| 1929 | return QualType(); |
| 1930 | } |
| 1931 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1932 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1933 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1934 | // If this is a halving swizzle, verify that the base type has an even |
| 1935 | // number of elements. |
| 1936 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1937 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1938 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1939 | return QualType(); |
| 1940 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1941 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1942 | // 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] | 1943 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1944 | // 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] | 1945 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1946 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1947 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1948 | : CompName->getLength(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1949 | if (HexSwizzle) |
| 1950 | CompSize--; |
| 1951 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1952 | if (CompSize == 1) |
| 1953 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1954 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1955 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1956 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1957 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1958 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1959 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1960 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1961 | } |
| 1962 | 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] | 1963 | } |
| 1964 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1965 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1966 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1967 | const Selector &Sel, |
| 1968 | ASTContext &Context) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1969 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1970 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1971 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1972 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1973 | return OMD; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1974 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1975 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1976 | E = PDecl->protocol_end(); I != E; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1977 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1978 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1979 | return D; |
| 1980 | } |
| 1981 | return 0; |
| 1982 | } |
| 1983 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1984 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1985 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1986 | const Selector &Sel, |
| 1987 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1988 | // Check protocols on qualified interfaces. |
| 1989 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1990 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1991 | E = QIdTy->qual_end(); I != E; ++I) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1992 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1993 | GDecl = PD; |
| 1994 | break; |
| 1995 | } |
| 1996 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1997 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1998 | GDecl = OMD; |
| 1999 | break; |
| 2000 | } |
| 2001 | } |
| 2002 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 2003 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2004 | E = QIdTy->qual_end(); I != E; ++I) { |
| 2005 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 2006 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 2007 | if (GDecl) |
| 2008 | return GDecl; |
| 2009 | } |
| 2010 | } |
| 2011 | return GDecl; |
| 2012 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 2013 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2014 | Action::OwningExprResult |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2015 | Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2016 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2017 | DeclarationName MemberName, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2018 | bool HasExplicitTemplateArgs, |
| 2019 | SourceLocation LAngleLoc, |
| 2020 | const TemplateArgument *ExplicitTemplateArgs, |
| 2021 | unsigned NumExplicitTemplateArgs, |
| 2022 | SourceLocation RAngleLoc, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2023 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS, |
| 2024 | NamedDecl *FirstQualifierInScope) { |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2025 | if (SS && SS->isInvalid()) |
| 2026 | return ExprError(); |
| 2027 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2028 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 2029 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 2030 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2031 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2032 | assert(BaseExpr && "no base expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2033 | |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 2034 | // Perform default conversions. |
| 2035 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2036 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2037 | QualType BaseType = BaseExpr->getType(); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2038 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 2039 | // use that. |
| 2040 | if (BaseType->isObjCIdType()) { |
| 2041 | // We have an 'id' type. Rather than fall through, we check if this |
| 2042 | // is a reference to 'isa'. |
| 2043 | if (BaseType != Context.ObjCIdRedefinitionType) { |
| 2044 | BaseType = Context.ObjCIdRedefinitionType; |
| 2045 | ImpCastExprToType(BaseExpr, BaseType); |
| 2046 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 2047 | } |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2048 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2049 | |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2050 | // Handle properties on ObjC 'Class' types. |
| 2051 | if (OpKind == tok::period && BaseType->isObjCClassType()) { |
| 2052 | // Also must look for a getter name which uses property syntax. |
| 2053 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2054 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 2055 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 2056 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 2057 | ObjCMethodDecl *Getter; |
| 2058 | // FIXME: need to also look locally in the implementation. |
| 2059 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 2060 | // Check the use of this method. |
| 2061 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2062 | return ExprError(); |
| 2063 | } |
| 2064 | // If we found a getter then this may be a valid dot-reference, we |
| 2065 | // will look for the matching setter, in case it is needed. |
| 2066 | Selector SetterSel = |
| 2067 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2068 | PP.getSelectorTable(), Member); |
| 2069 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2070 | if (!Setter) { |
| 2071 | // If this reference is in an @implementation, also check for 'private' |
| 2072 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2073 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2074 | } |
| 2075 | // Look through local category implementations associated with the class. |
| 2076 | if (!Setter) |
| 2077 | Setter = IFace->getCategoryClassMethod(SetterSel); |
| 2078 | |
| 2079 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2080 | return ExprError(); |
| 2081 | |
| 2082 | if (Getter || Setter) { |
| 2083 | QualType PType; |
| 2084 | |
| 2085 | if (Getter) |
| 2086 | PType = Getter->getResultType(); |
| 2087 | else |
| 2088 | // Get the expression type from Setter's incoming parameter. |
| 2089 | PType = (*(Setter->param_end() -1))->getType(); |
| 2090 | // FIXME: we must check that the setter has property type. |
| 2091 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, |
| 2092 | PType, |
| 2093 | Setter, MemberLoc, BaseExpr)); |
| 2094 | } |
| 2095 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2096 | << MemberName << BaseType); |
| 2097 | } |
| 2098 | } |
| 2099 | |
| 2100 | if (BaseType->isObjCClassType() && |
| 2101 | BaseType != Context.ObjCClassRedefinitionType) { |
| 2102 | BaseType = Context.ObjCClassRedefinitionType; |
| 2103 | ImpCastExprToType(BaseExpr, BaseType); |
| 2104 | } |
| 2105 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2106 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2107 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2108 | if (OpKind == tok::arrow) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2109 | if (BaseType->isDependentType()) { |
| 2110 | NestedNameSpecifier *Qualifier = 0; |
| 2111 | if (SS) { |
| 2112 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 2113 | if (!FirstQualifierInScope) |
| 2114 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 2115 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2116 | |
| 2117 | return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2118 | OpLoc, Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2119 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2120 | FirstQualifierInScope, |
| 2121 | MemberName, |
| 2122 | MemberLoc, |
| 2123 | HasExplicitTemplateArgs, |
| 2124 | LAngleLoc, |
| 2125 | ExplicitTemplateArgs, |
| 2126 | NumExplicitTemplateArgs, |
| 2127 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2128 | } |
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 | ; |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2133 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2134 | return ExprError(Diag(MemberLoc, |
| 2135 | diag::err_typecheck_member_reference_arrow) |
| 2136 | << BaseType << BaseExpr->getSourceRange()); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2137 | } else if (BaseType->isDependentType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2138 | // Require that the base type isn't a pointer type |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2139 | // (so we'll report an error for) |
| 2140 | // T* t; |
| 2141 | // t.f; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2142 | // |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2143 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2144 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2145 | // 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] | 2146 | const PointerType *PT = BaseType->getAs<PointerType>(); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2147 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2148 | if (!PT || (getLangOptions().ObjC1 && |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2149 | !PT->getPointeeType()->isRecordType())) { |
| 2150 | NestedNameSpecifier *Qualifier = 0; |
| 2151 | if (SS) { |
| 2152 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 2153 | if (!FirstQualifierInScope) |
| 2154 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 2155 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2156 | |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2157 | return Owned(CXXUnresolvedMemberExpr::Create(Context, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2158 | BaseExpr, false, |
| 2159 | OpLoc, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2160 | Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2161 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2162 | FirstQualifierInScope, |
| 2163 | MemberName, |
| 2164 | MemberLoc, |
| 2165 | HasExplicitTemplateArgs, |
| 2166 | LAngleLoc, |
| 2167 | ExplicitTemplateArgs, |
| 2168 | NumExplicitTemplateArgs, |
| 2169 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2170 | } |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2171 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2172 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2173 | // Handle field access to simple records. This also handles access to fields |
| 2174 | // of the ObjC 'id' struct. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2175 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2176 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2177 | if (RequireCompleteType(OpLoc, BaseType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2178 | PDiag(diag::err_typecheck_incomplete_tag) |
| 2179 | << BaseExpr->getSourceRange())) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2180 | return ExprError(); |
| 2181 | |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2182 | DeclContext *DC = RDecl; |
| 2183 | if (SS && SS->isSet()) { |
| 2184 | // If the member name was a qualified-id, look into the |
| 2185 | // nested-name-specifier. |
| 2186 | DC = computeDeclContext(*SS, false); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2187 | |
| 2188 | // FIXME: If DC is not computable, we should build a |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2189 | // CXXUnresolvedMemberExpr. |
| 2190 | assert(DC && "Cannot handle non-computable dependent contexts in lookup"); |
| 2191 | } |
| 2192 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2193 | // The record definition is complete, now make sure the member is valid. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2194 | LookupResult Result; |
| 2195 | LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2196 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2197 | if (Result.empty()) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 2198 | return ExprError(Diag(MemberLoc, diag::err_no_member) |
| 2199 | << MemberName << DC << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2200 | if (Result.isAmbiguous()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2201 | DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc, |
| 2202 | BaseExpr->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2203 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2204 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2205 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2206 | NamedDecl *MemberDecl = Result.getAsSingleDecl(Context); |
| 2207 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2208 | if (SS && SS->isSet()) { |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2209 | TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2210 | QualType BaseTypeCanon |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2211 | = Context.getCanonicalType(BaseType).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2212 | QualType MemberTypeCanon |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2213 | = Context.getCanonicalType(Context.getTypeDeclType(TyD)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2214 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2215 | if (BaseTypeCanon != MemberTypeCanon && |
| 2216 | !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon)) |
| 2217 | return ExprError(Diag(SS->getBeginLoc(), |
| 2218 | diag::err_not_direct_base_or_virtual) |
| 2219 | << MemberTypeCanon << BaseTypeCanon); |
| 2220 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2221 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2222 | // If the decl being referenced had an error, return an error for this |
| 2223 | // sub-expr without emitting another error, in order to avoid cascading |
| 2224 | // error cases. |
| 2225 | if (MemberDecl->isInvalidDecl()) |
| 2226 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2227 | |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2228 | bool ShouldCheckUse = true; |
| 2229 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) { |
| 2230 | // Don't diagnose the use of a virtual member function unless it's |
| 2231 | // explicitly qualified. |
| 2232 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 2233 | ShouldCheckUse = false; |
| 2234 | } |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 2235 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2236 | // Check the use of this field |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2237 | if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2238 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2239 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2240 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2241 | // We may have found a field within an anonymous union or struct |
| 2242 | // (C++ [class.union]). |
| 2243 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2244 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2245 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2246 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2247 | // 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] | 2248 | QualType MemberType = FD->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2249 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2250 | MemberType = Ref->getPointeeType(); |
| 2251 | else { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2252 | Qualifiers BaseQuals = BaseType.getQualifiers(); |
| 2253 | BaseQuals.removeObjCGCAttr(); |
| 2254 | if (FD->isMutable()) BaseQuals.removeConst(); |
| 2255 | |
| 2256 | Qualifiers MemberQuals |
| 2257 | = Context.getCanonicalType(MemberType).getQualifiers(); |
| 2258 | |
| 2259 | Qualifiers Combined = BaseQuals + MemberQuals; |
| 2260 | if (Combined != MemberQuals) |
| 2261 | MemberType = Context.getQualifiedType(MemberType, Combined); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2262 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2263 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2264 | MarkDeclarationReferenced(MemberLoc, FD); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 2265 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2266 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2267 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2268 | FD, MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2269 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2270 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2271 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2272 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2273 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2274 | Var, MemberLoc, |
| 2275 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2276 | } |
| 2277 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2278 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2279 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2280 | MemberFn, MemberLoc, |
| 2281 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2282 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2283 | if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2284 | = dyn_cast<FunctionTemplateDecl>(MemberDecl)) { |
| 2285 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2286 | |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2287 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2288 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2289 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2290 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2291 | FunTmpl, MemberLoc, true, |
| 2292 | LAngleLoc, ExplicitTemplateArgs, |
| 2293 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2294 | Context.OverloadTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2295 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2296 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2297 | FunTmpl, MemberLoc, |
| 2298 | Context.OverloadTy)); |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2299 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2300 | if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2301 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) { |
| 2302 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2303 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2304 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2305 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2306 | Ovl, MemberLoc, true, |
| 2307 | LAngleLoc, ExplicitTemplateArgs, |
| 2308 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2309 | Context.OverloadTy)); |
| 2310 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2311 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2312 | Ovl, MemberLoc, Context.OverloadTy)); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2313 | } |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2314 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2315 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2316 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2317 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2318 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2319 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2320 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2321 | << MemberName << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2322 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2323 | // We found a declaration kind that we didn't expect. This is a |
| 2324 | // generic error message that tells the user that she can't refer |
| 2325 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2326 | return ExprError(Diag(MemberLoc, |
| 2327 | diag::err_typecheck_member_reference_unknown) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2328 | << MemberName << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2329 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2330 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2331 | // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring |
| 2332 | // into a record type was handled above, any destructor we see here is a |
| 2333 | // pseudo-destructor. |
| 2334 | if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) { |
| 2335 | // C++ [expr.pseudo]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2336 | // The left hand side of the dot operator shall be of scalar type. The |
| 2337 | // left hand side of the arrow operator shall be of pointer to scalar |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2338 | // type. |
| 2339 | if (!BaseType->isScalarType()) |
| 2340 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 2341 | << BaseType << BaseExpr->getSourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2342 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2343 | // [...] The type designated by the pseudo-destructor-name shall be the |
| 2344 | // same as the object type. |
| 2345 | if (!MemberName.getCXXNameType()->isDependentType() && |
| 2346 | !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType())) |
| 2347 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch) |
| 2348 | << BaseType << MemberName.getCXXNameType() |
| 2349 | << BaseExpr->getSourceRange() << SourceRange(MemberLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2350 | |
| 2351 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2352 | // the form |
| 2353 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2354 | // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name |
| 2355 | // |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2356 | // shall designate the same scalar type. |
| 2357 | // |
| 2358 | // FIXME: DPG can't see any way to trigger this particular clause, so it |
| 2359 | // isn't checked here. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2360 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2361 | // FIXME: We've lost the precise spelling of the type by going through |
| 2362 | // DeclarationName. Can we do better? |
| 2363 | return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2364 | OpKind == tok::arrow, |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2365 | OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2366 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2367 | SS? SS->getRange() : SourceRange(), |
| 2368 | MemberName.getCXXNameType(), |
| 2369 | MemberLoc)); |
| 2370 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2371 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2372 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2373 | // (*Obj).ivar. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2374 | if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || |
| 2375 | (OpKind == tok::period && BaseType->isObjCInterfaceType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2376 | const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2377 | const ObjCInterfaceType *IFaceT = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2378 | OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>(); |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2379 | if (IFaceT) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2380 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2381 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2382 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2383 | ObjCInterfaceDecl *ClassDeclared; |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2384 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2385 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2386 | if (IV) { |
| 2387 | // If the decl being referenced had an error, return an error for this |
| 2388 | // sub-expr without emitting another error, in order to avoid cascading |
| 2389 | // error cases. |
| 2390 | if (IV->isInvalidDecl()) |
| 2391 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2392 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2393 | // Check whether we can reference this field. |
| 2394 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2395 | return ExprError(); |
| 2396 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2397 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2398 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2399 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2400 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2401 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2402 | // Case of a c-function declared inside an objc implementation. |
| 2403 | // FIXME: For a c-style function nested inside an objc implementation |
| 2404 | // class, there is no implementation context available, so we pass |
| 2405 | // down the context as argument to this routine. Ideally, this context |
| 2406 | // need be passed down in the AST node and somehow calculated from the |
| 2407 | // AST for a function decl. |
| 2408 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2409 | if (ObjCImplementationDecl *IMPD = |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2410 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2411 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2412 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2413 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2414 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2415 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2416 | |
| 2417 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2418 | if (ClassDeclared != IDecl || |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2419 | ClassOfMethodDecl != ClassDeclared) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2420 | Diag(MemberLoc, diag::error_private_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2421 | << IV->getDeclName(); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2422 | } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2423 | // @protected |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2424 | Diag(MemberLoc, diag::error_protected_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2425 | << IV->getDeclName(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2426 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2427 | |
| 2428 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2429 | MemberLoc, BaseExpr, |
| 2430 | OpKind == tok::arrow)); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2431 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2432 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2433 | << IDecl->getDeclName() << MemberName |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2434 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2435 | } |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2436 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2437 | // Handle properties on 'id' and qualified "id". |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2438 | if (OpKind == tok::period && (BaseType->isObjCIdType() || |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2439 | BaseType->isObjCQualifiedIdType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2440 | const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2441 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2442 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2443 | // Check protocols on qualified interfaces. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2444 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2445 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2446 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2447 | // Check the use of this declaration |
| 2448 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2449 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2450 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2451 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2452 | MemberLoc, BaseExpr)); |
| 2453 | } |
| 2454 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2455 | // Check the use of this method. |
| 2456 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2457 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2458 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2459 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2460 | OMD->getResultType(), |
| 2461 | OMD, OpLoc, MemberLoc, |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2462 | NULL, 0)); |
| 2463 | } |
| 2464 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2465 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2466 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2467 | << MemberName << BaseType); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2468 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2469 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2470 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2471 | const ObjCObjectPointerType *OPT; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2472 | if (OpKind == tok::period && |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2473 | (OPT = BaseType->getAsObjCInterfacePointerType())) { |
| 2474 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2475 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2476 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2477 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2478 | // Search for a declared property first. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2479 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2480 | // Check whether we can reference this property. |
| 2481 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2482 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2483 | QualType ResTy = PD->getType(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2484 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2485 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2486 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2487 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2488 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2489 | MemberLoc, BaseExpr)); |
| 2490 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2491 | // Check protocols on qualified interfaces. |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2492 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2493 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2494 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2495 | // Check whether we can reference this property. |
| 2496 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2497 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2498 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2499 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2500 | MemberLoc, BaseExpr)); |
| 2501 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2502 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2503 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2504 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2505 | // Check whether we can reference this property. |
| 2506 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2507 | return ExprError(); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2508 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2509 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2510 | MemberLoc, BaseExpr)); |
| 2511 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2512 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2513 | // selector is implemented. |
| 2514 | |
| 2515 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2516 | // shared with the code in ActOnInstanceMessage. |
| 2517 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2518 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2519 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2520 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2521 | // If this reference is in an @implementation, check for 'private' methods. |
| 2522 | if (!Getter) |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2523 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2524 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2525 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2526 | if (!Getter) |
| 2527 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2528 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2529 | // Check if we can reference this property. |
| 2530 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2531 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2532 | } |
| 2533 | // If we found a getter then this may be a valid dot-reference, we |
| 2534 | // will look for the matching setter, in case it is needed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2535 | Selector SetterSel = |
| 2536 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2537 | PP.getSelectorTable(), Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2538 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2539 | if (!Setter) { |
| 2540 | // If this reference is in an @implementation, also check for 'private' |
| 2541 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2542 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2543 | } |
| 2544 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2545 | if (!Setter) |
| 2546 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2547 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2548 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2549 | return ExprError(); |
| 2550 | |
| 2551 | if (Getter || Setter) { |
| 2552 | QualType PType; |
| 2553 | |
| 2554 | if (Getter) |
| 2555 | PType = Getter->getResultType(); |
Fariborz Jahanian | 154440e | 2009-08-18 20:50:23 +0000 | [diff] [blame] | 2556 | else |
| 2557 | // Get the expression type from Setter's incoming parameter. |
| 2558 | PType = (*(Setter->param_end() -1))->getType(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2559 | // FIXME: we must check that the setter has property type. |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 2560 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2561 | Setter, MemberLoc, BaseExpr)); |
| 2562 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2563 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2564 | << MemberName << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2565 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2566 | |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2567 | // Handle the following exceptional case (*Obj).isa. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2568 | if (OpKind == tok::period && |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2569 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2570 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2571 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
| 2572 | Context.getObjCIdType())); |
| 2573 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2574 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2575 | if (BaseType->isExtVectorType()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2576 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2577 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2578 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2579 | return ExprError(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2580 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2581 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2582 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2583 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2584 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2585 | << BaseType << BaseExpr->getSourceRange(); |
| 2586 | |
| 2587 | // If the user is trying to apply -> or . to a function or function |
| 2588 | // pointer, it's probably because they forgot parentheses to call |
| 2589 | // the function. Suggest the addition of those parentheses. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2590 | if (BaseType == Context.OverloadTy || |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2591 | BaseType->isFunctionType() || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2592 | (BaseType->isPointerType() && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2593 | BaseType->getAs<PointerType>()->isFunctionType())) { |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2594 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2595 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2596 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2597 | } |
| 2598 | |
| 2599 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2600 | } |
| 2601 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2602 | Action::OwningExprResult |
| 2603 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2604 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
| 2605 | IdentifierInfo &Member, |
| 2606 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2607 | return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2608 | DeclarationName(&Member), ObjCImpDecl, SS); |
| 2609 | } |
| 2610 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2611 | Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 2612 | FunctionDecl *FD, |
| 2613 | ParmVarDecl *Param) { |
| 2614 | if (Param->hasUnparsedDefaultArg()) { |
| 2615 | Diag (CallLoc, |
| 2616 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2617 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2618 | Diag(UnparsedDefaultArgLocs[Param], |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2619 | diag::note_default_argument_declared_here); |
| 2620 | } else { |
| 2621 | if (Param->hasUninstantiatedDefaultArg()) { |
| 2622 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
| 2623 | |
| 2624 | // Instantiate the expression. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2625 | MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2626 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2627 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 2628 | ArgList.getInnermost().getFlatArgumentList(), |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2629 | ArgList.getInnermost().flat_size()); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2630 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2631 | OwningExprResult Result = SubstExpr(UninstExpr, ArgList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2632 | if (Result.isInvalid()) |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2633 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2634 | |
| 2635 | if (SetParamDefaultArgument(Param, move(Result), |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2636 | /*FIXME:EqualLoc*/ |
| 2637 | UninstExpr->getSourceRange().getBegin())) |
| 2638 | return ExprError(); |
| 2639 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2640 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2641 | Expr *DefaultExpr = Param->getDefaultArg(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2642 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2643 | // If the default expression creates temporaries, we need to |
| 2644 | // push them to the current stack of expression temporaries so they'll |
| 2645 | // be properly destroyed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2646 | if (CXXExprWithTemporaries *E |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2647 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2648 | assert(!E->shouldDestroyTemporaries() && |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2649 | "Can't destroy temporaries in a default argument expr!"); |
| 2650 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2651 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2652 | } |
| 2653 | } |
| 2654 | |
| 2655 | // We already type-checked the argument, so we know it works. |
| 2656 | return Owned(CXXDefaultArgExpr::Create(Context, Param)); |
| 2657 | } |
| 2658 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2659 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2660 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2661 | /// function prototype Proto. Call is the call expression itself, and |
| 2662 | /// Fn is the function expression. For a C++ member function, this |
| 2663 | /// routine does not attempt to convert the object argument. Returns |
| 2664 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2665 | bool |
| 2666 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2667 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2668 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2669 | Expr **Args, unsigned NumArgs, |
| 2670 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2671 | // 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] | 2672 | // assignment, to the types of the corresponding parameter, ... |
| 2673 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2674 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2675 | bool Invalid = false; |
| 2676 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2677 | // If too few arguments are available (and we don't have default |
| 2678 | // arguments for the remaining parameters), don't make the call. |
| 2679 | if (NumArgs < NumArgsInProto) { |
| 2680 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2681 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2682 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2683 | // Use default arguments for missing arguments |
| 2684 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2685 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2686 | } |
| 2687 | |
| 2688 | // If too many are passed and not variadic, error on the extras and drop |
| 2689 | // them. |
| 2690 | if (NumArgs > NumArgsInProto) { |
| 2691 | if (!Proto->isVariadic()) { |
| 2692 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2693 | diag::err_typecheck_call_too_many_args) |
| 2694 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2695 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2696 | Args[NumArgs-1]->getLocEnd()); |
| 2697 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2698 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2699 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2700 | } |
| 2701 | NumArgsToCheck = NumArgsInProto; |
| 2702 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2703 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2704 | // Continue to check argument types (even if we have too few/many args). |
| 2705 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2706 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2707 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2708 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2709 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2710 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2711 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2712 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2713 | ProtoArgType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2714 | PDiag(diag::err_call_incomplete_argument) |
| 2715 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2716 | return true; |
| 2717 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2718 | // Pass the argument. |
| 2719 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2720 | return true; |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2721 | } else { |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 2722 | ParmVarDecl *Param = FDecl->getParamDecl(i); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2723 | |
| 2724 | OwningExprResult ArgExpr = |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2725 | BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(), |
| 2726 | FDecl, Param); |
| 2727 | if (ArgExpr.isInvalid()) |
| 2728 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2729 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2730 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2731 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2732 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2733 | Call->setArg(i, Arg); |
| 2734 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2735 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2736 | // If this is a variadic call, handle args passed through "...". |
| 2737 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2738 | VariadicCallType CallType = VariadicFunction; |
| 2739 | if (Fn->getType()->isBlockPointerType()) |
| 2740 | CallType = VariadicBlock; // Block |
| 2741 | else if (isa<MemberExpr>(Fn)) |
| 2742 | CallType = VariadicMethod; |
| 2743 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2744 | // Promote the arguments (C99 6.5.2.2p7). |
| 2745 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2746 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2747 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2748 | Call->setArg(i, Arg); |
| 2749 | } |
| 2750 | } |
| 2751 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2752 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2753 | } |
| 2754 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2755 | /// \brief "Deconstruct" the function argument of a call expression to find |
| 2756 | /// the underlying declaration (if any), the name of the called function, |
| 2757 | /// whether argument-dependent lookup is available, whether it has explicit |
| 2758 | /// template arguments, etc. |
| 2759 | void Sema::DeconstructCallFunction(Expr *FnExpr, |
| 2760 | NamedDecl *&Function, |
| 2761 | DeclarationName &Name, |
| 2762 | NestedNameSpecifier *&Qualifier, |
| 2763 | SourceRange &QualifierRange, |
| 2764 | bool &ArgumentDependentLookup, |
| 2765 | bool &HasExplicitTemplateArguments, |
| 2766 | const TemplateArgument *&ExplicitTemplateArgs, |
| 2767 | unsigned &NumExplicitTemplateArgs) { |
| 2768 | // Set defaults for all of the output parameters. |
| 2769 | Function = 0; |
| 2770 | Name = DeclarationName(); |
| 2771 | Qualifier = 0; |
| 2772 | QualifierRange = SourceRange(); |
| 2773 | ArgumentDependentLookup = getLangOptions().CPlusPlus; |
| 2774 | HasExplicitTemplateArguments = false; |
| 2775 | |
| 2776 | // If we're directly calling a function, get the appropriate declaration. |
| 2777 | // Also, in C++, keep track of whether we should perform argument-dependent |
| 2778 | // lookup and whether there were any explicitly-specified template arguments. |
| 2779 | while (true) { |
| 2780 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2781 | FnExpr = IcExpr->getSubExpr(); |
| 2782 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
| 2783 | // Parentheses around a function disable ADL |
| 2784 | // (C++0x [basic.lookup.argdep]p1). |
| 2785 | ArgumentDependentLookup = false; |
| 2786 | FnExpr = PExpr->getSubExpr(); |
| 2787 | } else if (isa<UnaryOperator>(FnExpr) && |
| 2788 | cast<UnaryOperator>(FnExpr)->getOpcode() |
| 2789 | == UnaryOperator::AddrOf) { |
| 2790 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
| 2791 | } else if (QualifiedDeclRefExpr *QDRExpr |
| 2792 | = dyn_cast<QualifiedDeclRefExpr>(FnExpr)) { |
| 2793 | // Qualified names disable ADL (C++0x [basic.lookup.argdep]p1). |
| 2794 | ArgumentDependentLookup = false; |
| 2795 | Qualifier = QDRExpr->getQualifier(); |
| 2796 | QualifierRange = QDRExpr->getQualifierRange(); |
| 2797 | Function = dyn_cast<NamedDecl>(QDRExpr->getDecl()); |
| 2798 | break; |
| 2799 | } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { |
| 2800 | Function = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
| 2801 | break; |
| 2802 | } else if (UnresolvedFunctionNameExpr *DepName |
| 2803 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2804 | Name = DepName->getName(); |
| 2805 | break; |
| 2806 | } else if (TemplateIdRefExpr *TemplateIdRef |
| 2807 | = dyn_cast<TemplateIdRefExpr>(FnExpr)) { |
| 2808 | Function = TemplateIdRef->getTemplateName().getAsTemplateDecl(); |
| 2809 | if (!Function) |
| 2810 | Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); |
| 2811 | HasExplicitTemplateArguments = true; |
| 2812 | ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs(); |
| 2813 | NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs(); |
| 2814 | |
| 2815 | // C++ [temp.arg.explicit]p6: |
| 2816 | // [Note: For simple function names, argument dependent lookup (3.4.2) |
| 2817 | // applies even when the function name is not visible within the |
| 2818 | // scope of the call. This is because the call still has the syntactic |
| 2819 | // form of a function call (3.4.1). But when a function template with |
| 2820 | // explicit template arguments is used, the call does not have the |
| 2821 | // correct syntactic form unless there is a function template with |
| 2822 | // that name visible at the point of the call. If no such name is |
| 2823 | // visible, the call is not syntactically well-formed and |
| 2824 | // argument-dependent lookup does not apply. If some such name is |
| 2825 | // visible, argument dependent lookup applies and additional function |
| 2826 | // templates may be found in other namespaces. |
| 2827 | // |
| 2828 | // The summary of this paragraph is that, if we get to this point and the |
| 2829 | // template-id was not a qualified name, then argument-dependent lookup |
| 2830 | // is still possible. |
| 2831 | if ((Qualifier = TemplateIdRef->getQualifier())) { |
| 2832 | ArgumentDependentLookup = false; |
| 2833 | QualifierRange = TemplateIdRef->getQualifierRange(); |
| 2834 | } |
| 2835 | break; |
| 2836 | } else { |
| 2837 | // Any kind of name that does not refer to a declaration (or |
| 2838 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2839 | ArgumentDependentLookup = false; |
| 2840 | break; |
| 2841 | } |
| 2842 | } |
| 2843 | } |
| 2844 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2845 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2846 | /// This provides the location of the left/right parens and a list of comma |
| 2847 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2848 | Action::OwningExprResult |
| 2849 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2850 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2851 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2852 | unsigned NumArgs = args.size(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2853 | |
| 2854 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 2855 | fn = MaybeConvertParenListExprToParenExpr(S, move(fn)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2856 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2857 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2858 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2859 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2860 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2861 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2862 | DeclarationName UnqualifiedName; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2863 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2864 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2865 | // If this is a pseudo-destructor expression, build the call immediately. |
| 2866 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 2867 | if (NumArgs > 0) { |
| 2868 | // Pseudo-destructor calls should not have any arguments. |
| 2869 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
| 2870 | << CodeModificationHint::CreateRemoval( |
| 2871 | SourceRange(Args[0]->getLocStart(), |
| 2872 | Args[NumArgs-1]->getLocEnd())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2873 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2874 | for (unsigned I = 0; I != NumArgs; ++I) |
| 2875 | Args[I]->Destroy(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2876 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2877 | NumArgs = 0; |
| 2878 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2879 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2880 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
| 2881 | RParenLoc)); |
| 2882 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2883 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2884 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2885 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2886 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2887 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2888 | bool Dependent = false; |
| 2889 | if (Fn->isTypeDependent()) |
| 2890 | Dependent = true; |
| 2891 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2892 | Dependent = true; |
| 2893 | |
| 2894 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2895 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2896 | Context.DependentTy, RParenLoc)); |
| 2897 | |
| 2898 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2899 | if (Fn->getType()->isRecordType()) |
| 2900 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2901 | CommaLocs, RParenLoc)); |
| 2902 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2903 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2904 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2905 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2906 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2907 | isa<CXXMethodDecl>(MemDecl) || |
| 2908 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2909 | isa<CXXMethodDecl>( |
| 2910 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2911 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2912 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2913 | } |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2914 | |
| 2915 | // Determine whether this is a call to a pointer-to-member function. |
| 2916 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) { |
| 2917 | if (BO->getOpcode() == BinaryOperator::PtrMemD || |
| 2918 | BO->getOpcode() == BinaryOperator::PtrMemI) { |
| 2919 | const FunctionProtoType *FPT = cast<FunctionProtoType>(BO->getType()); |
| 2920 | QualType ReturnTy = FPT->getResultType(); |
| 2921 | |
| 2922 | CXXMemberCallExpr *CE = |
| 2923 | new (Context) CXXMemberCallExpr(Context, BO, Args, NumArgs, |
| 2924 | ReturnTy.getNonReferenceType(), |
| 2925 | RParenLoc); |
| 2926 | |
| 2927 | ExprOwningPtr<CXXMemberCallExpr> TheCall(this, CE); |
| 2928 | |
| 2929 | if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs, |
| 2930 | RParenLoc)) |
| 2931 | return ExprError(); |
| 2932 | |
| 2933 | return Owned(MaybeBindToTemporary(TheCall.release()).release()); |
| 2934 | } |
| 2935 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2936 | } |
| 2937 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2938 | // If we're directly calling a function, get the appropriate declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2939 | // Also, in C++, keep track of whether we should perform argument-dependent |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2940 | // lookup and whether there were any explicitly-specified template arguments. |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2941 | bool ADL = true; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2942 | bool HasExplicitTemplateArgs = 0; |
| 2943 | const TemplateArgument *ExplicitTemplateArgs = 0; |
| 2944 | unsigned NumExplicitTemplateArgs = 0; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2945 | NestedNameSpecifier *Qualifier = 0; |
| 2946 | SourceRange QualifierRange; |
| 2947 | DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange, |
| 2948 | ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs, |
| 2949 | NumExplicitTemplateArgs); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2950 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2951 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2952 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2953 | if (NDecl) { |
| 2954 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2955 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl))) |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2956 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2957 | else |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2958 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2959 | Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2960 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2961 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2962 | if (Ovl || FunctionTemplate || |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2963 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2964 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 2965 | if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2966 | ADL = false; |
| 2967 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2968 | // We don't perform ADL in C. |
| 2969 | if (!getLangOptions().CPlusPlus) |
| 2970 | ADL = false; |
| 2971 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2972 | if (Ovl || FunctionTemplate || ADL) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2973 | FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2974 | HasExplicitTemplateArgs, |
| 2975 | ExplicitTemplateArgs, |
| 2976 | NumExplicitTemplateArgs, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2977 | LParenLoc, Args, NumArgs, CommaLocs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2978 | RParenLoc, ADL); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2979 | if (!FDecl) |
| 2980 | return ExprError(); |
| 2981 | |
| 2982 | // Update Fn to refer to the actual function selected. |
| 2983 | Expr *NewFn = 0; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2984 | if (Qualifier) |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2985 | NewFn = new (Context) QualifiedDeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2986 | Fn->getLocStart(), |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 2987 | false, false, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2988 | QualifierRange, |
| 2989 | Qualifier); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2990 | else |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2991 | NewFn = new (Context) DeclRefExpr(FDecl, FDecl->getType(), |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2992 | Fn->getLocStart()); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2993 | Fn->Destroy(Context); |
| 2994 | Fn = NewFn; |
| 2995 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2996 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2997 | |
| 2998 | // Promote the function operand. |
| 2999 | UsualUnaryConversions(Fn); |
| 3000 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3001 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 3002 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 3003 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 3004 | Args, NumArgs, |
| 3005 | Context.BoolTy, |
| 3006 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3007 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3008 | const FunctionType *FuncT; |
| 3009 | if (!Fn->getType()->isBlockPointerType()) { |
| 3010 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 3011 | // have type pointer to function". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3012 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3013 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3014 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3015 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3016 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3017 | } else { // This is a block call. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3018 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3019 | getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 3020 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3021 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3022 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 3023 | << Fn->getType() << Fn->getSourceRange()); |
| 3024 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3025 | // Check for a valid return type |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 3026 | if (CheckCallReturnType(FuncT->getResultType(), |
| 3027 | Fn->getSourceRange().getBegin(), TheCall.get(), |
| 3028 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3029 | return ExprError(); |
| 3030 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3031 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 3032 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3033 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3034 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3035 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3036 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3037 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3038 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 3039 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3040 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3041 | if (FDecl) { |
| 3042 | // Check if we have too few/too many template arguments, based |
| 3043 | // on our knowledge of the function definition. |
| 3044 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 3045 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3046 | const FunctionProtoType *Proto = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3047 | Def->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 3048 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 3049 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 3050 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 3051 | } |
| 3052 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 3053 | } |
| 3054 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3055 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3056 | for (unsigned i = 0; i != NumArgs; i++) { |
| 3057 | Expr *Arg = Args[i]; |
| 3058 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3059 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 3060 | Arg->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3061 | PDiag(diag::err_call_incomplete_argument) |
| 3062 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 3063 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3064 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3065 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3066 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3067 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3068 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 3069 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3070 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 3071 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3072 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 3073 | // Check for sentinels |
| 3074 | if (NDecl) |
| 3075 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3076 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3077 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3078 | if (FDecl) { |
| 3079 | if (CheckFunctionCall(FDecl, TheCall.get())) |
| 3080 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3081 | |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 3082 | if (unsigned BuiltinID = FDecl->getBuiltinID()) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3083 | return CheckBuiltinFunctionCall(BuiltinID, TheCall.take()); |
| 3084 | } else if (NDecl) { |
| 3085 | if (CheckBlockCall(NDecl, TheCall.get())) |
| 3086 | return ExprError(); |
| 3087 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3088 | |
Anders Carlsson | ec74c59 | 2009-08-16 03:06:32 +0000 | [diff] [blame] | 3089 | return MaybeBindToTemporary(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3090 | } |
| 3091 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3092 | Action::OwningExprResult |
| 3093 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 3094 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3095 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3096 | //FIXME: Preserve type source info. |
| 3097 | QualType literalType = GetTypeFromParser(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 3098 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3099 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3100 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 3101 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3102 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 3103 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3104 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 3105 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 3106 | } else if (!literalType->isDependentType() && |
| 3107 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3108 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3109 | << SourceRange(LParenLoc, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3110 | literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3111 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3112 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3113 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 3114 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3115 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3116 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 3117 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3118 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3119 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3120 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3121 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3122 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3123 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3124 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3125 | } |
| 3126 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3127 | Action::OwningExprResult |
| 3128 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3129 | SourceLocation RBraceLoc) { |
| 3130 | unsigned NumInit = initlist.size(); |
| 3131 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3132 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3133 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3134 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3135 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3136 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 3137 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3138 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3139 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3140 | } |
| 3141 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3142 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3143 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3144 | CastExpr::CastKind& Kind, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3145 | CXXMethodDecl *& ConversionDecl, |
| 3146 | bool FunctionalStyle) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3147 | if (getLangOptions().CPlusPlus) |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3148 | return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle, |
| 3149 | ConversionDecl); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3150 | |
Eli Friedman | 199ea95 | 2009-08-15 19:02:19 +0000 | [diff] [blame] | 3151 | DefaultFunctionArrayConversion(castExpr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3152 | |
| 3153 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 3154 | // type needs to be scalar. |
| 3155 | if (castType->isVoidType()) { |
| 3156 | // Cast to void allows any expr type. |
| 3157 | } else if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3158 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 3159 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 3160 | (castType->isStructureType() || castType->isUnionType())) { |
| 3161 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3162 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3163 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 3164 | << castType << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3165 | Kind = CastExpr::CK_NoOp; |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3166 | } else if (castType->isUnionType()) { |
| 3167 | // GCC cast to union extension |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3168 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3169 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3170 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3171 | Field != FieldEnd; ++Field) { |
| 3172 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 3173 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 3174 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 3175 | << castExpr->getSourceRange(); |
| 3176 | break; |
| 3177 | } |
| 3178 | } |
| 3179 | if (Field == FieldEnd) |
| 3180 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 3181 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3182 | Kind = CastExpr::CK_ToUnion; |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3183 | } else { |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3184 | // Reject any other conversions to non-scalar types. |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3185 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3186 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3187 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3188 | } else if (!castExpr->getType()->isScalarType() && |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3189 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3190 | return Diag(castExpr->getLocStart(), |
| 3191 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3192 | << castExpr->getType() << castExpr->getSourceRange(); |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3193 | } else if (castType->isExtVectorType()) { |
| 3194 | if (CheckExtVectorCast(TyR, castType, castExpr->getType())) |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3195 | return true; |
| 3196 | } else if (castType->isVectorType()) { |
| 3197 | if (CheckVectorCast(TyR, castType, castExpr->getType())) |
| 3198 | return true; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3199 | } else if (castExpr->getType()->isVectorType()) { |
| 3200 | if (CheckVectorCast(TyR, castExpr->getType(), castType)) |
| 3201 | return true; |
Steve Naroff | 6b9dfd4 | 2009-03-04 15:11:40 +0000 | [diff] [blame] | 3202 | } else if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) { |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3203 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3204 | } else if (!castType->isArithmeticType()) { |
| 3205 | QualType castExprType = castExpr->getType(); |
| 3206 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3207 | return Diag(castExpr->getLocStart(), |
| 3208 | diag::err_cast_pointer_from_non_pointer_int) |
| 3209 | << castExprType << castExpr->getSourceRange(); |
| 3210 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3211 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3212 | return Diag(castExpr->getLocStart(), |
| 3213 | diag::err_cast_pointer_to_non_pointer_int) |
| 3214 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3215 | } |
Fariborz Jahanian | b5ff6bf | 2009-05-22 21:42:52 +0000 | [diff] [blame] | 3216 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3217 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3218 | return false; |
| 3219 | } |
| 3220 | |
Chris Lattner | fe23e21 | 2007-12-20 00:44:32 +0000 | [diff] [blame] | 3221 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3222 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3223 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3224 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3225 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3226 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3227 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3228 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3229 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3230 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3231 | } else |
| 3232 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3233 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3234 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3235 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3236 | return false; |
| 3237 | } |
| 3238 | |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3239 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, QualType SrcTy) { |
| 3240 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3241 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3242 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3243 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3244 | if (SrcTy->isVectorType()) { |
| 3245 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3246 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3247 | << DestTy << SrcTy << R; |
| 3248 | return false; |
| 3249 | } |
| 3250 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3251 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3252 | // conversion will take place first from scalar to elt type, and then |
| 3253 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3254 | if (SrcTy->isPointerType()) |
| 3255 | return Diag(R.getBegin(), |
| 3256 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3257 | << DestTy << SrcTy << R; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3258 | return false; |
| 3259 | } |
| 3260 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3261 | Action::OwningExprResult |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3262 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3263 | SourceLocation RParenLoc, ExprArg Op) { |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3264 | CastExpr::CastKind Kind = CastExpr::CK_Unknown; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3265 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3266 | assert((Ty != 0) && (Op.get() != 0) && |
| 3267 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3268 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3269 | Expr *castExpr = (Expr *)Op.get(); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3270 | //FIXME: Preserve type source info. |
| 3271 | QualType castType = GetTypeFromParser(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3272 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3273 | // If the Expr being casted is a ParenListExpr, handle it specially. |
| 3274 | if (isa<ParenListExpr>(castExpr)) |
| 3275 | return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3276 | CXXMethodDecl *Method = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3277 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3278 | Kind, Method)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3279 | return ExprError(); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3280 | |
| 3281 | if (Method) { |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3282 | OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3283 | Method, move(Op)); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3284 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3285 | if (CastArg.isInvalid()) |
| 3286 | return ExprError(); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3287 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3288 | castExpr = CastArg.takeAs<Expr>(); |
| 3289 | } else { |
| 3290 | Op.release(); |
Fariborz Jahanian | 3197659 | 2009-08-29 19:15:16 +0000 | [diff] [blame] | 3291 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3292 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3293 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3294 | Kind, castExpr, castType, |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3295 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3296 | } |
| 3297 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3298 | /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence |
| 3299 | /// of comma binary operators. |
| 3300 | Action::OwningExprResult |
| 3301 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) { |
| 3302 | Expr *expr = EA.takeAs<Expr>(); |
| 3303 | ParenListExpr *E = dyn_cast<ParenListExpr>(expr); |
| 3304 | if (!E) |
| 3305 | return Owned(expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3306 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3307 | OwningExprResult Result(*this, E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3308 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3309 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
| 3310 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result), |
| 3311 | Owned(E->getExpr(i))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3312 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3313 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result)); |
| 3314 | } |
| 3315 | |
| 3316 | Action::OwningExprResult |
| 3317 | Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 3318 | SourceLocation RParenLoc, ExprArg Op, |
| 3319 | QualType Ty) { |
| 3320 | ParenListExpr *PE = (ParenListExpr *)Op.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3321 | |
| 3322 | // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')' |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3323 | // then handle it as such. |
| 3324 | if (getLangOptions().AltiVec && Ty->isVectorType()) { |
| 3325 | if (PE->getNumExprs() == 0) { |
| 3326 | Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 3327 | return ExprError(); |
| 3328 | } |
| 3329 | |
| 3330 | llvm::SmallVector<Expr *, 8> initExprs; |
| 3331 | for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i) |
| 3332 | initExprs.push_back(PE->getExpr(i)); |
| 3333 | |
| 3334 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 3335 | // braces instead of the original commas. |
| 3336 | Op.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3337 | InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0], |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3338 | initExprs.size(), RParenLoc); |
| 3339 | E->setType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3340 | return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc, |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3341 | Owned(E)); |
| 3342 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3343 | // This is not an AltiVec-style cast, so turn the ParenListExpr into a |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3344 | // sequence of BinOp comma operators. |
| 3345 | Op = MaybeConvertParenListExprToParenExpr(S, move(Op)); |
| 3346 | return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op)); |
| 3347 | } |
| 3348 | } |
| 3349 | |
| 3350 | Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 3351 | SourceLocation R, |
| 3352 | MultiExprArg Val) { |
| 3353 | unsigned nexprs = Val.size(); |
| 3354 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
| 3355 | assert((exprs != 0) && "ActOnParenListExpr() missing expr list"); |
| 3356 | Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
| 3357 | return Owned(expr); |
| 3358 | } |
| 3359 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3360 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3361 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3362 | /// C99 6.5.15 |
| 3363 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3364 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3365 | // C++ is sufficiently different to merit its own checker. |
| 3366 | if (getLangOptions().CPlusPlus) |
| 3367 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3368 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3369 | UsualUnaryConversions(Cond); |
| 3370 | UsualUnaryConversions(LHS); |
| 3371 | UsualUnaryConversions(RHS); |
| 3372 | QualType CondTy = Cond->getType(); |
| 3373 | QualType LHSTy = LHS->getType(); |
| 3374 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3375 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3376 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3377 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3378 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3379 | << CondTy; |
| 3380 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3381 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3382 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3383 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3384 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
| 3385 | return CheckVectorOperands(QuestionLoc, LHS, RHS); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3386 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3387 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3388 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3389 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3390 | UsualArithmeticConversions(LHS, RHS); |
| 3391 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3392 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3393 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3394 | // If both operands are the same structure or union type, the result is that |
| 3395 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3396 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3397 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3398 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3399 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3400 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3401 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3402 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3403 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3404 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3405 | // 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] | 3406 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3407 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3408 | if (!LHSTy->isVoidType()) |
| 3409 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3410 | << RHS->getSourceRange(); |
| 3411 | if (!RHSTy->isVoidType()) |
| 3412 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3413 | << LHS->getSourceRange(); |
| 3414 | ImpCastExprToType(LHS, Context.VoidTy); |
| 3415 | ImpCastExprToType(RHS, Context.VoidTy); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3416 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3417 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3418 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3419 | // the type of the other operand." |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3420 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3421 | RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3422 | ImpCastExprToType(RHS, LHSTy); // promote the null to a pointer. |
| 3423 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3424 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3425 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3426 | LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3427 | ImpCastExprToType(LHS, RHSTy); // promote the null to a pointer. |
| 3428 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3429 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3430 | // Handle things like Class and struct objc_class*. Here we case the result |
| 3431 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 3432 | // redefinition type if an attempt is made to access its fields. |
| 3433 | if (LHSTy->isObjCClassType() && |
| 3434 | (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
| 3435 | ImpCastExprToType(RHS, LHSTy); |
| 3436 | return LHSTy; |
| 3437 | } |
| 3438 | if (RHSTy->isObjCClassType() && |
| 3439 | (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
| 3440 | ImpCastExprToType(LHS, RHSTy); |
| 3441 | return RHSTy; |
| 3442 | } |
| 3443 | // And the same for struct objc_object* / id |
| 3444 | if (LHSTy->isObjCIdType() && |
| 3445 | (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
| 3446 | ImpCastExprToType(RHS, LHSTy); |
| 3447 | return LHSTy; |
| 3448 | } |
| 3449 | if (RHSTy->isObjCIdType() && |
| 3450 | (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
| 3451 | ImpCastExprToType(LHS, RHSTy); |
| 3452 | return RHSTy; |
| 3453 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3454 | // Handle block pointer types. |
| 3455 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3456 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3457 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3458 | QualType destType = Context.getPointerType(Context.VoidTy); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3459 | ImpCastExprToType(LHS, destType); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3460 | ImpCastExprToType(RHS, destType); |
| 3461 | return destType; |
| 3462 | } |
| 3463 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3464 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3465 | return QualType(); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3466 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3467 | // We have 2 block pointer types. |
| 3468 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3469 | // Two identical block pointer types are always compatible. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3470 | return LHSTy; |
| 3471 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3472 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3473 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3474 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3475 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3476 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3477 | rhptee.getUnqualifiedType())) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3478 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3479 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3480 | // In this situation, we assume void* type. No especially good |
| 3481 | // reason, but this is what gcc does, and we do have to pick |
| 3482 | // to get a consistent AST. |
| 3483 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3484 | ImpCastExprToType(LHS, incompatTy); |
| 3485 | ImpCastExprToType(RHS, incompatTy); |
| 3486 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3487 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3488 | // The block pointer types are compatible. |
| 3489 | ImpCastExprToType(LHS, LHSTy); |
| 3490 | ImpCastExprToType(RHS, LHSTy); |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3491 | return LHSTy; |
| 3492 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3493 | // Check constraints for Objective-C object pointers types. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3494 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3495 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3496 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3497 | // Two identical object pointer types are always compatible. |
| 3498 | return LHSTy; |
| 3499 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3500 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>(); |
| 3501 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3502 | QualType compositeType = LHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3503 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3504 | // If both operands are interfaces and either operand can be |
| 3505 | // assigned to the other, use that type as the composite |
| 3506 | // type. This allows |
| 3507 | // xxx ? (A*) a : (B*) b |
| 3508 | // where B is a subclass of A. |
| 3509 | // |
| 3510 | // Additionally, as for assignment, if either type is 'id' |
| 3511 | // allow silent coercion. Finally, if the types are |
| 3512 | // incompatible then make sure to use 'id' as the composite |
| 3513 | // type so the result is acceptable for sending messages to. |
| 3514 | |
| 3515 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3516 | // It could return the composite type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3517 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3518 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3519 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3520 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3521 | } else if ((LHSTy->isObjCQualifiedIdType() || |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3522 | RHSTy->isObjCQualifiedIdType()) && |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3523 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3524 | // Need to handle "id<xx>" explicitly. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3525 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3526 | // id. Currently localizing to here until clear this should be |
| 3527 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 3528 | compositeType = Context.getObjCIdType(); |
| 3529 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3530 | compositeType = Context.getObjCIdType(); |
| 3531 | } else { |
| 3532 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3533 | << LHSTy << RHSTy |
| 3534 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3535 | QualType incompatTy = Context.getObjCIdType(); |
| 3536 | ImpCastExprToType(LHS, incompatTy); |
| 3537 | ImpCastExprToType(RHS, incompatTy); |
| 3538 | return incompatTy; |
| 3539 | } |
| 3540 | // The object pointer types are compatible. |
| 3541 | ImpCastExprToType(LHS, compositeType); |
| 3542 | ImpCastExprToType(RHS, compositeType); |
| 3543 | return compositeType; |
| 3544 | } |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3545 | // Check Objective-C object pointer types and 'void *' |
| 3546 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3547 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3548 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3549 | QualType destPointee |
| 3550 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3551 | QualType destType = Context.getPointerType(destPointee); |
| 3552 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3553 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3554 | return destType; |
| 3555 | } |
| 3556 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3557 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3558 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3559 | QualType destPointee |
| 3560 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3561 | QualType destType = Context.getPointerType(destPointee); |
| 3562 | ImpCastExprToType(RHS, destType); // add qualifiers if necessary |
| 3563 | ImpCastExprToType(LHS, destType); // promote to void* |
| 3564 | return destType; |
| 3565 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3566 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3567 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3568 | // get the "pointed to" types |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3569 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3570 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3571 | |
| 3572 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3573 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3574 | // Figure out necessary qualifiers (C99 6.5.15p6) |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3575 | QualType destPointee |
| 3576 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3577 | QualType destType = Context.getPointerType(destPointee); |
| 3578 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3579 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3580 | return destType; |
| 3581 | } |
| 3582 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3583 | QualType destPointee |
| 3584 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3585 | QualType destType = Context.getPointerType(destPointee); |
| 3586 | ImpCastExprToType(LHS, destType); // add qualifiers if necessary |
| 3587 | ImpCastExprToType(RHS, destType); // promote to void* |
| 3588 | return destType; |
| 3589 | } |
| 3590 | |
| 3591 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3592 | // Two identical pointer types are always compatible. |
| 3593 | return LHSTy; |
| 3594 | } |
| 3595 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3596 | rhptee.getUnqualifiedType())) { |
| 3597 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3598 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3599 | // In this situation, we assume void* type. No especially good |
| 3600 | // reason, but this is what gcc does, and we do have to pick |
| 3601 | // to get a consistent AST. |
| 3602 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
| 3603 | ImpCastExprToType(LHS, incompatTy); |
| 3604 | ImpCastExprToType(RHS, incompatTy); |
| 3605 | return incompatTy; |
| 3606 | } |
| 3607 | // The pointer types are compatible. |
| 3608 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3609 | // differently qualified versions of compatible types, the result type is |
| 3610 | // a pointer to an appropriately qualified version of the *composite* |
| 3611 | // type. |
| 3612 | // FIXME: Need to calculate the composite type. |
| 3613 | // FIXME: Need to add qualifiers |
| 3614 | ImpCastExprToType(LHS, LHSTy); |
| 3615 | ImpCastExprToType(RHS, LHSTy); |
| 3616 | return LHSTy; |
| 3617 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3618 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3619 | // GCC compatibility: soften pointer/integer mismatch. |
| 3620 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3621 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3622 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3623 | ImpCastExprToType(LHS, RHSTy); // promote the integer to a pointer. |
| 3624 | return RHSTy; |
| 3625 | } |
| 3626 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3627 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3628 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3629 | ImpCastExprToType(RHS, LHSTy); // promote the integer to a pointer. |
| 3630 | return LHSTy; |
| 3631 | } |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3632 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3633 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3634 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3635 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3636 | return QualType(); |
| 3637 | } |
| 3638 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3639 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3640 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3641 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3642 | SourceLocation ColonLoc, |
| 3643 | ExprArg Cond, ExprArg LHS, |
| 3644 | ExprArg RHS) { |
| 3645 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3646 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3647 | |
| 3648 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3649 | // was the condition. |
| 3650 | bool isLHSNull = LHSExpr == 0; |
| 3651 | if (isLHSNull) |
| 3652 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3653 | |
| 3654 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3655 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3656 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3657 | return ExprError(); |
| 3658 | |
| 3659 | Cond.release(); |
| 3660 | LHS.release(); |
| 3661 | RHS.release(); |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3662 | return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3663 | isLHSNull ? 0 : LHSExpr, |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3664 | ColonLoc, RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3665 | } |
| 3666 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3667 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3668 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3669 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3670 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3671 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3672 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3673 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3674 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3675 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3676 | if ((lhsType->isObjCClassType() && |
| 3677 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3678 | (rhsType->isObjCClassType() && |
| 3679 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3680 | return Compatible; |
| 3681 | } |
| 3682 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3683 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3684 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 3685 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3686 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3687 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3688 | lhptee = Context.getCanonicalType(lhptee); |
| 3689 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3690 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3691 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3692 | |
| 3693 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3694 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3695 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3696 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3697 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3698 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3699 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3700 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3701 | // 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] | 3702 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3703 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3704 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3705 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3706 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3707 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3708 | assert(rhptee->isFunctionType()); |
| 3709 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3710 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3711 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3712 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3713 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3714 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3715 | |
| 3716 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3717 | assert(lhptee->isFunctionType()); |
| 3718 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3719 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3720 | // 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] | 3721 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3722 | lhptee = lhptee.getUnqualifiedType(); |
| 3723 | rhptee = rhptee.getUnqualifiedType(); |
| 3724 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3725 | // Check if the pointee types are compatible ignoring the sign. |
| 3726 | // We explicitly check for char so that we catch "char" vs |
| 3727 | // "unsigned char" on systems where "char" is unsigned. |
| 3728 | if (lhptee->isCharType()) { |
| 3729 | lhptee = Context.UnsignedCharTy; |
| 3730 | } else if (lhptee->isSignedIntegerType()) { |
| 3731 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
| 3732 | } |
| 3733 | if (rhptee->isCharType()) { |
| 3734 | rhptee = Context.UnsignedCharTy; |
| 3735 | } else if (rhptee->isSignedIntegerType()) { |
| 3736 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
| 3737 | } |
| 3738 | if (lhptee == rhptee) { |
| 3739 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3740 | // takes priority over sign incompatibility because the sign |
| 3741 | // warning can be disabled. |
| 3742 | if (ConvTy != Compatible) |
| 3743 | return ConvTy; |
| 3744 | return IncompatiblePointerSign; |
| 3745 | } |
| 3746 | // General pointer incompatibility takes priority over qualifiers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3747 | return IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3748 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3749 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3750 | } |
| 3751 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3752 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3753 | /// block pointer types are compatible or whether a block and normal pointer |
| 3754 | /// are compatible. It is more restrict than comparing two function pointer |
| 3755 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3756 | Sema::AssignConvertType |
| 3757 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3758 | QualType rhsType) { |
| 3759 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3760 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3761 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3762 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 3763 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3764 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3765 | // make sure we operate on the canonical type |
| 3766 | lhptee = Context.getCanonicalType(lhptee); |
| 3767 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3768 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3769 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3770 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3771 | // For blocks we enforce that qualifiers are identical. |
| 3772 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3773 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3774 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3775 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3776 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3777 | return ConvTy; |
| 3778 | } |
| 3779 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3780 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3781 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3782 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3783 | /// |
| 3784 | /// int a, *pint; |
| 3785 | /// short *pshort; |
| 3786 | /// struct foo *pfoo; |
| 3787 | /// |
| 3788 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3789 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3790 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3791 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3792 | /// |
| 3793 | /// 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] | 3794 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3795 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3796 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3797 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3798 | // Get canonical types. We're not formatting these types, just comparing |
| 3799 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3800 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3801 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3802 | |
| 3803 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3804 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3805 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3806 | if ((lhsType->isObjCClassType() && |
| 3807 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3808 | (rhsType->isObjCClassType() && |
| 3809 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3810 | return Compatible; |
| 3811 | } |
| 3812 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3813 | // If the left-hand side is a reference type, then we are in a |
| 3814 | // (rare!) case where we've allowed the use of references in C, |
| 3815 | // e.g., as a parameter type in a built-in function. In this case, |
| 3816 | // just make sure that the type referenced is compatible with the |
| 3817 | // right-hand side type. The caller is responsible for adjusting |
| 3818 | // lhsType so that the resulting expression does not have reference |
| 3819 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3820 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3821 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3822 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3823 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3824 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3825 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3826 | // to the same ExtVector type. |
| 3827 | if (lhsType->isExtVectorType()) { |
| 3828 | if (rhsType->isExtVectorType()) |
| 3829 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3830 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3831 | return Compatible; |
| 3832 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3833 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3834 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3835 | // 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] | 3836 | // 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] | 3837 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3838 | if (getLangOptions().LaxVectorConversions && |
| 3839 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3840 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3841 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3842 | } |
| 3843 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3844 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3845 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3846 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3847 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3848 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3849 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3850 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3851 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3852 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3853 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3854 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3855 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3856 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3857 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3858 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3859 | return Compatible; |
| 3860 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3861 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3862 | if (rhsType->getAs<BlockPointerType>()) { |
| 3863 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3864 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3865 | |
| 3866 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3867 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3868 | return Compatible; |
| 3869 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3870 | return Incompatible; |
| 3871 | } |
| 3872 | |
| 3873 | if (isa<BlockPointerType>(lhsType)) { |
| 3874 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3875 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3876 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3877 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3878 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3879 | return Compatible; |
| 3880 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3881 | if (rhsType->isBlockPointerType()) |
| 3882 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3883 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3884 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3885 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3886 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3887 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3888 | return Incompatible; |
| 3889 | } |
| 3890 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3891 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 3892 | if (rhsType->isIntegerType()) |
| 3893 | return IntToPointer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3894 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3895 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3896 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3897 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 3898 | return Compatible; |
| 3899 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3900 | } |
| 3901 | if (rhsType->isObjCObjectPointerType()) { |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 3902 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 3903 | return Compatible; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3904 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 3905 | return Compatible; |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3906 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 3907 | return IncompatibleObjCQualifiedId; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3908 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3909 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3910 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3911 | if (RHSPT->getPointeeType()->isVoidType()) |
| 3912 | return Compatible; |
| 3913 | } |
| 3914 | // Treat block pointers as objects. |
| 3915 | if (rhsType->isBlockPointerType()) |
| 3916 | return Compatible; |
| 3917 | return Incompatible; |
| 3918 | } |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3919 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3920 | // 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] | 3921 | if (lhsType == Context.BoolTy) |
| 3922 | return Compatible; |
| 3923 | |
| 3924 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3925 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3926 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3927 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3928 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3929 | |
| 3930 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3931 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3932 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3933 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3934 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3935 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 3936 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 3937 | if (lhsType == Context.BoolTy) |
| 3938 | return Compatible; |
| 3939 | |
| 3940 | if (lhsType->isIntegerType()) |
| 3941 | return PointerToInt; |
| 3942 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3943 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3944 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3945 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3946 | return Compatible; |
| 3947 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3948 | } |
| 3949 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3950 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3951 | return Compatible; |
| 3952 | return Incompatible; |
| 3953 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3954 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3955 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3956 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3957 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3958 | } |
| 3959 | return Incompatible; |
| 3960 | } |
| 3961 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3962 | /// \brief Constructs a transparent union from an expression that is |
| 3963 | /// used to initialize the transparent union. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3964 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3965 | QualType UnionType, FieldDecl *Field) { |
| 3966 | // Build an initializer list that designates the appropriate member |
| 3967 | // of the transparent union. |
| 3968 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3969 | &E, 1, |
| 3970 | SourceLocation()); |
| 3971 | Initializer->setType(UnionType); |
| 3972 | Initializer->setInitializedFieldInUnion(Field); |
| 3973 | |
| 3974 | // Build a compound literal constructing a value of the transparent |
| 3975 | // union type from this initializer list. |
| 3976 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3977 | false); |
| 3978 | } |
| 3979 | |
| 3980 | Sema::AssignConvertType |
| 3981 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3982 | QualType FromType = rExpr->getType(); |
| 3983 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3984 | // If the ArgType is a Union type, we want to handle a potential |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3985 | // transparent_union GCC extension. |
| 3986 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3987 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3988 | return Incompatible; |
| 3989 | |
| 3990 | // The field to initialize within the transparent union. |
| 3991 | RecordDecl *UD = UT->getDecl(); |
| 3992 | FieldDecl *InitField = 0; |
| 3993 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3994 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 3995 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3996 | it != itend; ++it) { |
| 3997 | if (it->getType()->isPointerType()) { |
| 3998 | // If the transparent union contains a pointer type, we allow: |
| 3999 | // 1) void pointer |
| 4000 | // 2) null pointer constant |
| 4001 | if (FromType->isPointerType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4002 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4003 | ImpCastExprToType(rExpr, it->getType()); |
| 4004 | InitField = *it; |
| 4005 | break; |
| 4006 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4007 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4008 | if (rExpr->isNullPointerConstant(Context, |
| 4009 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4010 | ImpCastExprToType(rExpr, it->getType()); |
| 4011 | InitField = *it; |
| 4012 | break; |
| 4013 | } |
| 4014 | } |
| 4015 | |
| 4016 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 4017 | == Compatible) { |
| 4018 | InitField = *it; |
| 4019 | break; |
| 4020 | } |
| 4021 | } |
| 4022 | |
| 4023 | if (!InitField) |
| 4024 | return Incompatible; |
| 4025 | |
| 4026 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 4027 | return Compatible; |
| 4028 | } |
| 4029 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4030 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4031 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4032 | if (getLangOptions().CPlusPlus) { |
| 4033 | if (!lhsType->isRecordType()) { |
| 4034 | // C++ 5.17p3: If the left operand is not of class type, the |
| 4035 | // expression is implicitly converted (C++ 4) to the |
| 4036 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 4037 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 4038 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4039 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 4040 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4041 | } |
| 4042 | |
| 4043 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 4044 | // structures. |
| 4045 | } |
| 4046 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4047 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 4048 | // a null pointer constant. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4049 | if ((lhsType->isPointerType() || |
| 4050 | lhsType->isObjCObjectPointerType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4051 | lhsType->isBlockPointerType()) |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4052 | && rExpr->isNullPointerConstant(Context, |
| 4053 | Expr::NPC_ValueDependentIsNull)) { |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4054 | ImpCastExprToType(rExpr, lhsType); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4055 | return Compatible; |
| 4056 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4057 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4058 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4059 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 4060 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4061 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4062 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4063 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4064 | if (!lhsType->isReferenceType()) |
| 4065 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4066 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4067 | Sema::AssignConvertType result = |
| 4068 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4069 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4070 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 4071 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4072 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 4073 | // so that we can use references in built-in functions even in C. |
| 4074 | // The getNonReferenceType() call makes sure that the resulting expression |
| 4075 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4076 | if (result != Incompatible && rExpr->getType() != lhsType) |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4077 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType()); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4078 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4079 | } |
| 4080 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4081 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4082 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4083 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4084 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4085 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4086 | } |
| 4087 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4088 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4089 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4090 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4091 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4092 | QualType lhsType = |
| 4093 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 4094 | QualType rhsType = |
| 4095 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4096 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4097 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4098 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4099 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4100 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4101 | // Handle the case of a vector & extvector type of the same size and element |
| 4102 | // 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] | 4103 | if (getLangOptions().LaxVectorConversions) { |
| 4104 | // FIXME: Should we warn here? |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4105 | if (const VectorType *LV = lhsType->getAs<VectorType>()) { |
| 4106 | if (const VectorType *RV = rhsType->getAs<VectorType>()) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4107 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4108 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4109 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4110 | } |
| 4111 | } |
| 4112 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4113 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4114 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 4115 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 4116 | bool swapped = false; |
| 4117 | if (rhsType->isExtVectorType()) { |
| 4118 | swapped = true; |
| 4119 | std::swap(rex, lex); |
| 4120 | std::swap(rhsType, lhsType); |
| 4121 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4122 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4123 | // Handle the case of an ext vector and scalar. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4124 | if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4125 | QualType EltTy = LV->getElementType(); |
| 4126 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 4127 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4128 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4129 | if (swapped) std::swap(rex, lex); |
| 4130 | return lhsType; |
| 4131 | } |
| 4132 | } |
| 4133 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 4134 | rhsType->isRealFloatingType()) { |
| 4135 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4136 | ImpCastExprToType(rex, lhsType); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4137 | if (swapped) std::swap(rex, lex); |
| 4138 | return lhsType; |
| 4139 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4140 | } |
| 4141 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4142 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4143 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4144 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4145 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4146 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4147 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4148 | } |
| 4149 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4150 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4151 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 4152 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4153 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4154 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4155 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4156 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4157 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4158 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4159 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4160 | } |
| 4161 | |
| 4162 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4163 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 4164 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4165 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 4166 | return CheckVectorOperands(Loc, lex, rex); |
| 4167 | return InvalidOperands(Loc, lex, rex); |
| 4168 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4169 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4170 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4171 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4172 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4173 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4174 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4175 | } |
| 4176 | |
| 4177 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4178 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4179 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4180 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4181 | if (CompLHSTy) *CompLHSTy = compType; |
| 4182 | return compType; |
| 4183 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4184 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4185 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4186 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4187 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4188 | if (lex->getType()->isArithmeticType() && |
| 4189 | rex->getType()->isArithmeticType()) { |
| 4190 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4191 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4192 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4193 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4194 | // Put any potential pointer into PExp |
| 4195 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4196 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4197 | std::swap(PExp, IExp); |
| 4198 | |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4199 | if (PExp->getType()->isAnyPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4200 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4201 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4202 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4203 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4204 | // Check for arithmetic on pointers to incomplete types. |
| 4205 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4206 | if (getLangOptions().CPlusPlus) { |
| 4207 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4208 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4209 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4210 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4211 | |
| 4212 | // GNU extension: arithmetic on pointer to void |
| 4213 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4214 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4215 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4216 | if (getLangOptions().CPlusPlus) { |
| 4217 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 4218 | << lex->getType() << lex->getSourceRange(); |
| 4219 | return QualType(); |
| 4220 | } |
| 4221 | |
| 4222 | // GNU extension: arithmetic on pointer to function |
| 4223 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4224 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4225 | } else { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4226 | // Check if we require a complete type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4227 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4228 | !PExp->getType()->isDependentType()) || |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4229 | PExp->getType()->isObjCObjectPointerType()) && |
| 4230 | RequireCompleteType(Loc, PointeeTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4231 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 4232 | << PExp->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4233 | << PExp->getType())) |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4234 | return QualType(); |
| 4235 | } |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4236 | // Diagnose bad cases where we step over interface counts. |
| 4237 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4238 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4239 | << PointeeTy << PExp->getSourceRange(); |
| 4240 | return QualType(); |
| 4241 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4242 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4243 | if (CompLHSTy) { |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4244 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4245 | if (LHSTy.isNull()) { |
| 4246 | LHSTy = lex->getType(); |
| 4247 | if (LHSTy->isPromotableIntegerType()) |
| 4248 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4249 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4250 | *CompLHSTy = LHSTy; |
| 4251 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4252 | return PExp->getType(); |
| 4253 | } |
| 4254 | } |
| 4255 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4256 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4257 | } |
| 4258 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4259 | // C99 6.5.6 |
| 4260 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4261 | SourceLocation Loc, QualType* CompLHSTy) { |
| 4262 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4263 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4264 | if (CompLHSTy) *CompLHSTy = compType; |
| 4265 | return compType; |
| 4266 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4267 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4268 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4269 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4270 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4271 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4272 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4273 | if (lex->getType()->isArithmeticType() |
| 4274 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4275 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4276 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4277 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4278 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4279 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4280 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 4281 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4282 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4283 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4284 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4285 | bool ComplainAboutVoid = false; |
| 4286 | Expr *ComplainAboutFunc = 0; |
| 4287 | if (lpointee->isVoidType()) { |
| 4288 | if (getLangOptions().CPlusPlus) { |
| 4289 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4290 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4291 | return QualType(); |
| 4292 | } |
| 4293 | |
| 4294 | // GNU C extension: arithmetic on pointer to void |
| 4295 | ComplainAboutVoid = true; |
| 4296 | } else if (lpointee->isFunctionType()) { |
| 4297 | if (getLangOptions().CPlusPlus) { |
| 4298 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4299 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4300 | return QualType(); |
| 4301 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4302 | |
| 4303 | // GNU C extension: arithmetic on pointer to function |
| 4304 | ComplainAboutFunc = lex; |
| 4305 | } else if (!lpointee->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4306 | RequireCompleteType(Loc, lpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4307 | PDiag(diag::err_typecheck_sub_ptr_object) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4308 | << lex->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4309 | << lex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4310 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4311 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4312 | // Diagnose bad cases where we step over interface counts. |
| 4313 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4314 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4315 | << lpointee << lex->getSourceRange(); |
| 4316 | return QualType(); |
| 4317 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4318 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4319 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4320 | if (rex->getType()->isIntegerType()) { |
| 4321 | if (ComplainAboutVoid) |
| 4322 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4323 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4324 | if (ComplainAboutFunc) |
| 4325 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4326 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4327 | << ComplainAboutFunc->getSourceRange(); |
| 4328 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4329 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4330 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4331 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4332 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4333 | // Handle pointer-pointer subtractions. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4334 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4335 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4336 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4337 | // RHS must be a completely-type object type. |
| 4338 | // Handle the GNU void* extension. |
| 4339 | if (rpointee->isVoidType()) { |
| 4340 | if (getLangOptions().CPlusPlus) { |
| 4341 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4342 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4343 | return QualType(); |
| 4344 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4345 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4346 | ComplainAboutVoid = true; |
| 4347 | } else if (rpointee->isFunctionType()) { |
| 4348 | if (getLangOptions().CPlusPlus) { |
| 4349 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4350 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4351 | return QualType(); |
| 4352 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4353 | |
| 4354 | // GNU extension: arithmetic on pointer to function |
| 4355 | if (!ComplainAboutFunc) |
| 4356 | ComplainAboutFunc = rex; |
| 4357 | } else if (!rpointee->isDependentType() && |
| 4358 | RequireCompleteType(Loc, rpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4359 | PDiag(diag::err_typecheck_sub_ptr_object) |
| 4360 | << rex->getSourceRange() |
| 4361 | << rex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4362 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4363 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4364 | if (getLangOptions().CPlusPlus) { |
| 4365 | // Pointee types must be the same: C++ [expr.add] |
| 4366 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4367 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4368 | << lex->getType() << rex->getType() |
| 4369 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4370 | return QualType(); |
| 4371 | } |
| 4372 | } else { |
| 4373 | // Pointee types must be compatible C99 6.5.6p3 |
| 4374 | if (!Context.typesAreCompatible( |
| 4375 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4376 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4377 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4378 | << lex->getType() << rex->getType() |
| 4379 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4380 | return QualType(); |
| 4381 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4382 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4383 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4384 | if (ComplainAboutVoid) |
| 4385 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4386 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4387 | if (ComplainAboutFunc) |
| 4388 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4389 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4390 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4391 | |
| 4392 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4393 | return Context.getPointerDiffType(); |
| 4394 | } |
| 4395 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4396 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4397 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4398 | } |
| 4399 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4400 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4401 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4402 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4403 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4404 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4405 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4406 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4407 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4408 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4409 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4410 | if (LHSTy.isNull()) { |
| 4411 | LHSTy = lex->getType(); |
| 4412 | if (LHSTy->isPromotableIntegerType()) |
| 4413 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4414 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4415 | if (!isCompAssign) |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4416 | ImpCastExprToType(lex, LHSTy); |
| 4417 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4418 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4419 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4420 | // Sanity-check shift operands |
| 4421 | llvm::APSInt Right; |
| 4422 | // Check right/shifter operand |
Daniel Dunbar | 3f180c6 | 2009-09-17 06:31:27 +0000 | [diff] [blame] | 4423 | if (!rex->isValueDependent() && |
| 4424 | rex->isIntegerConstantExpr(Right, Context)) { |
Ryan Flynn | 8045c73 | 2009-08-08 19:18:23 +0000 | [diff] [blame] | 4425 | if (Right.isNegative()) |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4426 | Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange(); |
| 4427 | else { |
| 4428 | llvm::APInt LeftBits(Right.getBitWidth(), |
| 4429 | Context.getTypeSize(lex->getType())); |
| 4430 | if (Right.uge(LeftBits)) |
| 4431 | Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange(); |
| 4432 | } |
| 4433 | } |
| 4434 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4435 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4436 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4437 | } |
| 4438 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4439 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4440 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4441 | unsigned OpaqueOpc, bool isRelational) { |
| 4442 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 4443 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4444 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4445 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4446 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4447 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 4448 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 4449 | UsualArithmeticConversions(lex, rex); |
| 4450 | else { |
| 4451 | UsualUnaryConversions(lex); |
| 4452 | UsualUnaryConversions(rex); |
| 4453 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4454 | QualType lType = lex->getType(); |
| 4455 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4456 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4457 | if (!lType->isFloatingType() |
| 4458 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4459 | // For non-floating point types, check for self-comparisons of the form |
| 4460 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4461 | // often indicate logic errors in the program. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4462 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 4463 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4464 | Expr *LHSStripped = lex->IgnoreParens(); |
| 4465 | Expr *RHSStripped = rex->IgnoreParens(); |
| 4466 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 4467 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 4468 | if (DRL->getDecl() == DRR->getDecl() && |
| 4469 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4470 | Diag(Loc, diag::warn_selfcomparison); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4471 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4472 | if (isa<CastExpr>(LHSStripped)) |
| 4473 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 4474 | if (isa<CastExpr>(RHSStripped)) |
| 4475 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4476 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4477 | // Warn about comparisons against a string constant (unless the other |
| 4478 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4479 | Expr *literalString = 0; |
| 4480 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4481 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4482 | !RHSStripped->isNullPointerConstant(Context, |
| 4483 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4484 | literalString = lex; |
| 4485 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 4486 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 4487 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4488 | !LHSStripped->isNullPointerConstant(Context, |
| 4489 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4490 | literalString = rex; |
| 4491 | literalStringStripped = RHSStripped; |
| 4492 | } |
| 4493 | |
| 4494 | if (literalString) { |
| 4495 | std::string resultComparison; |
| 4496 | switch (Opc) { |
| 4497 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4498 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4499 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4500 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4501 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4502 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4503 | default: assert(false && "Invalid comparison operator"); |
| 4504 | } |
| 4505 | Diag(Loc, diag::warn_stringcompare) |
| 4506 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4507 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4508 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4509 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4510 | "strcmp(") |
| 4511 | << CodeModificationHint::CreateInsertion( |
| 4512 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4513 | resultComparison); |
| 4514 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4515 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4516 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4517 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4518 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4519 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4520 | if (isRelational) { |
| 4521 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4522 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4523 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4524 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4525 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4526 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4527 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4528 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4529 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4530 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4531 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4532 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4533 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4534 | bool LHSIsNull = lex->isNullPointerConstant(Context, |
| 4535 | Expr::NPC_ValueDependentIsNull); |
| 4536 | bool RHSIsNull = rex->isNullPointerConstant(Context, |
| 4537 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4538 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4539 | // All of the following pointer related warnings are GCC extensions, except |
| 4540 | // when handling null pointer constants. One day, we can consider making them |
| 4541 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4542 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4543 | QualType LCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4544 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4545 | QualType RCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4546 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4547 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4548 | if (getLangOptions().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4549 | if (LCanPointeeTy == RCanPointeeTy) |
| 4550 | return ResultTy; |
| 4551 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4552 | // C++ [expr.rel]p2: |
| 4553 | // [...] Pointer conversions (4.10) and qualification |
| 4554 | // conversions (4.4) are performed on pointer operands (or on |
| 4555 | // a pointer operand and a null pointer constant) to bring |
| 4556 | // them to their composite pointer type. [...] |
| 4557 | // |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4558 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4559 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4560 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4561 | if (T.isNull()) { |
| 4562 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4563 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4564 | return QualType(); |
| 4565 | } |
| 4566 | |
| 4567 | ImpCastExprToType(lex, T); |
| 4568 | ImpCastExprToType(rex, T); |
| 4569 | return ResultTy; |
| 4570 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4571 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 4572 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 4573 | RCanPointeeTy.getUnqualifiedType())) { |
| 4574 | // Valid unless a relational comparison of function pointers |
| 4575 | if (isRelational && LCanPointeeTy->isFunctionType()) { |
| 4576 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4577 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4578 | } |
| 4579 | } else if (!isRelational && |
| 4580 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 4581 | // Valid unless comparison between non-null pointer and function pointer |
| 4582 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 4583 | && !LHSIsNull && !RHSIsNull) { |
| 4584 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 4585 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4586 | } |
| 4587 | } else { |
| 4588 | // Invalid |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4589 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4590 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4591 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4592 | if (LCanPointeeTy != RCanPointeeTy) |
| 4593 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4594 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4595 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4596 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4597 | if (getLangOptions().CPlusPlus) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4598 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4599 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4600 | if (RHSIsNull && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4601 | (lType->isPointerType() || |
| 4602 | (!isRelational && lType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4603 | ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4604 | return ResultTy; |
| 4605 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4606 | if (LHSIsNull && |
| 4607 | (rType->isPointerType() || |
| 4608 | (!isRelational && rType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4609 | ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4610 | return ResultTy; |
| 4611 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4612 | |
| 4613 | // Comparison of member pointers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4614 | if (!isRelational && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4615 | lType->isMemberPointerType() && rType->isMemberPointerType()) { |
| 4616 | // C++ [expr.eq]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4617 | // In addition, pointers to members can be compared, or a pointer to |
| 4618 | // member and a null pointer constant. Pointer to member conversions |
| 4619 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 4620 | // them to a common type. If one operand is a null pointer constant, |
| 4621 | // the common type is the type of the other operand. Otherwise, the |
| 4622 | // common type is a pointer to member type similar (4.4) to the type |
| 4623 | // of one of the operands, with a cv-qualification signature (4.4) |
| 4624 | // that is the union of the cv-qualification signatures of the operand |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4625 | // types. |
| 4626 | QualType T = FindCompositePointerType(lex, rex); |
| 4627 | if (T.isNull()) { |
| 4628 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4629 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4630 | return QualType(); |
| 4631 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4632 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4633 | ImpCastExprToType(lex, T); |
| 4634 | ImpCastExprToType(rex, T); |
| 4635 | return ResultTy; |
| 4636 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4637 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4638 | // Comparison of nullptr_t with itself. |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4639 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4640 | return ResultTy; |
| 4641 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4642 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4643 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4644 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4645 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 4646 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4647 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4648 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4649 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4650 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4651 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4652 | } |
| 4653 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4654 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4655 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4656 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4657 | if (!isRelational |
| 4658 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4659 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4660 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4661 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4662 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4663 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4664 | ->getPointeeType()->isVoidType()))) |
| 4665 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4666 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4667 | } |
| 4668 | ImpCastExprToType(rex, lType); // promote the pointer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4669 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4670 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4671 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4672 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4673 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4674 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 4675 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4676 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4677 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4678 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4679 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4680 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4681 | if (!LPtrToVoid && !RPtrToVoid && |
| 4682 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4683 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4684 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4685 | } |
Daniel Dunbar | c6cb77f | 2008-10-23 23:30:52 +0000 | [diff] [blame] | 4686 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4687 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4688 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4689 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4690 | if (!Context.areComparableObjCPointerTypes(lType, rType)) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4691 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4692 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4693 | ImpCastExprToType(rex, lType); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4694 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4695 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4696 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4697 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4698 | unsigned DiagID = 0; |
| 4699 | if (RHSIsNull) { |
| 4700 | if (isRelational) |
| 4701 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4702 | } else if (isRelational) |
| 4703 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4704 | else |
| 4705 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4706 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4707 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4708 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4709 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4710 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4711 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4712 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4713 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4714 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4715 | unsigned DiagID = 0; |
| 4716 | if (LHSIsNull) { |
| 4717 | if (isRelational) |
| 4718 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4719 | } else if (isRelational) |
| 4720 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4721 | else |
| 4722 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4723 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4724 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4725 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4726 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4727 | } |
Chris Lattner | 1e0a390 | 2008-01-16 19:17:22 +0000 | [diff] [blame] | 4728 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4729 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4730 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4731 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4732 | if (!isRelational && RHSIsNull |
| 4733 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4734 | ImpCastExprToType(rex, lType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4735 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4736 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4737 | if (!isRelational && LHSIsNull |
| 4738 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4739 | ImpCastExprToType(lex, rType); // promote the integer to pointer |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4740 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4741 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4742 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4743 | } |
| 4744 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4745 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4746 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4747 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4748 | /// types. |
| 4749 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4750 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4751 | bool isRelational) { |
| 4752 | // Check to make sure we're operating on vectors of the same type and width, |
| 4753 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4754 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4755 | if (vType.isNull()) |
| 4756 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4757 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4758 | QualType lType = lex->getType(); |
| 4759 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4760 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4761 | // For non-floating point types, check for self-comparisons of the form |
| 4762 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4763 | // often indicate logic errors in the program. |
| 4764 | if (!lType->isFloatingType()) { |
| 4765 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4766 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4767 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4768 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4769 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4770 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4771 | // Check for comparisons of floating point operands using != and ==. |
| 4772 | if (!isRelational && lType->isFloatingType()) { |
| 4773 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4774 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4775 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4776 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4777 | // Return the type for the comparison, which is the same as vector type for |
| 4778 | // integer vectors, or an integer type of identical size and number of |
| 4779 | // elements for floating point vectors. |
| 4780 | if (lType->isIntegerType()) |
| 4781 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4782 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4783 | const VectorType *VTy = lType->getAs<VectorType>(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4784 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4785 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4786 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4787 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4788 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4789 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4790 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4791 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4792 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4793 | } |
| 4794 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4795 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4796 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4797 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4798 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4799 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4800 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4801 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4802 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4803 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4804 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4805 | } |
| 4806 | |
| 4807 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4808 | Expr *&lex, Expr *&rex, SourceLocation Loc) { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4809 | UsualUnaryConversions(lex); |
| 4810 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4811 | |
Eli Friedman | 5773a6c | 2008-05-13 20:16:47 +0000 | [diff] [blame] | 4812 | if (lex->getType()->isScalarType() && rex->getType()->isScalarType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4813 | return Context.IntTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4814 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4815 | } |
| 4816 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4817 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4818 | /// is a read-only property; return true if so. A readonly property expression |
| 4819 | /// depends on various declarations and thus must be treated specially. |
| 4820 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4821 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4822 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4823 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4824 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4825 | QualType BaseType = PropExpr->getBase()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4826 | if (const ObjCObjectPointerType *OPT = |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4827 | BaseType->getAsObjCInterfacePointerType()) |
| 4828 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 4829 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4830 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4831 | } |
| 4832 | } |
| 4833 | return false; |
| 4834 | } |
| 4835 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4836 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4837 | /// emit an error and return true. If so, return false. |
| 4838 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4839 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4840 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4841 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4842 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4843 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4844 | if (IsLV == Expr::MLV_Valid) |
| 4845 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4846 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4847 | unsigned Diag = 0; |
| 4848 | bool NeedType = false; |
| 4849 | switch (IsLV) { // C99 6.5.16p2 |
| 4850 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4851 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4852 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4853 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4854 | NeedType = true; |
| 4855 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4856 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4857 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4858 | NeedType = true; |
| 4859 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4860 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4861 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4862 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4863 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4864 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4865 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4866 | case Expr::MLV_IncompleteType: |
| 4867 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4868 | return S.RequireCompleteType(Loc, E->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 4869 | PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
| 4870 | << E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4871 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4872 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4873 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4874 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4875 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4876 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4877 | case Expr::MLV_ReadonlyProperty: |
| 4878 | Diag = diag::error_readonly_property_assignment; |
| 4879 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4880 | case Expr::MLV_NoSetterProperty: |
| 4881 | Diag = diag::error_nosetter_property_assignment; |
| 4882 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4883 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4884 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4885 | SourceRange Assign; |
| 4886 | if (Loc != OrigLoc) |
| 4887 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4888 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4889 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4890 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4891 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4892 | return true; |
| 4893 | } |
| 4894 | |
| 4895 | |
| 4896 | |
| 4897 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4898 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4899 | SourceLocation Loc, |
| 4900 | QualType CompoundType) { |
| 4901 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4902 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4903 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4904 | |
| 4905 | QualType LHSType = LHS->getType(); |
| 4906 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4907 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4908 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4909 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4910 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4911 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4912 | // Special case of NSObject attributes on c-style pointer types. |
| 4913 | if (ConvTy == IncompatiblePointer && |
| 4914 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4915 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4916 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4917 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4918 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4919 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4920 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4921 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4922 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4923 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4924 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4925 | RHSCheck = ICE->getSubExpr(); |
| 4926 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4927 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4928 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4929 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4930 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4931 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4932 | // And there is a space or other character before the subexpr of the |
| 4933 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4934 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4935 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4936 | Diag(Loc, diag::warn_not_compound_assign) |
| 4937 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4938 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4939 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4940 | } |
| 4941 | } else { |
| 4942 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4943 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4944 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4945 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4946 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4947 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4948 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4949 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4950 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4951 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4952 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4953 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4954 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4955 | // 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] | 4956 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4957 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4958 | } |
| 4959 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4960 | // C99 6.5.17 |
| 4961 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4962 | // 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] | 4963 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4964 | |
| 4965 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4966 | // incomplete in C++). |
| 4967 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4968 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4969 | } |
| 4970 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4971 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4972 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4973 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4974 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4975 | if (Op->isTypeDependent()) |
| 4976 | return Context.DependentTy; |
| 4977 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4978 | QualType ResType = Op->getType(); |
| 4979 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4980 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4981 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4982 | // Decrement of bool is not allowed. |
| 4983 | if (!isInc) { |
| 4984 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 4985 | return QualType(); |
| 4986 | } |
| 4987 | // Increment of bool sets it to true, but is deprecated. |
| 4988 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 4989 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4990 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4991 | } else if (ResType->isAnyPointerType()) { |
| 4992 | QualType PointeeTy = ResType->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4993 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4994 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4995 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4996 | if (getLangOptions().CPlusPlus) { |
| 4997 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 4998 | << Op->getSourceRange(); |
| 4999 | return QualType(); |
| 5000 | } |
| 5001 | |
| 5002 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5003 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5004 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5005 | if (getLangOptions().CPlusPlus) { |
| 5006 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 5007 | << Op->getType() << Op->getSourceRange(); |
| 5008 | return QualType(); |
| 5009 | } |
| 5010 | |
| 5011 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5012 | << ResType << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5013 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5014 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5015 | << Op->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5016 | << ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5017 | return QualType(); |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 5018 | // Diagnose bad cases where we step over interface counts. |
| 5019 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 5020 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 5021 | << PointeeTy << Op->getSourceRange(); |
| 5022 | return QualType(); |
| 5023 | } |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5024 | } else if (ResType->isComplexType()) { |
| 5025 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 5026 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5027 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5028 | } else { |
| 5029 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5030 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5031 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5032 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5033 | // 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] | 5034 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5035 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5036 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5037 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5038 | } |
| 5039 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5040 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5041 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5042 | /// where the declaration is needed for type checking. We only need to |
| 5043 | /// handle cases when the expression references a function designator |
| 5044 | /// or is an lvalue. Here are some examples: |
| 5045 | /// - &(x) => x |
| 5046 | /// - &*****f => f for f a function designator. |
| 5047 | /// - &s.xx => s |
| 5048 | /// - &s.zz[1].yy -> s, if zz is an array |
| 5049 | /// - *(x + 1) -> x, if x is an array |
| 5050 | /// - &"123"[2] -> 0 |
| 5051 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5052 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5053 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5054 | case Stmt::DeclRefExprClass: |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 5055 | case Stmt::QualifiedDeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5056 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5057 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5058 | // If this is an arrow operator, the address is an offset from |
| 5059 | // the base's value, so the object the base refers to is |
| 5060 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5061 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5062 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5063 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5064 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5065 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5066 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 5067 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5068 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 5069 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 5070 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 5071 | return getPrimaryDecl(ICE->getSubExpr()); |
| 5072 | } |
| 5073 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5074 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5075 | case Stmt::UnaryOperatorClass: { |
| 5076 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5077 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5078 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5079 | case UnaryOperator::Real: |
| 5080 | case UnaryOperator::Imag: |
| 5081 | case UnaryOperator::Extension: |
| 5082 | return getPrimaryDecl(UO->getSubExpr()); |
| 5083 | default: |
| 5084 | return 0; |
| 5085 | } |
| 5086 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5087 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5088 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5089 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5090 | // If the result of an implicit cast is an l-value, we care about |
| 5091 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5092 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5093 | default: |
| 5094 | return 0; |
| 5095 | } |
| 5096 | } |
| 5097 | |
| 5098 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5099 | /// 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] | 5100 | /// 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] | 5101 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5102 | /// 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] | 5103 | /// 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] | 5104 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5105 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5106 | // Make sure to ignore parentheses in subsequent checks |
| 5107 | op = op->IgnoreParens(); |
| 5108 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 5109 | if (op->isTypeDependent()) |
| 5110 | return Context.DependentTy; |
| 5111 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5112 | if (getLangOptions().C99) { |
| 5113 | // Implement C99-only parts of addressof rules. |
| 5114 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 5115 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 5116 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 5117 | // (assuming the deref expression is valid). |
| 5118 | return uOp->getSubExpr()->getType(); |
| 5119 | } |
| 5120 | // Technically, there should be a check for array subscript |
| 5121 | // expressions here, but the result of one is always an lvalue anyway. |
| 5122 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5123 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 5124 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 5125 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5126 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 5127 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5128 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5129 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5130 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5131 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 5132 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5133 | return QualType(); |
| 5134 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 5135 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5136 | // The operand cannot be a bit-field |
| 5137 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5138 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 5139 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5140 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 5141 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5142 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5143 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5144 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5145 | return QualType(); |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 5146 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 5147 | // cannot take address of a property expression. |
| 5148 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5149 | << "property expression" << op->getSourceRange(); |
| 5150 | return QualType(); |
Anders Carlsson | 1d524c3 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 5151 | } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) { |
| 5152 | // FIXME: Can LHS ever be null here? |
Anders Carlsson | 474e102 | 2009-09-15 16:03:44 +0000 | [diff] [blame] | 5153 | if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull()) |
| 5154 | return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5155 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5156 | // 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] | 5157 | // with the register storage-class specifier. |
| 5158 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 5159 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5160 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5161 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5162 | return QualType(); |
| 5163 | } |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 5164 | } else if (isa<OverloadedFunctionDecl>(dcl) || |
| 5165 | isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5166 | return Context.OverloadTy; |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5167 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 5168 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5169 | // Could be a pointer to member, though, if there is an explicit |
| 5170 | // scope qualifier for the class. |
| 5171 | if (isa<QualifiedDeclRefExpr>(op)) { |
| 5172 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5173 | if (Ctx && Ctx->isRecord()) { |
| 5174 | if (FD->getType()->isReferenceType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5175 | Diag(OpLoc, |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5176 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 5177 | << FD->getDeclName() << FD->getType(); |
| 5178 | return QualType(); |
| 5179 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5180 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5181 | return Context.getMemberPointerType(op->getType(), |
| 5182 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5183 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5184 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5185 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 5186 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5187 | // As above. |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5188 | if (isa<QualifiedDeclRefExpr>(op) && MD->isInstance()) |
| 5189 | return Context.getMemberPointerType(op->getType(), |
| 5190 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 5191 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5192 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5193 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5194 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5195 | if (lval == Expr::LV_IncompleteVoidType) { |
| 5196 | // Taking the address of a void variable is technically illegal, but we |
| 5197 | // allow it in cases which are otherwise valid. |
| 5198 | // Example: "extern void x; void* y = &x;". |
| 5199 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 5200 | } |
| 5201 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5202 | // If the operand has type "type", the result has type "pointer to type". |
| 5203 | return Context.getPointerType(op->getType()); |
| 5204 | } |
| 5205 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5206 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5207 | if (Op->isTypeDependent()) |
| 5208 | return Context.DependentTy; |
| 5209 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5210 | UsualUnaryConversions(Op); |
| 5211 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5212 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5213 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 5214 | // incomplete type or void. It would be possible to warn about dereferencing |
| 5215 | // a void pointer, but it's completely well-defined, and such a warning is |
| 5216 | // unlikely to catch any mistakes. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5217 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5218 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5219 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5220 | if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>()) |
Fariborz Jahanian | 16b1037 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 5221 | return OPT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5222 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5223 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5224 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5225 | return QualType(); |
| 5226 | } |
| 5227 | |
| 5228 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 5229 | tok::TokenKind Kind) { |
| 5230 | BinaryOperator::Opcode Opc; |
| 5231 | switch (Kind) { |
| 5232 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5233 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 5234 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5235 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 5236 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 5237 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 5238 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 5239 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 5240 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 5241 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 5242 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 5243 | case tok::less: Opc = BinaryOperator::LT; break; |
| 5244 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 5245 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 5246 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 5247 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 5248 | case tok::amp: Opc = BinaryOperator::And; break; |
| 5249 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 5250 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 5251 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 5252 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 5253 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 5254 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 5255 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 5256 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 5257 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 5258 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 5259 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 5260 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 5261 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 5262 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 5263 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 5264 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 5265 | } |
| 5266 | return Opc; |
| 5267 | } |
| 5268 | |
| 5269 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 5270 | tok::TokenKind Kind) { |
| 5271 | UnaryOperator::Opcode Opc; |
| 5272 | switch (Kind) { |
| 5273 | default: assert(0 && "Unknown unary op!"); |
| 5274 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 5275 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 5276 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 5277 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 5278 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 5279 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 5280 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 5281 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5282 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 5283 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 5284 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 5285 | } |
| 5286 | return Opc; |
| 5287 | } |
| 5288 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5289 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 5290 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 5291 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5292 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 5293 | unsigned Op, |
| 5294 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5295 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5296 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5297 | // The following two variables are used for compound assignment operators |
| 5298 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 5299 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5300 | |
| 5301 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5302 | case BinaryOperator::Assign: |
| 5303 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 5304 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5305 | case BinaryOperator::PtrMemD: |
| 5306 | case BinaryOperator::PtrMemI: |
| 5307 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 5308 | Opc == BinaryOperator::PtrMemI); |
| 5309 | break; |
| 5310 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5311 | case BinaryOperator::Div: |
| 5312 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 5313 | break; |
| 5314 | case BinaryOperator::Rem: |
| 5315 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 5316 | break; |
| 5317 | case BinaryOperator::Add: |
| 5318 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 5319 | break; |
| 5320 | case BinaryOperator::Sub: |
| 5321 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 5322 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5323 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5324 | case BinaryOperator::Shr: |
| 5325 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 5326 | break; |
| 5327 | case BinaryOperator::LE: |
| 5328 | case BinaryOperator::LT: |
| 5329 | case BinaryOperator::GE: |
| 5330 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5331 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5332 | break; |
| 5333 | case BinaryOperator::EQ: |
| 5334 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5335 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5336 | break; |
| 5337 | case BinaryOperator::And: |
| 5338 | case BinaryOperator::Xor: |
| 5339 | case BinaryOperator::Or: |
| 5340 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 5341 | break; |
| 5342 | case BinaryOperator::LAnd: |
| 5343 | case BinaryOperator::LOr: |
| 5344 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 5345 | break; |
| 5346 | case BinaryOperator::MulAssign: |
| 5347 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5348 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 5349 | CompLHSTy = CompResultTy; |
| 5350 | if (!CompResultTy.isNull()) |
| 5351 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5352 | break; |
| 5353 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5354 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 5355 | CompLHSTy = CompResultTy; |
| 5356 | if (!CompResultTy.isNull()) |
| 5357 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5358 | break; |
| 5359 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5360 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5361 | if (!CompResultTy.isNull()) |
| 5362 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5363 | break; |
| 5364 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5365 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5366 | if (!CompResultTy.isNull()) |
| 5367 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5368 | break; |
| 5369 | case BinaryOperator::ShlAssign: |
| 5370 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5371 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 5372 | CompLHSTy = CompResultTy; |
| 5373 | if (!CompResultTy.isNull()) |
| 5374 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5375 | break; |
| 5376 | case BinaryOperator::AndAssign: |
| 5377 | case BinaryOperator::XorAssign: |
| 5378 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5379 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 5380 | CompLHSTy = CompResultTy; |
| 5381 | if (!CompResultTy.isNull()) |
| 5382 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5383 | break; |
| 5384 | case BinaryOperator::Comma: |
| 5385 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 5386 | break; |
| 5387 | } |
| 5388 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5389 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5390 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5391 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 5392 | else |
| 5393 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5394 | CompLHSTy, CompResultTy, |
| 5395 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5396 | } |
| 5397 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5398 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5399 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 5400 | tok::TokenKind Kind, |
| 5401 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5402 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5403 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5404 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5405 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 5406 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5407 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5408 | if (getLangOptions().CPlusPlus && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5409 | (lhs->getType()->isOverloadableType() || |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5410 | rhs->getType()->isOverloadableType())) { |
| 5411 | // Find all of the overloaded operators visible from this |
| 5412 | // point. We perform both an operator-name lookup from the local |
| 5413 | // scope and an argument-dependent lookup based on the types of |
| 5414 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 5415 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5416 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 5417 | if (OverOp != OO_None) { |
| 5418 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 5419 | Functions); |
| 5420 | Expr *Args[2] = { lhs, rhs }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5421 | DeclarationName OpName |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5422 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 5423 | ArgumentDependentLookup(OpName, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 5424 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5425 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5426 | // Build the (potentially-overloaded, potentially-dependent) |
| 5427 | // binary operation. |
| 5428 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5429 | } |
| 5430 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5431 | // Build a built-in binary operation. |
| 5432 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5433 | } |
| 5434 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5435 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5436 | unsigned OpcIn, |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5437 | ExprArg InputArg) { |
| 5438 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5439 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5440 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5441 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5442 | QualType resultType; |
| 5443 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5444 | case UnaryOperator::OffsetOf: |
| 5445 | assert(false && "Invalid unary operator"); |
| 5446 | break; |
| 5447 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5448 | case UnaryOperator::PreInc: |
| 5449 | case UnaryOperator::PreDec: |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5450 | case UnaryOperator::PostInc: |
| 5451 | case UnaryOperator::PostDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5452 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5453 | Opc == UnaryOperator::PreInc || |
| 5454 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5455 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5456 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5457 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 5458 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5459 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 5460 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5461 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 5462 | break; |
| 5463 | case UnaryOperator::Plus: |
| 5464 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5465 | UsualUnaryConversions(Input); |
| 5466 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5467 | if (resultType->isDependentType()) |
| 5468 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5469 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 5470 | break; |
| 5471 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 5472 | resultType->isEnumeralType()) |
| 5473 | break; |
| 5474 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 5475 | Opc == UnaryOperator::Plus && |
| 5476 | resultType->isPointerType()) |
| 5477 | break; |
| 5478 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5479 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5480 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5481 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5482 | UsualUnaryConversions(Input); |
| 5483 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5484 | if (resultType->isDependentType()) |
| 5485 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5486 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 5487 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 5488 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5489 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5490 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5491 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5492 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5493 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5494 | break; |
| 5495 | case UnaryOperator::LNot: // logical negation |
| 5496 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5497 | DefaultFunctionArrayConversion(Input); |
| 5498 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5499 | if (resultType->isDependentType()) |
| 5500 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5501 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5502 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5503 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5504 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5505 | // In C++, it's bool. C++ 5.3.1p8 |
| 5506 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5507 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5508 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5509 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 5510 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5511 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5512 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5513 | resultType = Input->getType(); |
| 5514 | break; |
| 5515 | } |
| 5516 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5517 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5518 | |
| 5519 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5520 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5521 | } |
| 5522 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5523 | // Unary Operators. 'Tok' is the token for the operator. |
| 5524 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5525 | tok::TokenKind Op, ExprArg input) { |
| 5526 | Expr *Input = (Expr*)input.get(); |
| 5527 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 5528 | |
| 5529 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 5530 | // Find all of the overloaded operators visible from this |
| 5531 | // point. We perform both an operator-name lookup from the local |
| 5532 | // scope and an argument-dependent lookup based on the types of |
| 5533 | // the arguments. |
| 5534 | FunctionSet Functions; |
| 5535 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 5536 | if (OverOp != OO_None) { |
| 5537 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 5538 | Functions); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5539 | DeclarationName OpName |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5540 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
| 5541 | ArgumentDependentLookup(OpName, &Input, 1, Functions); |
| 5542 | } |
| 5543 | |
| 5544 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 5545 | } |
| 5546 | |
| 5547 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 5548 | } |
| 5549 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 5550 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5551 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 5552 | SourceLocation LabLoc, |
| 5553 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5554 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 5555 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5556 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 5557 | // If we haven't seen this label yet, create a forward reference. It |
| 5558 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5559 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5560 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5561 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5562 | // 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] | 5563 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5564 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5565 | } |
| 5566 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5567 | Sema::OwningExprResult |
| 5568 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5569 | SourceLocation RPLoc) { // "({..})" |
| 5570 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5571 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5572 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5573 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5574 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5575 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5576 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5577 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5578 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5579 | // example, it is not possible to goto into a stmt expression apparently. |
| 5580 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5581 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5582 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5583 | // as the type of the stmtexpr. |
| 5584 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5585 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5586 | if (!Compound->body_empty()) { |
| 5587 | Stmt *LastStmt = Compound->body_back(); |
| 5588 | // If LastStmt is a label, skip down through into the body. |
| 5589 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5590 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5591 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5592 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5593 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5594 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5595 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5596 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5597 | // expressions are not lvalues. |
| 5598 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5599 | substmt.release(); |
| 5600 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5601 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5602 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5603 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5604 | SourceLocation BuiltinLoc, |
| 5605 | SourceLocation TypeLoc, |
| 5606 | TypeTy *argty, |
| 5607 | OffsetOfComponent *CompPtr, |
| 5608 | unsigned NumComponents, |
| 5609 | SourceLocation RPLoc) { |
| 5610 | // FIXME: This function leaks all expressions in the offset components on |
| 5611 | // error. |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5612 | // FIXME: Preserve type source info. |
| 5613 | QualType ArgTy = GetTypeFromParser(argty); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5614 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5615 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5616 | bool Dependent = ArgTy->isDependentType(); |
| 5617 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5618 | // We must have at least one component that refers to the type, and the first |
| 5619 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5620 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5621 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5622 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5623 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5624 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5625 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5626 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5627 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5628 | // the offsetof designators. |
| 5629 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5630 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5631 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5632 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5633 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5634 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5635 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5636 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5637 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5638 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5639 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5640 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5641 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5642 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5643 | bool DidWarnAboutNonPOD = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5644 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5645 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5646 | // leaks like a sieve. |
| 5647 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5648 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5649 | if (OC.isBrackets) { |
| 5650 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5651 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5652 | if (!AT) { |
| 5653 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5654 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5655 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5656 | } |
| 5657 | |
| 5658 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5659 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5660 | // Promote the array so it looks more like a normal array subscript |
| 5661 | // expression. |
| 5662 | DefaultFunctionArrayConversion(Res); |
| 5663 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5664 | // C99 6.5.2.1p1 |
| 5665 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5666 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5667 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5668 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5669 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5670 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5671 | |
| 5672 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5673 | OC.LocEnd); |
| 5674 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5675 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5676 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5677 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5678 | if (!RC) { |
| 5679 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5680 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5681 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5682 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5683 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5684 | // Get the decl corresponding to this. |
| 5685 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5686 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5687 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5688 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5689 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5690 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5691 | DidWarnAboutNonPOD = true; |
| 5692 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5693 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5694 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5695 | LookupResult R; |
| 5696 | LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName); |
| 5697 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5698 | FieldDecl *MemberDecl |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5699 | = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context)); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5700 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5701 | if (!MemberDecl) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 5702 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 5703 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5704 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5705 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5706 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5707 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5708 | Res = BuildAnonymousStructUnionMemberReference( |
| 5709 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5710 | } else { |
| 5711 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5712 | // doesn't matter here. |
| 5713 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5714 | MemberDecl->getType().getNonReferenceType()); |
| 5715 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5716 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5717 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5718 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5719 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5720 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5721 | } |
| 5722 | |
| 5723 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5724 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5725 | TypeTy *arg1,TypeTy *arg2, |
| 5726 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5727 | // FIXME: Preserve type source info. |
| 5728 | QualType argT1 = GetTypeFromParser(arg1); |
| 5729 | QualType argT2 = GetTypeFromParser(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5730 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5731 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5732 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5733 | if (getLangOptions().CPlusPlus) { |
| 5734 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5735 | << SourceRange(BuiltinLoc, RPLoc); |
| 5736 | return ExprError(); |
| 5737 | } |
| 5738 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5739 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5740 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5741 | } |
| 5742 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5743 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5744 | ExprArg cond, |
| 5745 | ExprArg expr1, ExprArg expr2, |
| 5746 | SourceLocation RPLoc) { |
| 5747 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5748 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5749 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5750 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5751 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5752 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5753 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5754 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5755 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5756 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5757 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5758 | } else { |
| 5759 | // The conditional expression is required to be a constant expression. |
| 5760 | llvm::APSInt condEval(32); |
| 5761 | SourceLocation ExpLoc; |
| 5762 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5763 | return ExprError(Diag(ExpLoc, |
| 5764 | diag::err_typecheck_choose_expr_requires_constant) |
| 5765 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5766 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5767 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5768 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5769 | ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent() |
| 5770 | : RHSExpr->isValueDependent(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5771 | } |
| 5772 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5773 | cond.release(); expr1.release(); expr2.release(); |
| 5774 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5775 | resType, RPLoc, |
| 5776 | resType->isDependentType(), |
| 5777 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5778 | } |
| 5779 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5780 | //===----------------------------------------------------------------------===// |
| 5781 | // Clang Extensions. |
| 5782 | //===----------------------------------------------------------------------===// |
| 5783 | |
| 5784 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5785 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5786 | // Analyze block parameters. |
| 5787 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5788 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5789 | // Add BSI to CurBlock. |
| 5790 | BSI->PrevBlockInfo = CurBlock; |
| 5791 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5792 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5793 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5794 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5795 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | 1d2154c | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 5796 | BSI->hasPrototype = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5797 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5798 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5799 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5800 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5801 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5802 | } |
| 5803 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5804 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5805 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5806 | |
| 5807 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5808 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5809 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5810 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5811 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5812 | if (T->isArrayType()) { |
| 5813 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5814 | diag::err_block_returns_array); |
| 5815 | return; |
| 5816 | } |
| 5817 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5818 | // The parameter list is optional, if there was none, assume (). |
| 5819 | if (!T->isFunctionType()) |
| 5820 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5821 | |
| 5822 | CurBlock->hasPrototype = true; |
| 5823 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5824 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5825 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5826 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5827 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5828 | // FIXME: remove the attribute. |
| 5829 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5830 | QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5831 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5832 | // Do not allow returning a objc interface by-value. |
| 5833 | if (RetTy->isObjCInterfaceType()) { |
| 5834 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5835 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5836 | return; |
| 5837 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5838 | return; |
| 5839 | } |
| 5840 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5841 | // Analyze arguments to block. |
| 5842 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5843 | "Not a function declarator!"); |
| 5844 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5845 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5846 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5847 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5848 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5849 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5850 | // no arguments, not a function that takes a single void argument. |
| 5851 | if (FTI.hasPrototype && |
| 5852 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5853 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5854 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5855 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5856 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5857 | } else if (FTI.hasPrototype) { |
| 5858 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5859 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5860 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5861 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5862 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5863 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5864 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5865 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5866 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5867 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5868 | // If this has an identifier, add it to the scope stack. |
| 5869 | if ((*AI)->getIdentifier()) |
| 5870 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5871 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5872 | // Check for a valid sentinel attribute on this block. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5873 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5874 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5875 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5876 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5877 | // FIXME: remove the attribute. |
| 5878 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5879 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5880 | // Analyze the return type. |
| 5881 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5882 | QualType RetTy = T->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5883 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5884 | // Do not allow returning a objc interface by-value. |
| 5885 | if (RetTy->isObjCInterfaceType()) { |
| 5886 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5887 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5888 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5889 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5890 | } |
| 5891 | |
| 5892 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5893 | /// is invoked to pop the information about the block from the action impl. |
| 5894 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5895 | // Ensure that CurBlock is deleted. |
| 5896 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5897 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5898 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5899 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5900 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5901 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5902 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5903 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5904 | } |
| 5905 | |
| 5906 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5907 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5908 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5909 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5910 | // If blocks are disabled, emit an error. |
| 5911 | if (!LangOpts.Blocks) |
| 5912 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5913 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5914 | // Ensure that CurBlock is deleted. |
| 5915 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5916 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5917 | PopDeclContext(); |
| 5918 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5919 | // Pop off CurBlock, handle nested blocks. |
| 5920 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5921 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5922 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5923 | if (!BSI->ReturnType.isNull()) |
| 5924 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5925 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5926 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 5927 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 5928 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5929 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5930 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5931 | QualType BlockTy; |
| 5932 | if (!BSI->hasPrototype) |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5933 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 5934 | NoReturn); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5935 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5936 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5937 | BSI->isVariadic, 0, false, false, 0, 0, |
| 5938 | NoReturn); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5939 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5940 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 5941 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5942 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5943 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5944 | // If needed, diagnose invalid gotos and switches in the block. |
| 5945 | if (CurFunctionNeedsScopeChecking) |
| 5946 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 5947 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5948 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5949 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 5950 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5951 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 5952 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5953 | } |
| 5954 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5955 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 5956 | ExprArg expr, TypeTy *type, |
| 5957 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5958 | QualType T = GetTypeFromParser(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5959 | Expr *E = static_cast<Expr*>(expr.get()); |
| 5960 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5961 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5962 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5963 | |
| 5964 | // Get the va_list type |
| 5965 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5966 | if (VaListType->isArrayType()) { |
| 5967 | // Deal with implicit array decay; for example, on x86-64, |
| 5968 | // va_list is an array, but it's supposed to decay to |
| 5969 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5970 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5971 | // Make sure the input expression also decays appropriately. |
| 5972 | UsualUnaryConversions(E); |
| 5973 | } else { |
| 5974 | // Otherwise, the va_list argument must be an l-value because |
| 5975 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5976 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5977 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 5978 | return ExprError(); |
| 5979 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 5980 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 5981 | if (!E->isTypeDependent() && |
| 5982 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5983 | return ExprError(Diag(E->getLocStart(), |
| 5984 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 5985 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 5986 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5987 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5988 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5989 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5990 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5991 | expr.release(); |
| 5992 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 5993 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 5994 | } |
| 5995 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5996 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 5997 | // The type of __null will be int or long, depending on the size of |
| 5998 | // pointers on the target. |
| 5999 | QualType Ty; |
| 6000 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 6001 | Ty = Context.IntTy; |
| 6002 | else |
| 6003 | Ty = Context.LongTy; |
| 6004 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6005 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6006 | } |
| 6007 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6008 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 6009 | SourceLocation Loc, |
| 6010 | QualType DstType, QualType SrcType, |
| 6011 | Expr *SrcExpr, const char *Flavor) { |
| 6012 | // Decode the result (notice that AST's are still created for extensions). |
| 6013 | bool isInvalid = false; |
| 6014 | unsigned DiagKind; |
| 6015 | switch (ConvTy) { |
| 6016 | default: assert(0 && "Unknown conversion type"); |
| 6017 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6018 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6019 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 6020 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6021 | case IntToPointer: |
| 6022 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 6023 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6024 | case IncompatiblePointer: |
| 6025 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 6026 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 6027 | case IncompatiblePointerSign: |
| 6028 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 6029 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6030 | case FunctionVoidPointer: |
| 6031 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 6032 | break; |
| 6033 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 6034 | // If the qualifiers lost were because we were applying the |
| 6035 | // (deprecated) C++ conversion from a string literal to a char* |
| 6036 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 6037 | // Ideally, this check would be performed in |
| 6038 | // CheckPointerTypesForAssignment. However, that would require a |
| 6039 | // bit of refactoring (so that the second argument is an |
| 6040 | // expression, rather than a type), which should be done as part |
| 6041 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 6042 | // C++ semantics. |
| 6043 | if (getLangOptions().CPlusPlus && |
| 6044 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 6045 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6046 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 6047 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6048 | case IntToBlockPointer: |
| 6049 | DiagKind = diag::err_int_to_block_pointer; |
| 6050 | break; |
| 6051 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 6052 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6053 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6054 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6055 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6056 | // it can give a more specific diagnostic. |
| 6057 | DiagKind = diag::warn_incompatible_qualified_id; |
| 6058 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 6059 | case IncompatibleVectors: |
| 6060 | DiagKind = diag::warn_incompatible_vectors; |
| 6061 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6062 | case Incompatible: |
| 6063 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 6064 | isInvalid = true; |
| 6065 | break; |
| 6066 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6067 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 6068 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 6069 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6070 | return isInvalid; |
| 6071 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6072 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 6073 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6074 | llvm::APSInt ICEResult; |
| 6075 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 6076 | if (Result) |
| 6077 | *Result = ICEResult; |
| 6078 | return false; |
| 6079 | } |
| 6080 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6081 | Expr::EvalResult EvalResult; |
| 6082 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6083 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6084 | EvalResult.HasSideEffects) { |
| 6085 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 6086 | |
| 6087 | if (EvalResult.Diag) { |
| 6088 | // We only show the note if it's not the usual "invalid subexpression" |
| 6089 | // or if it's actually in a subexpression. |
| 6090 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 6091 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 6092 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 6093 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6094 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6095 | return true; |
| 6096 | } |
| 6097 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6098 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 6099 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6100 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6101 | if (EvalResult.Diag && |
| 6102 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 6103 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6104 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6105 | if (Result) |
| 6106 | *Result = EvalResult.Val.getInt(); |
| 6107 | return false; |
| 6108 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6109 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6110 | Sema::ExpressionEvaluationContext |
| 6111 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6112 | // Introduce a new set of potentially referenced declarations to the stack. |
| 6113 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 6114 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6115 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6116 | std::swap(ExprEvalContext, NewContext); |
| 6117 | return NewContext; |
| 6118 | } |
| 6119 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6120 | void |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6121 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 6122 | ExpressionEvaluationContext NewContext) { |
| 6123 | ExprEvalContext = NewContext; |
| 6124 | |
| 6125 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 6126 | // Mark any remaining declarations in the current position of the stack |
| 6127 | // as "referenced". If they were not meant to be referenced, semantic |
| 6128 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 6129 | PotentiallyReferencedDecls RemainingDecls; |
| 6130 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 6131 | PotentiallyReferencedDeclStack.pop_back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6132 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6133 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 6134 | IEnd = RemainingDecls.end(); |
| 6135 | I != IEnd; ++I) |
| 6136 | MarkDeclarationReferenced(I->first, I->second); |
| 6137 | } |
| 6138 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6139 | |
| 6140 | /// \brief Note that the given declaration was referenced in the source code. |
| 6141 | /// |
| 6142 | /// This routine should be invoke whenever a given declaration is referenced |
| 6143 | /// in the source code, and where that reference occurred. If this declaration |
| 6144 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 6145 | /// C99 6.9p3), then the declaration will be marked as used. |
| 6146 | /// |
| 6147 | /// \param Loc the location where the declaration was referenced. |
| 6148 | /// |
| 6149 | /// \param D the declaration that has been referenced by the source code. |
| 6150 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 6151 | assert(D && "No declaration?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6152 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6153 | if (D->isUsed()) |
| 6154 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6155 | |
Douglas Gregor | b5352cf | 2009-10-08 21:35:42 +0000 | [diff] [blame] | 6156 | // Mark a parameter or variable declaration "used", regardless of whether we're in a |
| 6157 | // template or not. The reason for this is that unevaluated expressions |
| 6158 | // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and |
| 6159 | // -Wunused-parameters) |
| 6160 | if (isa<ParmVarDecl>(D) || |
| 6161 | (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6162 | D->setUsed(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6163 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6164 | // Do not mark anything as "used" within a dependent context; wait for |
| 6165 | // an instantiation. |
| 6166 | if (CurContext->isDependentContext()) |
| 6167 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6168 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6169 | switch (ExprEvalContext) { |
| 6170 | case Unevaluated: |
| 6171 | // We are in an expression that is not potentially evaluated; do nothing. |
| 6172 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6173 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6174 | case PotentiallyEvaluated: |
| 6175 | // We are in a potentially-evaluated expression, so this declaration is |
| 6176 | // "used"; handle this below. |
| 6177 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6178 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6179 | case PotentiallyPotentiallyEvaluated: |
| 6180 | // We are in an expression that may be potentially evaluated; queue this |
| 6181 | // declaration reference until we know whether the expression is |
| 6182 | // potentially evaluated. |
| 6183 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 6184 | return; |
| 6185 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6186 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6187 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 6188 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6189 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 6190 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 6191 | if (!Constructor->isUsed()) |
| 6192 | DefineImplicitDefaultConstructor(Loc, Constructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6193 | } else if (Constructor->isImplicit() && |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 6194 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6195 | if (!Constructor->isUsed()) |
| 6196 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 6197 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 6198 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 6199 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 6200 | DefineImplicitDestructor(Loc, Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6201 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 6202 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 6203 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 6204 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 6205 | if (!MethodDecl->isUsed()) |
| 6206 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 6207 | } |
| 6208 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 6209 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6210 | // Implicit instantiation of function templates and member functions of |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 6211 | // class templates. |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6212 | if (!Function->getBody() && |
| 6213 | Function->getTemplateSpecializationKind() |
| 6214 | == TSK_ImplicitInstantiation) { |
| 6215 | bool AlreadyInstantiated = false; |
| 6216 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 6217 | = Function->getTemplateSpecializationInfo()) { |
| 6218 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 6219 | SpecInfo->setPointOfInstantiation(Loc); |
| 6220 | else |
| 6221 | AlreadyInstantiated = true; |
| 6222 | } else if (MemberSpecializationInfo *MSInfo |
| 6223 | = Function->getMemberSpecializationInfo()) { |
| 6224 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
| 6225 | MSInfo->setPointOfInstantiation(Loc); |
| 6226 | else |
| 6227 | AlreadyInstantiated = true; |
| 6228 | } |
| 6229 | |
| 6230 | if (!AlreadyInstantiated) |
| 6231 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
| 6232 | } |
| 6233 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6234 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6235 | Function->setUsed(true); |
| 6236 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6237 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6238 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6239 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6240 | // Implicit instantiation of static data members of class templates. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6241 | if (Var->isStaticDataMember() && |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6242 | Var->getInstantiatedFromStaticDataMember()) { |
| 6243 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 6244 | assert(MSInfo && "Missing member specialization information?"); |
| 6245 | if (MSInfo->getPointOfInstantiation().isInvalid() && |
| 6246 | MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { |
| 6247 | MSInfo->setPointOfInstantiation(Loc); |
| 6248 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 6249 | } |
| 6250 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6251 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6252 | // FIXME: keep track of references to static data? |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6253 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6254 | D->setUsed(true); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6255 | return; |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 6256 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6257 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 6258 | |
| 6259 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 6260 | CallExpr *CE, FunctionDecl *FD) { |
| 6261 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 6262 | return false; |
| 6263 | |
| 6264 | PartialDiagnostic Note = |
| 6265 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 6266 | << FD->getDeclName() : PDiag(); |
| 6267 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
| 6268 | |
| 6269 | if (RequireCompleteType(Loc, ReturnType, |
| 6270 | FD ? |
| 6271 | PDiag(diag::err_call_function_incomplete_return) |
| 6272 | << CE->getSourceRange() << FD->getDeclName() : |
| 6273 | PDiag(diag::err_call_incomplete_return) |
| 6274 | << CE->getSourceRange(), |
| 6275 | std::make_pair(NoteLoc, Note))) |
| 6276 | return true; |
| 6277 | |
| 6278 | return false; |
| 6279 | } |
| 6280 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6281 | // Diagnose the common s/=/==/ typo. Note that adding parentheses |
| 6282 | // will prevent this condition from triggering, which is what we want. |
| 6283 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 6284 | SourceLocation Loc; |
| 6285 | |
| 6286 | if (isa<BinaryOperator>(E)) { |
| 6287 | BinaryOperator *Op = cast<BinaryOperator>(E); |
| 6288 | if (Op->getOpcode() != BinaryOperator::Assign) |
| 6289 | return; |
| 6290 | |
| 6291 | Loc = Op->getOperatorLoc(); |
| 6292 | } else if (isa<CXXOperatorCallExpr>(E)) { |
| 6293 | CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E); |
| 6294 | if (Op->getOperator() != OO_Equal) |
| 6295 | return; |
| 6296 | |
| 6297 | Loc = Op->getOperatorLoc(); |
| 6298 | } else { |
| 6299 | // Not an assignment. |
| 6300 | return; |
| 6301 | } |
| 6302 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6303 | SourceLocation Open = E->getSourceRange().getBegin(); |
John McCall | 2d15215 | 2009-10-12 22:25:59 +0000 | [diff] [blame] | 6304 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6305 | |
| 6306 | Diag(Loc, diag::warn_condition_is_assignment) |
| 6307 | << E->getSourceRange() |
| 6308 | << CodeModificationHint::CreateInsertion(Open, "(") |
| 6309 | << CodeModificationHint::CreateInsertion(Close, ")"); |
| 6310 | } |
| 6311 | |
| 6312 | bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) { |
| 6313 | DiagnoseAssignmentAsCondition(E); |
| 6314 | |
| 6315 | if (!E->isTypeDependent()) { |
| 6316 | DefaultFunctionArrayConversion(E); |
| 6317 | |
| 6318 | QualType T = E->getType(); |
| 6319 | |
| 6320 | if (getLangOptions().CPlusPlus) { |
| 6321 | if (CheckCXXBooleanCondition(E)) // C++ 6.4p4 |
| 6322 | return true; |
| 6323 | } else if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 6324 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 6325 | << T << E->getSourceRange(); |
| 6326 | return true; |
| 6327 | } |
| 6328 | } |
| 6329 | |
| 6330 | return false; |
| 6331 | } |