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" |
John McCall | 7d384dd | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 15 | #include "Lookup.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 19 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 20 | #include "clang/AST/ExprObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 21 | #include "clang/Basic/PartialDiagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 24 | #include "clang/Lex/LiteralSupport.h" |
| 25 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 26 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 27 | #include "clang/Parse/Designator.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 28 | #include "clang/Parse/Scope.h" |
Douglas Gregor | 314b97f | 2009-11-10 19:49:08 +0000 | [diff] [blame] | 29 | #include "clang/Parse/Template.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 30 | using namespace clang; |
| 31 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 32 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 33 | /// \brief Determine whether the use of this declaration is valid, and |
| 34 | /// emit any corresponding diagnostics. |
| 35 | /// |
| 36 | /// This routine diagnoses various problems with referencing |
| 37 | /// declarations that can occur when using a declaration. For example, |
| 38 | /// it might warn if a deprecated or unavailable declaration is being |
| 39 | /// used, or produce an error (and return true) if a C++0x deleted |
| 40 | /// function is being used. |
| 41 | /// |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 42 | /// If IgnoreDeprecated is set to true, this should not want about deprecated |
| 43 | /// decls. |
| 44 | /// |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 45 | /// \returns true if there was an error (this declaration cannot be |
| 46 | /// referenced), false otherwise. |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 47 | /// |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 48 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 49 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 50 | if (D->getAttr<DeprecatedAttr>()) { |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 51 | EmitDeprecationWarning(D, Loc); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Chris Lattner | ffb9368 | 2009-10-25 17:21:40 +0000 | [diff] [blame] | 54 | // See if the decl is unavailable |
| 55 | if (D->getAttr<UnavailableAttr>()) { |
| 56 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
| 57 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 58 | } |
| 59 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 60 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 61 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 62 | if (FD->isDeleted()) { |
| 63 | Diag(Loc, diag::err_deleted_function_use); |
| 64 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 65 | return true; |
| 66 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 67 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 68 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 69 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 70 | } |
| 71 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 72 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | /// (and other functions in future), which have been declared with sentinel |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 74 | /// attribute. It warns if call does not have the sentinel argument. |
| 75 | /// |
| 76 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 77 | Expr **Args, unsigned NumArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 78 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 79 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 80 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 81 | int sentinelPos = attr->getSentinel(); |
| 82 | int nullPos = attr->getNullPos(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 83 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 84 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 85 | // 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] | 86 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 87 | bool warnNotEnoughArgs = false; |
| 88 | int isMethod = 0; |
| 89 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 90 | // skip over named parameters. |
| 91 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 92 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 93 | if (nullPos) |
| 94 | --nullPos; |
| 95 | else |
| 96 | ++i; |
| 97 | } |
| 98 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 99 | isMethod = 1; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 100 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 101 | // skip over named parameters. |
| 102 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 103 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 104 | if (nullPos) |
| 105 | --nullPos; |
| 106 | else |
| 107 | ++i; |
| 108 | } |
| 109 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 110 | } else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 111 | // block or function pointer call. |
| 112 | QualType Ty = V->getType(); |
| 113 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 114 | const FunctionType *FT = Ty->isFunctionPointerType() |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 115 | ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>() |
| 116 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 117 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 118 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 119 | unsigned k; |
| 120 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 121 | if (nullPos) |
| 122 | --nullPos; |
| 123 | else |
| 124 | ++i; |
| 125 | } |
| 126 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 127 | } |
| 128 | if (Ty->isBlockPointerType()) |
| 129 | isMethod = 2; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 130 | } else |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 131 | return; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 132 | } else |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 133 | return; |
| 134 | |
| 135 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 136 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 137 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 138 | return; |
| 139 | } |
| 140 | int sentinel = i; |
| 141 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 142 | --sentinelPos; |
| 143 | ++i; |
| 144 | } |
| 145 | if (sentinelPos > 0) { |
| 146 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 147 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 148 | return; |
| 149 | } |
| 150 | while (i < NumArgs-1) { |
| 151 | ++i; |
| 152 | ++sentinel; |
| 153 | } |
| 154 | Expr *sentinelExpr = Args[sentinel]; |
| 155 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 156 | !sentinelExpr->isNullPointerConstant(Context, |
| 157 | Expr::NPC_ValueDependentIsNull))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 158 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 159 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 160 | } |
| 161 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 164 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 165 | Expr *Ex = (Expr *)E; |
| 166 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 167 | } |
| 168 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 169 | //===----------------------------------------------------------------------===// |
| 170 | // Standard Promotions and Conversions |
| 171 | //===----------------------------------------------------------------------===// |
| 172 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 173 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 174 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 175 | QualType Ty = E->getType(); |
| 176 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 177 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 178 | if (Ty->isFunctionType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 179 | ImpCastExprToType(E, Context.getPointerType(Ty), |
Anders Carlsson | b633c4e | 2009-09-01 20:37:18 +0000 | [diff] [blame] | 180 | CastExpr::CK_FunctionToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 181 | else if (Ty->isArrayType()) { |
| 182 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 183 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 184 | // type 'array of type' is converted to an expression that has type 'pointer |
| 185 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 186 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 187 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 188 | // |
| 189 | // C++ 4.2p1: |
| 190 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 191 | // T" can be converted to an rvalue of type "pointer to T". |
| 192 | // |
| 193 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 194 | E->isLvalue(Context) == Expr::LV_Valid) |
Anders Carlsson | 112a0a8 | 2009-08-07 23:48:20 +0000 | [diff] [blame] | 195 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 196 | CastExpr::CK_ArrayToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 197 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 201 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 202 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 203 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 204 | /// In these instances, this routine should *not* be called. |
| 205 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 206 | QualType Ty = Expr->getType(); |
| 207 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 208 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 209 | // C99 6.3.1.1p2: |
| 210 | // |
| 211 | // The following may be used in an expression wherever an int or |
| 212 | // unsigned int may be used: |
| 213 | // - an object or expression with an integer type whose integer |
| 214 | // conversion rank is less than or equal to the rank of int |
| 215 | // and unsigned int. |
| 216 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 217 | // |
| 218 | // If an int can represent all values of the original type, the |
| 219 | // value is converted to an int; otherwise, it is converted to an |
| 220 | // unsigned int. These are called the integer promotions. All |
| 221 | // other types are unchanged by the integer promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 222 | QualType PTy = Context.isPromotableBitField(Expr); |
| 223 | if (!PTy.isNull()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 224 | ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast); |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 225 | return Expr; |
| 226 | } |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 227 | if (Ty->isPromotableIntegerType()) { |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 228 | QualType PT = Context.getPromotedIntegerType(Ty); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 229 | ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 230 | return Expr; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 233 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 234 | return Expr; |
| 235 | } |
| 236 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 237 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 238 | /// 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] | 239 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 240 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 241 | QualType Ty = Expr->getType(); |
| 242 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 243 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 244 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 245 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 246 | if (BT->getKind() == BuiltinType::Float) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 247 | return ImpCastExprToType(Expr, Context.DoubleTy, |
| 248 | CastExpr::CK_FloatingCast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 249 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 250 | UsualUnaryConversions(Expr); |
| 251 | } |
| 252 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 253 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 254 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 255 | /// interfaces passed by value. This returns true if the argument type is |
| 256 | /// completely illegal. |
| 257 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 258 | DefaultArgumentPromotion(Expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 259 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 260 | if (Expr->getType()->isObjCInterfaceType()) { |
| 261 | Diag(Expr->getLocStart(), |
| 262 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 263 | << Expr->getType() << CT; |
| 264 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 265 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 266 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 267 | if (!Expr->getType()->isPODType()) |
| 268 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 269 | << Expr->getType() << CT; |
| 270 | |
| 271 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 275 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 276 | /// 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] | 277 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 278 | /// responsible for emitting appropriate error diagnostics. |
| 279 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 280 | /// GCC. |
| 281 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 282 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 283 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 284 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 285 | |
| 286 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 287 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 288 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 289 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 290 | QualType lhs = |
| 291 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 292 | QualType rhs = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 293 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 294 | |
| 295 | // If both types are identical, no conversion is needed. |
| 296 | if (lhs == rhs) |
| 297 | return lhs; |
| 298 | |
| 299 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 300 | // The caller can deal with this (e.g. pointer + int). |
| 301 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 302 | return lhs; |
| 303 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 304 | // Perform bitfield promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 305 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 306 | if (!LHSBitfieldPromoteTy.isNull()) |
| 307 | lhs = LHSBitfieldPromoteTy; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 308 | QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 309 | if (!RHSBitfieldPromoteTy.isNull()) |
| 310 | rhs = RHSBitfieldPromoteTy; |
| 311 | |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 312 | QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 313 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 314 | ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown); |
| 315 | ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 316 | return destType; |
| 317 | } |
| 318 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 319 | //===----------------------------------------------------------------------===// |
| 320 | // Semantic Analysis for various Expression Types |
| 321 | //===----------------------------------------------------------------------===// |
| 322 | |
| 323 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 324 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 325 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 326 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 327 | /// multiple tokens. However, the common case is that StringToks points to one |
| 328 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 329 | /// |
| 330 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 331 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 332 | assert(NumStringToks && "Must have at least one string!"); |
| 333 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 334 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 335 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 336 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 337 | |
| 338 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 339 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 340 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 341 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 342 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 343 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 344 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 345 | |
| 346 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 347 | if (getLangOptions().CPlusPlus) |
| 348 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 349 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 350 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 351 | // the nul terminator character as well as the string length for pascal |
| 352 | // strings. |
| 353 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 354 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 355 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 356 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 357 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 358 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 359 | Literal.GetStringLength(), |
| 360 | Literal.AnyWide, StrTy, |
| 361 | &StringTokLocs[0], |
| 362 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 363 | } |
| 364 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 365 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 366 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 367 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 368 | /// for values inside the block or for globals). |
| 369 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 370 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 371 | /// up-to-date. |
| 372 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 373 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 374 | ValueDecl *VD) { |
| 375 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 376 | // we wanted to. |
| 377 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 378 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 379 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 380 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 381 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 382 | return false; |
| 383 | |
| 384 | // If this is a reference to an extern, static, or global variable, no need to |
| 385 | // snapshot it. |
| 386 | // FIXME: What about 'const' variables in C++? |
| 387 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 388 | if (!Var->hasLocalStorage()) |
| 389 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 390 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 391 | // Blocks that have these can't be constant. |
| 392 | CurBlock->hasBlockDeclRefExprs = true; |
| 393 | |
| 394 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 395 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 396 | // be defined outside all of the current blocks (in which case the blocks do |
| 397 | // all get the bit). Walk the nesting chain. |
| 398 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 399 | NextBlock = NextBlock->PrevBlockInfo) { |
| 400 | // If we found the defining block for the variable, don't mark the block as |
| 401 | // having a reference outside it. |
| 402 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 403 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 404 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 405 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 406 | // a snapshot as well. |
| 407 | NextBlock->hasBlockDeclRefExprs = true; |
| 408 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 409 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 410 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 411 | } |
| 412 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 413 | |
| 414 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 415 | /// BuildDeclRefExpr - Build a DeclRefExpr. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 416 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 417 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 418 | const CXXScopeSpec *SS) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 419 | assert(!isa<OverloadedFunctionDecl>(D)); |
| 420 | |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 421 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 422 | Diag(Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 423 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 424 | << D->getDeclName(); |
| 425 | return ExprError(); |
| 426 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 427 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 428 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 429 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 430 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 431 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 432 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 433 | << D->getIdentifier() << FD->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 434 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 435 | << D->getIdentifier(); |
| 436 | return ExprError(); |
| 437 | } |
| 438 | } |
| 439 | } |
| 440 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 441 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 442 | MarkDeclarationReferenced(Loc, D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 443 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 444 | return Owned(DeclRefExpr::Create(Context, |
| 445 | SS? (NestedNameSpecifier *)SS->getScopeRep() : 0, |
| 446 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 447 | D, Loc, Ty)); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 448 | } |
| 449 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 450 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 451 | /// variable corresponding to the anonymous union or struct whose type |
| 452 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 453 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 454 | RecordDecl *Record) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 455 | assert(Record->isAnonymousStructOrUnion() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 456 | "Record must be an anonymous struct or union!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 457 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 458 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 459 | // operation rather than a slow walk through DeclContext's vector (which |
| 460 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 461 | DeclContext *Ctx = Record->getDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 462 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 463 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 464 | D != DEnd; ++D) { |
| 465 | if (*D == Record) { |
| 466 | // The object for the anonymous struct/union directly |
| 467 | // follows its type in the list of declarations. |
| 468 | ++D; |
| 469 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 470 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 471 | return *D; |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | assert(false && "Missing object for anonymous record"); |
| 476 | return 0; |
| 477 | } |
| 478 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 479 | /// \brief Given a field that represents a member of an anonymous |
| 480 | /// struct/union, build the path from that field's context to the |
| 481 | /// actual member. |
| 482 | /// |
| 483 | /// Construct the sequence of field member references we'll have to |
| 484 | /// perform to get to the field in the anonymous union/struct. The |
| 485 | /// list of members is built from the field outward, so traverse it |
| 486 | /// backwards to go from an object in the current context to the field |
| 487 | /// we found. |
| 488 | /// |
| 489 | /// \returns The variable from which the field access should begin, |
| 490 | /// for an anonymous struct/union that is not a member of another |
| 491 | /// class. Otherwise, returns NULL. |
| 492 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 493 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 494 | assert(Field->getDeclContext()->isRecord() && |
| 495 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 496 | && "Field must be stored inside an anonymous struct or union"); |
| 497 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 498 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 499 | VarDecl *BaseObject = 0; |
| 500 | DeclContext *Ctx = Field->getDeclContext(); |
| 501 | do { |
| 502 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 503 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 504 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 505 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 506 | else { |
| 507 | BaseObject = cast<VarDecl>(AnonObject); |
| 508 | break; |
| 509 | } |
| 510 | Ctx = Ctx->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 511 | } while (Ctx->isRecord() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 512 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 513 | |
| 514 | return BaseObject; |
| 515 | } |
| 516 | |
| 517 | Sema::OwningExprResult |
| 518 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 519 | FieldDecl *Field, |
| 520 | Expr *BaseObjectExpr, |
| 521 | SourceLocation OpLoc) { |
| 522 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 523 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 524 | AnonFields); |
| 525 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 526 | // Build the expression that refers to the base object, from |
| 527 | // which we will build a sequence of member references to each |
| 528 | // of the anonymous union objects and, eventually, the field we |
| 529 | // found via name lookup. |
| 530 | bool BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 531 | Qualifiers BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 532 | if (BaseObject) { |
| 533 | // BaseObject is an anonymous struct/union variable (and is, |
| 534 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 535 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 536 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 537 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 538 | SourceLocation()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 539 | BaseQuals |
| 540 | = Context.getCanonicalType(BaseObject->getType()).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 541 | } else if (BaseObjectExpr) { |
| 542 | // The caller provided the base object expression. Determine |
| 543 | // whether its a pointer and whether it adds any qualifiers to the |
| 544 | // anonymous struct/union fields we're looking into. |
| 545 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 546 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 547 | BaseObjectIsPointer = true; |
| 548 | ObjectType = ObjectPtr->getPointeeType(); |
| 549 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 550 | BaseQuals |
| 551 | = Context.getCanonicalType(ObjectType).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 552 | } else { |
| 553 | // We've found a member of an anonymous struct/union that is |
| 554 | // inside a non-anonymous struct/union, so in a well-formed |
| 555 | // program our base object expression is "this". |
| 556 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 557 | if (!MD->isStatic()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 558 | QualType AnonFieldType |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 559 | = Context.getTagDeclType( |
| 560 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 561 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 562 | if ((Context.getCanonicalType(AnonFieldType) |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 563 | == Context.getCanonicalType(ThisType)) || |
| 564 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 565 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 566 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 567 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 568 | BaseObjectIsPointer = true; |
| 569 | } |
| 570 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 571 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 572 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 573 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 574 | BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 577 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 578 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 579 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 580 | } |
| 581 | |
| 582 | // Build the implicit member references to the field of the |
| 583 | // anonymous struct/union. |
| 584 | Expr *Result = BaseObjectExpr; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 585 | Qualifiers ResultQuals = BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 586 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 587 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 588 | FI != FIEnd; ++FI) { |
| 589 | QualType MemberType = (*FI)->getType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 590 | Qualifiers MemberTypeQuals = |
| 591 | Context.getCanonicalType(MemberType).getQualifiers(); |
| 592 | |
| 593 | // CVR attributes from the base are picked up by members, |
| 594 | // except that 'mutable' members don't pick up 'const'. |
| 595 | if ((*FI)->isMutable()) |
| 596 | ResultQuals.removeConst(); |
| 597 | |
| 598 | // GC attributes are never picked up by members. |
| 599 | ResultQuals.removeObjCGCAttr(); |
| 600 | |
| 601 | // TR 18037 does not allow fields to be declared with address spaces. |
| 602 | assert(!MemberTypeQuals.hasAddressSpace()); |
| 603 | |
| 604 | Qualifiers NewQuals = ResultQuals + MemberTypeQuals; |
| 605 | if (NewQuals != MemberTypeQuals) |
| 606 | MemberType = Context.getQualifiedType(MemberType, NewQuals); |
| 607 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 608 | MarkDeclarationReferenced(Loc, *FI); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 609 | // FIXME: Might this end up being a qualified name? |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 610 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 611 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 612 | BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 613 | ResultQuals = NewQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 614 | } |
| 615 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 616 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 617 | } |
| 618 | |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 619 | Sema::OwningExprResult Sema::ActOnIdExpression(Scope *S, |
| 620 | const CXXScopeSpec &SS, |
| 621 | UnqualifiedId &Name, |
| 622 | bool HasTrailingLParen, |
| 623 | bool IsAddressOfOperand) { |
John McCall | b681b61 | 2009-11-22 02:49:43 +0000 | [diff] [blame] | 624 | assert(!(IsAddressOfOperand && HasTrailingLParen) && |
| 625 | "cannot be direct & operand and have a trailing lparen"); |
| 626 | |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 627 | if (Name.getKind() == UnqualifiedId::IK_TemplateId) { |
| 628 | ASTTemplateArgsPtr TemplateArgsPtr(*this, |
| 629 | Name.TemplateId->getTemplateArgs(), |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 630 | Name.TemplateId->NumArgs); |
| 631 | return ActOnTemplateIdExpr(SS, |
| 632 | TemplateTy::make(Name.TemplateId->Template), |
| 633 | Name.TemplateId->TemplateNameLoc, |
| 634 | Name.TemplateId->LAngleLoc, |
| 635 | TemplateArgsPtr, |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 636 | Name.TemplateId->RAngleLoc); |
| 637 | } |
| 638 | |
| 639 | // FIXME: We lose a bunch of source information by doing this. Later, |
| 640 | // we'll want to merge ActOnDeclarationNameExpr's logic into |
| 641 | // ActOnIdExpression. |
| 642 | return ActOnDeclarationNameExpr(S, |
| 643 | Name.StartLocation, |
| 644 | GetNameFromUnqualifiedId(Name), |
| 645 | HasTrailingLParen, |
| 646 | &SS, |
| 647 | IsAddressOfOperand); |
| 648 | } |
| 649 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 650 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 651 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 652 | /// performs lookup on that name and returns an expression that refers |
| 653 | /// to that name. This routine isn't directly called from the parser, |
| 654 | /// because the parser doesn't know about DeclarationName. Rather, |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 655 | /// this routine is called by ActOnIdExpression, which contains a |
| 656 | /// parsed UnqualifiedId. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 657 | /// |
| 658 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 659 | /// function call context. LookupCtx is only used for a C++ |
| 660 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 661 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 662 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 663 | /// isAddressOfOperand means that this expression is the direct operand |
| 664 | /// of an address-of operator. This matters because this is the only |
| 665 | /// situation where a qualified name referencing a non-static member may |
| 666 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 667 | Sema::OwningExprResult |
| 668 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 669 | DeclarationName Name, bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 670 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 671 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 672 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 673 | if (SS && SS->isInvalid()) |
| 674 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 675 | |
Douglas Gregor | ac564f3 | 2009-11-23 12:39:54 +0000 | [diff] [blame] | 676 | // Determine whether this is a member of an unknown specialization. |
| 677 | if (SS && SS->isSet() && !computeDeclContext(*SS, false)) { |
John McCall | 865d447 | 2009-11-19 22:55:06 +0000 | [diff] [blame] | 678 | return Owned(new (Context) DependentScopeDeclRefExpr(Name, Context.DependentTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | Loc, SS->getRange(), |
Anders Carlsson | 9b31df4 | 2009-07-09 00:05:08 +0000 | [diff] [blame] | 680 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()), |
| 681 | isAddressOfOperand)); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 682 | } |
| 683 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 684 | LookupResult Lookup(*this, Name, Loc, LookupOrdinaryName); |
| 685 | LookupParsedName(Lookup, S, SS, true); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 686 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 687 | if (Lookup.isAmbiguous()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 688 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 689 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 690 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 691 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 692 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 693 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 694 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 695 | // 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] | 696 | // found a decl, but that decl is outside the current instance method (i.e. |
| 697 | // 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] | 698 | // this name, if the lookup sucedes, we replace it our current decl. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 699 | |
| 700 | // FIXME: we should change lookup to do this. |
| 701 | |
| 702 | // If we're in a class method, we don't normally want to look for |
| 703 | // ivars. But if we don't find anything else, and there's an |
| 704 | // ivar, that's an error. |
| 705 | bool IsClassMethod = getCurMethodDecl()->isClassMethod(); |
| 706 | |
| 707 | bool LookForIvars; |
| 708 | if (Lookup.empty()) |
| 709 | LookForIvars = true; |
| 710 | else if (IsClassMethod) |
| 711 | LookForIvars = false; |
| 712 | else |
| 713 | LookForIvars = (Lookup.isSingleResult() && |
| 714 | Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()); |
| 715 | |
| 716 | if (LookForIvars) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 717 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 718 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 719 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 720 | // Diagnose using an ivar in a class method. |
| 721 | if (IsClassMethod) |
| 722 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 723 | << IV->getDeclName()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 724 | |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 725 | // If we're referencing an invalid decl, just return this as a silent |
| 726 | // error node. The error diagnostic was already emitted on the decl. |
| 727 | if (IV->isInvalidDecl()) |
| 728 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 729 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 730 | // Check if referencing a field with __attribute__((deprecated)). |
| 731 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 732 | return ExprError(); |
| 733 | |
| 734 | // Diagnose the use of an ivar outside of the declaring class. |
| 735 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 736 | ClassDeclared != IFace) |
| 737 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
| 738 | |
| 739 | // FIXME: This should use a new expr for a direct reference, don't |
| 740 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
| 741 | IdentifierInfo &II = Context.Idents.get("self"); |
| 742 | UnqualifiedId SelfName; |
| 743 | SelfName.setIdentifier(&II, SourceLocation()); |
| 744 | CXXScopeSpec SelfScopeSpec; |
| 745 | OwningExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, |
| 746 | SelfName, false, false); |
| 747 | MarkDeclarationReferenced(Loc, IV); |
| 748 | return Owned(new (Context) |
| 749 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
| 750 | SelfExpr.takeAs<Expr>(), true, true)); |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 751 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 752 | } else if (getCurMethodDecl()->isInstanceMethod()) { |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 753 | // We should warn if a local variable hides an ivar. |
| 754 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 755 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 756 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 757 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 758 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 759 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 760 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 761 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 762 | // Needed to implement property "super.method" notation. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 763 | if (Lookup.empty() && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 764 | QualType T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 765 | |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 766 | if (getCurMethodDecl()->isInstanceMethod()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 767 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 768 | getCurMethodDecl()->getClassInterface())); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 769 | else |
| 770 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 771 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 772 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 773 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 774 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 775 | // Determine whether this name might be a candidate for |
| 776 | // argument-dependent lookup. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 777 | bool ADL = UseArgumentDependentLookup(SS, Lookup, HasTrailingLParen); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 778 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 779 | if (Lookup.empty() && !ADL) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 780 | // Otherwise, this could be an implicitly declared function reference (legal |
| 781 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 782 | if (HasTrailingLParen && II && |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 783 | !getLangOptions().CPlusPlus) { // Not in C++. |
| 784 | NamedDecl *D = ImplicitlyDefineFunction(Loc, *II, S); |
| 785 | if (D) Lookup.addDecl(D); |
| 786 | } else { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 787 | // If this name wasn't predeclared and if this is not a function call, |
| 788 | // diagnose the problem. |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 789 | if (SS && !SS->isEmpty()) |
| 790 | return ExprError(Diag(Loc, diag::err_no_member) |
| 791 | << Name << computeDeclContext(*SS, false) |
| 792 | << SS->getRange()); |
| 793 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 794 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 795 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 796 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 797 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 798 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 799 | } |
| 800 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 801 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 802 | if (VarDecl *Var = Lookup.getAsSingle<VarDecl>()) { |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 803 | // Warn about constructs like: |
| 804 | // if (void *X = foo()) { ... } else { X }. |
| 805 | // In the else block, the pointer is always false. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 806 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 807 | // FIXME: In a template instantiation, we don't have scope |
| 808 | // information to check this property. |
| 809 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 810 | Scope *CheckS = S; |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 811 | while (CheckS && CheckS->getControlParent()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 812 | if (CheckS->isWithinElse() && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 813 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 814 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 815 | << Var->getDeclName() |
| 816 | << (Var->getType()->isPointerType()? 2 : |
| 817 | Var->getType()->isBooleanType()? 1 : 0)); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 818 | break; |
| 819 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 820 | |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 821 | // Move to the parent of this scope. |
| 822 | CheckS = CheckS->getParent(); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 823 | } |
| 824 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 825 | } else if (FunctionDecl *Func = Lookup.getAsSingle<FunctionDecl>()) { |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 826 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 827 | // C99 DR 316 says that, if a function type comes from a |
| 828 | // function definition (without a prototype), that type is only |
| 829 | // used for checking compatibility. Therefore, when referencing |
| 830 | // the function, we pretend that we don't have the full function |
| 831 | // type. |
| 832 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 833 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 834 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 835 | QualType T = Func->getType(); |
| 836 | QualType NoProtoType = T; |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 837 | if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>()) |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 838 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 839 | return BuildDeclRefExpr(Func, NoProtoType, Loc, SS); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 840 | } |
| 841 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 842 | |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 843 | // &SomeClass::foo is an abstract member reference, regardless of |
| 844 | // the nature of foo, but &SomeClass::foo(...) is not. If this is |
| 845 | // *not* an abstract member reference, and any of the results is a |
| 846 | // class member (which necessarily means they're all class members), |
| 847 | // then we make an implicit member reference instead. |
| 848 | // |
| 849 | // This check considers all the same information as the "needs ADL" |
| 850 | // check, but there's no simple logical relationship other than the |
| 851 | // fact that they can never be simultaneously true. We could |
| 852 | // calculate them both in one pass if that proves important for |
| 853 | // performance. |
| 854 | if (!ADL) { |
| 855 | bool isAbstractMemberPointer = |
John McCall | b681b61 | 2009-11-22 02:49:43 +0000 | [diff] [blame] | 856 | (isAddressOfOperand && SS && !SS->isEmpty()); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 857 | |
| 858 | if (!isAbstractMemberPointer && !Lookup.empty() && |
| 859 | isa<CXXRecordDecl>((*Lookup.begin())->getDeclContext())) { |
| 860 | return BuildImplicitMemberReferenceExpr(SS, Lookup); |
| 861 | } |
| 862 | } |
| 863 | |
| 864 | assert(Lookup.getResultKind() != LookupResult::FoundUnresolvedValue && |
| 865 | "found UnresolvedUsingValueDecl in non-class scope"); |
| 866 | |
| 867 | return BuildDeclarationNameExpr(SS, Lookup, ADL); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 868 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 869 | |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 870 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 871 | bool |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 872 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 873 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 874 | if (CXXRecordDecl *RD = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 875 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 876 | QualType DestType = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 877 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 878 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 879 | return false; |
| 880 | QualType FromRecordType = From->getType(); |
| 881 | QualType DestRecordType = DestType; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 882 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 883 | DestType = Context.getPointerType(DestType); |
| 884 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 885 | } |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 886 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 887 | CheckDerivedToBaseConversion(FromRecordType, |
| 888 | DestRecordType, |
| 889 | From->getSourceRange().getBegin(), |
| 890 | From->getSourceRange())) |
| 891 | return true; |
Anders Carlsson | 3503d04 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 892 | ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, |
| 893 | /*isLvalue=*/true); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 894 | } |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 895 | return false; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 896 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 897 | |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 898 | /// \brief Build a MemberExpr AST node. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 899 | static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow, |
| 900 | const CXXScopeSpec *SS, NamedDecl *Member, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 901 | SourceLocation Loc, QualType Ty) { |
| 902 | if (SS && SS->isSet()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 903 | return MemberExpr::Create(C, Base, isArrow, |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 904 | (NestedNameSpecifier *)SS->getScopeRep(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 905 | SS->getRange(), Member, Loc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 906 | // FIXME: Explicit template argument lists |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 907 | 0, Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 908 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 909 | return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty); |
| 910 | } |
| 911 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 912 | /// Builds an implicit member access expression from the given |
| 913 | /// unqualified lookup set, which is known to contain only class |
| 914 | /// members. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 915 | Sema::OwningExprResult |
| 916 | Sema::BuildImplicitMemberReferenceExpr(const CXXScopeSpec *SS, |
| 917 | LookupResult &R) { |
| 918 | NamedDecl *D = R.getAsSingleDecl(Context); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 919 | SourceLocation Loc = R.getNameLoc(); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 920 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 921 | // We may have found a field within an anonymous union or struct |
| 922 | // (C++ [class.union]). |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 923 | // FIXME: This needs to happen post-isImplicitMemberReference? |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 924 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 925 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 926 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 927 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 928 | QualType ThisType; |
| 929 | QualType MemberType; |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 930 | if (isImplicitMemberReference(SS, D, Loc, ThisType, MemberType)) { |
| 931 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), ThisType); |
| 932 | MarkDeclarationReferenced(Loc, D); |
| 933 | if (PerformObjectMemberConversion(This, D)) |
| 934 | return ExprError(); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 935 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 936 | bool ShouldCheckUse = true; |
| 937 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 938 | // Don't diagnose the use of a virtual member function unless it's |
| 939 | // explicitly qualified. |
| 940 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 941 | ShouldCheckUse = false; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 942 | } |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 943 | |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 944 | if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc)) |
| 945 | return ExprError(); |
| 946 | return Owned(BuildMemberExpr(Context, This, true, SS, D, Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 947 | } |
| 948 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 949 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 950 | if (!Method->isStatic()) |
| 951 | return ExprError(Diag(Loc, diag::err_member_call_without_object)); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | if (isa<FieldDecl>(D)) { |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 955 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 956 | if (MD->isStatic()) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 957 | // "invalid use of member 'x' in static member function" |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 958 | Diag(Loc, diag::err_invalid_member_use_in_static_method) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 959 | << D->getDeclName(); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 960 | return ExprError(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 961 | } |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 964 | // Any other ways we could have found the field in a well-formed |
| 965 | // program would have been turned into implicit member expressions |
| 966 | // above. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 967 | Diag(Loc, diag::err_invalid_non_static_member_use) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 968 | << D->getDeclName(); |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 969 | return ExprError(); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 970 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 971 | |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 972 | // We're not in an implicit member-reference context, but the lookup |
| 973 | // results might not require an instance. Try to build a non-member |
| 974 | // decl reference. |
| 975 | return BuildDeclarationNameExpr(SS, R, /*ADL*/ false); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 976 | } |
| 977 | |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 978 | bool Sema::UseArgumentDependentLookup(const CXXScopeSpec *SS, |
| 979 | const LookupResult &R, |
| 980 | bool HasTrailingLParen) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 981 | // Only when used directly as the postfix-expression of a call. |
| 982 | if (!HasTrailingLParen) |
| 983 | return false; |
| 984 | |
| 985 | // Never if a scope specifier was provided. |
| 986 | if (SS && SS->isSet()) |
| 987 | return false; |
| 988 | |
| 989 | // Only in C++ or ObjC++. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 990 | if (!getLangOptions().CPlusPlus) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 991 | return false; |
| 992 | |
| 993 | // Turn off ADL when we find certain kinds of declarations during |
| 994 | // normal lookup: |
| 995 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) { |
| 996 | NamedDecl *D = *I; |
| 997 | |
| 998 | // C++0x [basic.lookup.argdep]p3: |
| 999 | // -- a declaration of a class member |
| 1000 | // Since using decls preserve this property, we check this on the |
| 1001 | // original decl. |
| 1002 | if (D->getDeclContext()->isRecord()) |
| 1003 | return false; |
| 1004 | |
| 1005 | // C++0x [basic.lookup.argdep]p3: |
| 1006 | // -- a block-scope function declaration that is not a |
| 1007 | // using-declaration |
| 1008 | // NOTE: we also trigger this for function templates (in fact, we |
| 1009 | // don't check the decl type at all, since all other decl types |
| 1010 | // turn off ADL anyway). |
| 1011 | if (isa<UsingShadowDecl>(D)) |
| 1012 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
| 1013 | else if (D->getDeclContext()->isFunctionOrMethod()) |
| 1014 | return false; |
| 1015 | |
| 1016 | // C++0x [basic.lookup.argdep]p3: |
| 1017 | // -- a declaration that is neither a function or a function |
| 1018 | // template |
| 1019 | // And also for builtin functions. |
| 1020 | if (isa<FunctionDecl>(D)) { |
| 1021 | FunctionDecl *FDecl = cast<FunctionDecl>(D); |
| 1022 | |
| 1023 | // But also builtin functions. |
| 1024 | if (FDecl->getBuiltinID() && FDecl->isImplicit()) |
| 1025 | return false; |
| 1026 | } else if (!isa<FunctionTemplateDecl>(D)) |
| 1027 | return false; |
| 1028 | } |
| 1029 | |
| 1030 | return true; |
| 1031 | } |
| 1032 | |
| 1033 | |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1034 | /// Diagnoses obvious problems with the use of the given declaration |
| 1035 | /// as an expression. This is only actually called for lookups that |
| 1036 | /// were not overloaded, and it doesn't promise that the declaration |
| 1037 | /// will in fact be used. |
| 1038 | static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) { |
| 1039 | if (isa<TypedefDecl>(D)) { |
| 1040 | S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName(); |
| 1041 | return true; |
| 1042 | } |
| 1043 | |
| 1044 | if (isa<ObjCInterfaceDecl>(D)) { |
| 1045 | S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName(); |
| 1046 | return true; |
| 1047 | } |
| 1048 | |
| 1049 | if (isa<NamespaceDecl>(D)) { |
| 1050 | S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName(); |
| 1051 | return true; |
| 1052 | } |
| 1053 | |
| 1054 | return false; |
| 1055 | } |
| 1056 | |
| 1057 | Sema::OwningExprResult |
| 1058 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec *SS, |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1059 | LookupResult &R, |
| 1060 | bool NeedsADL) { |
| 1061 | assert(R.getResultKind() != LookupResult::FoundUnresolvedValue); |
| 1062 | |
| 1063 | if (!NeedsADL && !R.isOverloadedResult()) |
| 1064 | return BuildDeclarationNameExpr(SS, R.getNameLoc(), R.getFoundDecl()); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1065 | |
| 1066 | // We only need to check the declaration if there's exactly one |
| 1067 | // result, because in the overloaded case the results can only be |
| 1068 | // functions and function templates. |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1069 | if (R.isSingleResult() && |
| 1070 | CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl())) |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1071 | return ExprError(); |
| 1072 | |
| 1073 | UnresolvedLookupExpr *ULE |
| 1074 | = UnresolvedLookupExpr::Create(Context, |
| 1075 | SS ? (NestedNameSpecifier *)SS->getScopeRep() : 0, |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 1076 | SS ? SS->getRange() : SourceRange(), |
John McCall | 5b3f913 | 2009-11-22 01:44:31 +0000 | [diff] [blame] | 1077 | R.getLookupName(), R.getNameLoc(), |
| 1078 | NeedsADL, R.isOverloadedResult()); |
| 1079 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
| 1080 | ULE->addDecl(*I); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1081 | |
| 1082 | return Owned(ULE); |
| 1083 | } |
| 1084 | |
| 1085 | |
| 1086 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 1087 | Sema::OwningExprResult |
| 1088 | Sema::BuildDeclarationNameExpr(const CXXScopeSpec *SS, |
| 1089 | SourceLocation Loc, NamedDecl *D) { |
| 1090 | assert(D && "Cannot refer to a NULL declaration"); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 1091 | assert(!isa<FunctionTemplateDecl>(D) && |
| 1092 | "Cannot refer unambiguously to a function template"); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1093 | DeclarationName Name = D->getDeclName(); |
| 1094 | |
| 1095 | if (CheckDeclInExpr(*this, Loc, D)) |
| 1096 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1097 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1098 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1099 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1100 | // Check whether this declaration can be used. Note that we suppress |
| 1101 | // this check when we're going to perform argument-dependent lookup |
| 1102 | // on this function name, because this might not be the function |
| 1103 | // that overload resolution actually selects. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 1104 | if (DiagnoseUseOfDecl(VD, Loc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1105 | return ExprError(); |
| 1106 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1107 | // Only create DeclRefExpr's for valid Decl's. |
| 1108 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1109 | return ExprError(); |
| 1110 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1111 | // If the identifier reference is inside a block, and it refers to a value |
| 1112 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1113 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1114 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1115 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1116 | // We do not do this for things like enum constants, global variables, etc, |
| 1117 | // as they do not get snapshotted. |
| 1118 | // |
| 1119 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1120 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1121 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1122 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1123 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1124 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1125 | // This is to record that a 'const' was actually synthesize and added. |
| 1126 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1127 | // Variable will be bound by-copy, make it const within the closure. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1128 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1129 | ExprTy.addConst(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1130 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1131 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1132 | } |
| 1133 | // If this reference is not in a block or if the referenced variable is |
| 1134 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1135 | |
Douglas Gregor | 0da76df | 2009-11-23 11:41:28 +0000 | [diff] [blame] | 1136 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1137 | } |
| 1138 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1139 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1140 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1141 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1142 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1143 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1144 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1145 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1146 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1147 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1148 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1149 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1150 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1151 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1152 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1153 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
| 1154 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1155 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1156 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1157 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1158 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1159 | QualType ResTy; |
| 1160 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 1161 | ResTy = Context.DependentTy; |
| 1162 | } else { |
| 1163 | unsigned Length = |
| 1164 | PredefinedExpr::ComputeName(Context, IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1165 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1166 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1167 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1168 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 1169 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1170 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1171 | } |
| 1172 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1173 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1174 | llvm::SmallString<16> CharBuffer; |
| 1175 | CharBuffer.resize(Tok.getLength()); |
| 1176 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1177 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1178 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1179 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1180 | Tok.getLocation(), PP); |
| 1181 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1182 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1183 | |
| 1184 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1185 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1186 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1187 | Literal.isWide(), |
| 1188 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1189 | } |
| 1190 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1191 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1192 | // 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] | 1193 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1194 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1195 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1196 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1197 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1198 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1199 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1200 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1201 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1202 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1203 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1204 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1205 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1206 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1207 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1208 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1209 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1210 | Tok.getLocation(), PP); |
| 1211 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1212 | return ExprError(); |
| 1213 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1214 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1215 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1216 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1217 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1218 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1219 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1220 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1221 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1222 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1223 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1224 | |
| 1225 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1226 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1227 | // isExact will be set by GetFloatValue(). |
| 1228 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1229 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1230 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1231 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1232 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1233 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1234 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1235 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1236 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1237 | // long long is a C99 feature. |
| 1238 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1239 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1240 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1241 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1242 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1243 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1244 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1245 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1246 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1247 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1248 | Ty = Context.UnsignedLongLongTy; |
| 1249 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1250 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1251 | } else { |
| 1252 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1253 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1254 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1255 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1256 | // be an unsigned int. |
| 1257 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1258 | |
| 1259 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1260 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1261 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1262 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1263 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1264 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1265 | // Does it fit in a unsigned int? |
| 1266 | if (ResultVal.isIntN(IntSize)) { |
| 1267 | // Does it fit in a signed int? |
| 1268 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1269 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1270 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1271 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1272 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1273 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1274 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1275 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1276 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1277 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1278 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1279 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1280 | // Does it fit in a unsigned long? |
| 1281 | if (ResultVal.isIntN(LongSize)) { |
| 1282 | // Does it fit in a signed long? |
| 1283 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1284 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1285 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1286 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1287 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1288 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1291 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1292 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1293 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1294 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1295 | // Does it fit in a unsigned long long? |
| 1296 | if (ResultVal.isIntN(LongLongSize)) { |
| 1297 | // Does it fit in a signed long long? |
| 1298 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1299 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1300 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1301 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1302 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1303 | } |
| 1304 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1305 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1306 | // If we still couldn't decide a type, we probably have something that |
| 1307 | // 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] | 1308 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1309 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1310 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1311 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1312 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1313 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1314 | if (ResultVal.getBitWidth() != Width) |
| 1315 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1316 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1317 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1318 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1319 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1320 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1321 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1322 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1323 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1324 | |
| 1325 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1326 | } |
| 1327 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1328 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1329 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1330 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1331 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1332 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1333 | } |
| 1334 | |
| 1335 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1336 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1337 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1338 | SourceLocation OpLoc, |
| 1339 | const SourceRange &ExprRange, |
| 1340 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1341 | if (exprType->isDependentType()) |
| 1342 | return false; |
| 1343 | |
Sebastian Redl | 5d484e8 | 2009-11-23 17:18:46 +0000 | [diff] [blame] | 1344 | // C++ [expr.sizeof]p2: "When applied to a reference or a reference type, |
| 1345 | // the result is the size of the referenced type." |
| 1346 | // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the |
| 1347 | // result shall be the alignment of the referenced type." |
| 1348 | if (const ReferenceType *Ref = exprType->getAs<ReferenceType>()) |
| 1349 | exprType = Ref->getPointeeType(); |
| 1350 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1351 | // C99 6.5.3.4p1: |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1352 | if (exprType->isFunctionType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1353 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1354 | if (isSizeof) |
| 1355 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1356 | return false; |
| 1357 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1358 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1359 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1360 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1361 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1362 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1363 | return false; |
| 1364 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1365 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1366 | if (RequireCompleteType(OpLoc, exprType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1367 | isSizeof ? diag::err_sizeof_incomplete_type : |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1368 | PDiag(diag::err_alignof_incomplete_type) |
| 1369 | << ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1370 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1371 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1372 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1373 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1374 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1375 | << exprType << isSizeof << ExprRange; |
| 1376 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1377 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1378 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1379 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1382 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1383 | const SourceRange &ExprRange) { |
| 1384 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1385 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1386 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1387 | if (isa<DeclRefExpr>(E)) |
| 1388 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1389 | |
| 1390 | // Cannot know anything else if the expression is dependent. |
| 1391 | if (E->isTypeDependent()) |
| 1392 | return false; |
| 1393 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1394 | if (E->getBitField()) { |
| 1395 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1396 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1397 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1398 | |
| 1399 | // Alignment of a field access is always okay, so long as it isn't a |
| 1400 | // bit-field. |
| 1401 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1402 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1403 | return false; |
| 1404 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1405 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1406 | } |
| 1407 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1408 | /// \brief Build a sizeof or alignof expression given a type operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1409 | Action::OwningExprResult |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1410 | Sema::CreateSizeOfAlignOfExpr(DeclaratorInfo *DInfo, |
| 1411 | SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1412 | bool isSizeOf, SourceRange R) { |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1413 | if (!DInfo) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1414 | return ExprError(); |
| 1415 | |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1416 | QualType T = DInfo->getType(); |
| 1417 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1418 | if (!T->isDependentType() && |
| 1419 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1420 | return ExprError(); |
| 1421 | |
| 1422 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1423 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, DInfo, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1424 | Context.getSizeType(), OpLoc, |
| 1425 | R.getEnd())); |
| 1426 | } |
| 1427 | |
| 1428 | /// \brief Build a sizeof or alignof expression given an expression |
| 1429 | /// operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1430 | Action::OwningExprResult |
| 1431 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1432 | bool isSizeOf, SourceRange R) { |
| 1433 | // Verify that the operand is valid. |
| 1434 | bool isInvalid = false; |
| 1435 | if (E->isTypeDependent()) { |
| 1436 | // Delay type-checking for type-dependent expressions. |
| 1437 | } else if (!isSizeOf) { |
| 1438 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1439 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1440 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1441 | isInvalid = true; |
| 1442 | } else { |
| 1443 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1444 | } |
| 1445 | |
| 1446 | if (isInvalid) |
| 1447 | return ExprError(); |
| 1448 | |
| 1449 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1450 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1451 | Context.getSizeType(), OpLoc, |
| 1452 | R.getEnd())); |
| 1453 | } |
| 1454 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1455 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1456 | /// the same for @c alignof and @c __alignof |
| 1457 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1458 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1459 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1460 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1461 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1462 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1463 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1464 | if (isType) { |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1465 | DeclaratorInfo *DInfo; |
| 1466 | (void) GetTypeFromParser(TyOrEx, &DInfo); |
| 1467 | return CreateSizeOfAlignOfExpr(DInfo, OpLoc, isSizeof, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1468 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1469 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1470 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1471 | Action::OwningExprResult Result |
| 1472 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1473 | |
| 1474 | if (Result.isInvalid()) |
| 1475 | DeleteExpr(ArgEx); |
| 1476 | |
| 1477 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1478 | } |
| 1479 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1480 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1481 | if (V->isTypeDependent()) |
| 1482 | return Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1483 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1484 | // These operators return the element type of a complex type. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1485 | if (const ComplexType *CT = V->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1486 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1487 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1488 | // Otherwise they pass through real integer and floating point types here. |
| 1489 | if (V->getType()->isArithmeticType()) |
| 1490 | return V->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1491 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1492 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1493 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1494 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1495 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1499 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1500 | Action::OwningExprResult |
| 1501 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1502 | tok::TokenKind Kind, ExprArg Input) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1503 | UnaryOperator::Opcode Opc; |
| 1504 | switch (Kind) { |
| 1505 | default: assert(0 && "Unknown unary op!"); |
| 1506 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1507 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1508 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1509 | |
Eli Friedman | e4216e9 | 2009-11-18 03:38:04 +0000 | [diff] [blame] | 1510 | return BuildUnaryOp(S, OpLoc, Opc, move(Input)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1511 | } |
| 1512 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1513 | Action::OwningExprResult |
| 1514 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1515 | ExprArg Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1516 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1517 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1518 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1519 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1520 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1521 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1522 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1523 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1524 | Base.release(); |
| 1525 | Idx.release(); |
| 1526 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1527 | Context.DependentTy, RLoc)); |
| 1528 | } |
| 1529 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1530 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1531 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1532 | LHSExp->getType()->isEnumeralType() || |
| 1533 | RHSExp->getType()->isRecordType() || |
| 1534 | RHSExp->getType()->isEnumeralType())) { |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1535 | return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, move(Base),move(Idx)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1536 | } |
| 1537 | |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1538 | return CreateBuiltinArraySubscriptExpr(move(Base), LLoc, move(Idx), RLoc); |
| 1539 | } |
| 1540 | |
| 1541 | |
| 1542 | Action::OwningExprResult |
| 1543 | Sema::CreateBuiltinArraySubscriptExpr(ExprArg Base, SourceLocation LLoc, |
| 1544 | ExprArg Idx, SourceLocation RLoc) { |
| 1545 | Expr *LHSExp = static_cast<Expr*>(Base.get()); |
| 1546 | Expr *RHSExp = static_cast<Expr*>(Idx.get()); |
| 1547 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1548 | // Perform default conversions. |
| 1549 | DefaultFunctionArrayConversion(LHSExp); |
| 1550 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1551 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1552 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1553 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1554 | // 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] | 1555 | // 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] | 1556 | // 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] | 1557 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1558 | Expr *BaseExpr, *IndexExpr; |
| 1559 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1560 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1561 | BaseExpr = LHSExp; |
| 1562 | IndexExpr = RHSExp; |
| 1563 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1564 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1565 | BaseExpr = LHSExp; |
| 1566 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1567 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1568 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1569 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1570 | BaseExpr = RHSExp; |
| 1571 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1572 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1573 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1574 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1575 | BaseExpr = LHSExp; |
| 1576 | IndexExpr = RHSExp; |
| 1577 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1578 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1579 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1580 | // Handle the uncommon case of "123[Ptr]". |
| 1581 | BaseExpr = RHSExp; |
| 1582 | IndexExpr = LHSExp; |
| 1583 | ResultType = PTy->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1584 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1585 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1586 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1587 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1588 | // FIXME: need to deal with const... |
| 1589 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1590 | } else if (LHSTy->isArrayType()) { |
| 1591 | // If we see an array that wasn't promoted by |
| 1592 | // DefaultFunctionArrayConversion, it must be an array that |
| 1593 | // wasn't promoted because of the C90 rule that doesn't |
| 1594 | // allow promoting non-lvalue arrays. Warn, then |
| 1595 | // force the promotion here. |
| 1596 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1597 | LHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1598 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 1599 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1600 | LHSTy = LHSExp->getType(); |
| 1601 | |
| 1602 | BaseExpr = LHSExp; |
| 1603 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1604 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1605 | } else if (RHSTy->isArrayType()) { |
| 1606 | // Same as previous, except for 123[f().a] case |
| 1607 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1608 | RHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1609 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 1610 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1611 | RHSTy = RHSExp->getType(); |
| 1612 | |
| 1613 | BaseExpr = RHSExp; |
| 1614 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1615 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1616 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1617 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1618 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1619 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1620 | // C99 6.5.2.1p1 |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1621 | if (!(IndexExpr->getType()->isIntegerType() && |
| 1622 | IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1623 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1624 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1625 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1626 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 1627 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 1628 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 1629 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 1630 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1631 | // 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] | 1632 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1633 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1634 | // incomplete types are not object types. |
| 1635 | if (ResultType->isFunctionType()) { |
| 1636 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1637 | << ResultType << BaseExpr->getSourceRange(); |
| 1638 | return ExprError(); |
| 1639 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1640 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1641 | if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1642 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1643 | PDiag(diag::err_subscript_incomplete_type) |
| 1644 | << BaseExpr->getSourceRange())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1645 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1646 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1647 | // Diagnose bad cases where we step over interface counts. |
| 1648 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1649 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1650 | << ResultType << BaseExpr->getSourceRange(); |
| 1651 | return ExprError(); |
| 1652 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1653 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1654 | Base.release(); |
| 1655 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1656 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1657 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1658 | } |
| 1659 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1660 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1661 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1662 | const IdentifierInfo *CompName, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1663 | SourceLocation CompLoc) { |
Daniel Dunbar | 2ad3289 | 2009-10-18 02:09:38 +0000 | [diff] [blame] | 1664 | // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements, |
| 1665 | // see FIXME there. |
| 1666 | // |
| 1667 | // FIXME: This logic can be greatly simplified by splitting it along |
| 1668 | // halving/not halving and reworking the component checking. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1669 | const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1670 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1671 | // The vector accessor can't exceed the number of elements. |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1672 | const char *compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1673 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1674 | // 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] | 1675 | // special names that indicate a subset of exactly half the elements are |
| 1676 | // to be selected. |
| 1677 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1678 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1679 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1680 | // 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] | 1681 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1682 | |
| 1683 | // Check that we've found one of the special components, or that the component |
| 1684 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1685 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1686 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1687 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1688 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1689 | do |
| 1690 | compStr++; |
| 1691 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1692 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1693 | do |
| 1694 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1695 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1696 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1697 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1698 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1699 | // We didn't get to the end of the string. This means the component names |
| 1700 | // 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] | 1701 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1702 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1703 | return QualType(); |
| 1704 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1705 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1706 | // Ensure no component accessor exceeds the width of the vector type it |
| 1707 | // operates on. |
| 1708 | if (!HalvingSwizzle) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1709 | compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1710 | |
| 1711 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1712 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1713 | |
| 1714 | while (*compStr) { |
| 1715 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1716 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1717 | << baseType << SourceRange(CompLoc); |
| 1718 | return QualType(); |
| 1719 | } |
| 1720 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1721 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1722 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1723 | // If this is a halving swizzle, verify that the base type has an even |
| 1724 | // number of elements. |
| 1725 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1726 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1727 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1728 | return QualType(); |
| 1729 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1730 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1731 | // 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] | 1732 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1733 | // 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] | 1734 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1735 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1736 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1737 | : CompName->getLength(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1738 | if (HexSwizzle) |
| 1739 | CompSize--; |
| 1740 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1741 | if (CompSize == 1) |
| 1742 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1743 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1744 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1745 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1746 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1747 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1748 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1749 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1750 | } |
| 1751 | 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] | 1752 | } |
| 1753 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1754 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1755 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1756 | const Selector &Sel, |
| 1757 | ASTContext &Context) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1758 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1759 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1760 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1761 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1762 | return OMD; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1763 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1764 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1765 | E = PDecl->protocol_end(); I != E; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1766 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1767 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1768 | return D; |
| 1769 | } |
| 1770 | return 0; |
| 1771 | } |
| 1772 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1773 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1774 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1775 | const Selector &Sel, |
| 1776 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1777 | // Check protocols on qualified interfaces. |
| 1778 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1779 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1780 | E = QIdTy->qual_end(); I != E; ++I) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1781 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1782 | GDecl = PD; |
| 1783 | break; |
| 1784 | } |
| 1785 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1786 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1787 | GDecl = OMD; |
| 1788 | break; |
| 1789 | } |
| 1790 | } |
| 1791 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1792 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1793 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1794 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1795 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1796 | if (GDecl) |
| 1797 | return GDecl; |
| 1798 | } |
| 1799 | } |
| 1800 | return GDecl; |
| 1801 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1802 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1803 | Action::OwningExprResult |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1804 | Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1805 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1806 | DeclarationName MemberName, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 1807 | const TemplateArgumentListInfo *ExplicitTemplateArgs, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1808 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS, |
| 1809 | NamedDecl *FirstQualifierInScope) { |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 1810 | if (SS && SS->isInvalid()) |
| 1811 | return ExprError(); |
| 1812 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1813 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1814 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1815 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1816 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 1817 | assert(BaseExpr && "no base expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1818 | |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1819 | // Perform default conversions. |
| 1820 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1821 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1822 | QualType BaseType = BaseExpr->getType(); |
Douglas Gregor | 3f0b5fd | 2009-11-06 06:30:47 +0000 | [diff] [blame] | 1823 | |
| 1824 | // If the user is trying to apply -> or . to a function pointer |
| 1825 | // type, it's probably because the forgot parentheses to call that |
| 1826 | // function. Suggest the addition of those parentheses, build the |
| 1827 | // call, and continue on. |
| 1828 | if (const PointerType *Ptr = BaseType->getAs<PointerType>()) { |
| 1829 | if (const FunctionProtoType *Fun |
| 1830 | = Ptr->getPointeeType()->getAs<FunctionProtoType>()) { |
| 1831 | QualType ResultTy = Fun->getResultType(); |
| 1832 | if (Fun->getNumArgs() == 0 && |
| 1833 | ((OpKind == tok::period && ResultTy->isRecordType()) || |
| 1834 | (OpKind == tok::arrow && ResultTy->isPointerType() && |
| 1835 | ResultTy->getAs<PointerType>()->getPointeeType() |
| 1836 | ->isRecordType()))) { |
| 1837 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 1838 | Diag(Loc, diag::err_member_reference_needs_call) |
| 1839 | << QualType(Fun, 0) |
| 1840 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 1841 | |
| 1842 | OwningExprResult NewBase |
| 1843 | = ActOnCallExpr(S, ExprArg(*this, BaseExpr), Loc, |
| 1844 | MultiExprArg(*this, 0, 0), 0, Loc); |
| 1845 | if (NewBase.isInvalid()) |
| 1846 | return move(NewBase); |
| 1847 | |
| 1848 | BaseExpr = NewBase.takeAs<Expr>(); |
| 1849 | DefaultFunctionArrayConversion(BaseExpr); |
| 1850 | BaseType = BaseExpr->getType(); |
| 1851 | } |
| 1852 | } |
| 1853 | } |
| 1854 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1855 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 1856 | // use that. |
| 1857 | if (BaseType->isObjCIdType()) { |
| 1858 | // We have an 'id' type. Rather than fall through, we check if this |
| 1859 | // is a reference to 'isa'. |
| 1860 | if (BaseType != Context.ObjCIdRedefinitionType) { |
| 1861 | BaseType = Context.ObjCIdRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1862 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1863 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1864 | } |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1865 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1866 | |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1867 | // Handle properties on ObjC 'Class' types. |
| 1868 | if (OpKind == tok::period && BaseType->isObjCClassType()) { |
| 1869 | // Also must look for a getter name which uses property syntax. |
| 1870 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 1871 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 1872 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 1873 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 1874 | ObjCMethodDecl *Getter; |
| 1875 | // FIXME: need to also look locally in the implementation. |
| 1876 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 1877 | // Check the use of this method. |
| 1878 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 1879 | return ExprError(); |
| 1880 | } |
| 1881 | // If we found a getter then this may be a valid dot-reference, we |
| 1882 | // will look for the matching setter, in case it is needed. |
| 1883 | Selector SetterSel = |
| 1884 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 1885 | PP.getSelectorTable(), Member); |
| 1886 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 1887 | if (!Setter) { |
| 1888 | // If this reference is in an @implementation, also check for 'private' |
| 1889 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 1890 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1891 | } |
| 1892 | // Look through local category implementations associated with the class. |
| 1893 | if (!Setter) |
| 1894 | Setter = IFace->getCategoryClassMethod(SetterSel); |
| 1895 | |
| 1896 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 1897 | return ExprError(); |
| 1898 | |
| 1899 | if (Getter || Setter) { |
| 1900 | QualType PType; |
| 1901 | |
| 1902 | if (Getter) |
| 1903 | PType = Getter->getResultType(); |
| 1904 | else |
| 1905 | // Get the expression type from Setter's incoming parameter. |
| 1906 | PType = (*(Setter->param_end() -1))->getType(); |
| 1907 | // FIXME: we must check that the setter has property type. |
| 1908 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, |
| 1909 | PType, |
| 1910 | Setter, MemberLoc, BaseExpr)); |
| 1911 | } |
| 1912 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 1913 | << MemberName << BaseType); |
| 1914 | } |
| 1915 | } |
| 1916 | |
| 1917 | if (BaseType->isObjCClassType() && |
| 1918 | BaseType != Context.ObjCClassRedefinitionType) { |
| 1919 | BaseType = Context.ObjCClassRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1920 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1921 | } |
| 1922 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1923 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 1924 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1925 | if (OpKind == tok::arrow) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1926 | if (BaseType->isDependentType()) { |
| 1927 | NestedNameSpecifier *Qualifier = 0; |
| 1928 | if (SS) { |
| 1929 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 1930 | if (!FirstQualifierInScope) |
| 1931 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 1932 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1933 | |
John McCall | 865d447 | 2009-11-19 22:55:06 +0000 | [diff] [blame] | 1934 | return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, true, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1935 | OpLoc, Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 1936 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1937 | FirstQualifierInScope, |
| 1938 | MemberName, |
| 1939 | MemberLoc, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 1940 | ExplicitTemplateArgs)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1941 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1942 | else if (const PointerType *PT = BaseType->getAs<PointerType>()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1943 | BaseType = PT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1944 | else if (BaseType->isObjCObjectPointerType()) |
| 1945 | ; |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1946 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1947 | return ExprError(Diag(MemberLoc, |
| 1948 | diag::err_typecheck_member_reference_arrow) |
| 1949 | << BaseType << BaseExpr->getSourceRange()); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1950 | } else if (BaseType->isDependentType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1951 | // Require that the base type isn't a pointer type |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1952 | // (so we'll report an error for) |
| 1953 | // T* t; |
| 1954 | // t.f; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1955 | // |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1956 | // In Obj-C++, however, the above expression is valid, since it could be |
| 1957 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 1958 | // 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] | 1959 | const PointerType *PT = BaseType->getAs<PointerType>(); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1960 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1961 | if (!PT || (getLangOptions().ObjC1 && |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1962 | !PT->getPointeeType()->isRecordType())) { |
| 1963 | NestedNameSpecifier *Qualifier = 0; |
| 1964 | if (SS) { |
| 1965 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 1966 | if (!FirstQualifierInScope) |
| 1967 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 1968 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1969 | |
John McCall | 865d447 | 2009-11-19 22:55:06 +0000 | [diff] [blame] | 1970 | return Owned(CXXDependentScopeMemberExpr::Create(Context, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1971 | BaseExpr, false, |
| 1972 | OpLoc, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1973 | Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 1974 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1975 | FirstQualifierInScope, |
| 1976 | MemberName, |
| 1977 | MemberLoc, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 1978 | ExplicitTemplateArgs)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1979 | } |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1980 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1981 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1982 | // Handle field access to simple records. This also handles access to fields |
| 1983 | // of the ObjC 'id' struct. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1984 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1985 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 1986 | if (RequireCompleteType(OpLoc, BaseType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1987 | PDiag(diag::err_typecheck_incomplete_tag) |
| 1988 | << BaseExpr->getSourceRange())) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 1989 | return ExprError(); |
| 1990 | |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 1991 | DeclContext *DC = RDecl; |
| 1992 | if (SS && SS->isSet()) { |
| 1993 | // If the member name was a qualified-id, look into the |
| 1994 | // nested-name-specifier. |
| 1995 | DC = computeDeclContext(*SS, false); |
Douglas Gregor | 8d1c9ae | 2009-10-17 22:37:54 +0000 | [diff] [blame] | 1996 | |
| 1997 | if (!isa<TypeDecl>(DC)) { |
| 1998 | Diag(MemberLoc, diag::err_qualified_member_nonclass) |
| 1999 | << DC << SS->getRange(); |
| 2000 | return ExprError(); |
| 2001 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2002 | |
| 2003 | // FIXME: If DC is not computable, we should build a |
John McCall | 865d447 | 2009-11-19 22:55:06 +0000 | [diff] [blame] | 2004 | // CXXDependentScopeMemberExpr. |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2005 | assert(DC && "Cannot handle non-computable dependent contexts in lookup"); |
| 2006 | } |
| 2007 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2008 | // The record definition is complete, now make sure the member is valid. |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2009 | LookupResult Result(*this, MemberName, MemberLoc, LookupMemberName); |
| 2010 | LookupQualifiedName(Result, DC); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2011 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2012 | if (Result.empty()) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 2013 | return ExprError(Diag(MemberLoc, diag::err_no_member) |
| 2014 | << MemberName << DC << BaseExpr->getSourceRange()); |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2015 | if (Result.isAmbiguous()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2016 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2017 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2018 | NamedDecl *MemberDecl = Result.getAsSingleDecl(Context); |
| 2019 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2020 | if (SS && SS->isSet()) { |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2021 | TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2022 | QualType BaseTypeCanon |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2023 | = Context.getCanonicalType(BaseType).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2024 | QualType MemberTypeCanon |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2025 | = Context.getCanonicalType(Context.getTypeDeclType(TyD)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2026 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2027 | if (BaseTypeCanon != MemberTypeCanon && |
| 2028 | !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon)) |
| 2029 | return ExprError(Diag(SS->getBeginLoc(), |
| 2030 | diag::err_not_direct_base_or_virtual) |
| 2031 | << MemberTypeCanon << BaseTypeCanon); |
| 2032 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2033 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2034 | // If the decl being referenced had an error, return an error for this |
| 2035 | // sub-expr without emitting another error, in order to avoid cascading |
| 2036 | // error cases. |
| 2037 | if (MemberDecl->isInvalidDecl()) |
| 2038 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2039 | |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2040 | bool ShouldCheckUse = true; |
| 2041 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) { |
| 2042 | // Don't diagnose the use of a virtual member function unless it's |
| 2043 | // explicitly qualified. |
| 2044 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 2045 | ShouldCheckUse = false; |
| 2046 | } |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 2047 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2048 | // Check the use of this field |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2049 | if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2050 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2051 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2052 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2053 | // We may have found a field within an anonymous union or struct |
| 2054 | // (C++ [class.union]). |
| 2055 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2056 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2057 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2058 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2059 | // 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] | 2060 | QualType MemberType = FD->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2061 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2062 | MemberType = Ref->getPointeeType(); |
| 2063 | else { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2064 | Qualifiers BaseQuals = BaseType.getQualifiers(); |
| 2065 | BaseQuals.removeObjCGCAttr(); |
| 2066 | if (FD->isMutable()) BaseQuals.removeConst(); |
| 2067 | |
| 2068 | Qualifiers MemberQuals |
| 2069 | = Context.getCanonicalType(MemberType).getQualifiers(); |
| 2070 | |
| 2071 | Qualifiers Combined = BaseQuals + MemberQuals; |
| 2072 | if (Combined != MemberQuals) |
| 2073 | MemberType = Context.getQualifiedType(MemberType, Combined); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2074 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2075 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2076 | MarkDeclarationReferenced(MemberLoc, FD); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 2077 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2078 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2079 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2080 | FD, MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2081 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2082 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2083 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2084 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2085 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2086 | Var, MemberLoc, |
| 2087 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2088 | } |
| 2089 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2090 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2091 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2092 | MemberFn, MemberLoc, |
| 2093 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2094 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2095 | if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2096 | = dyn_cast<FunctionTemplateDecl>(MemberDecl)) { |
| 2097 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2098 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2099 | if (ExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2100 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2101 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2102 | SS? SS->getRange() : SourceRange(), |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2103 | FunTmpl, MemberLoc, |
| 2104 | ExplicitTemplateArgs, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2105 | Context.OverloadTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2106 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2107 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2108 | FunTmpl, MemberLoc, |
| 2109 | Context.OverloadTy)); |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2110 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2111 | if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2112 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) { |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2113 | if (ExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2114 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2115 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2116 | SS? SS->getRange() : SourceRange(), |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2117 | Ovl, MemberLoc, ExplicitTemplateArgs, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2118 | Context.OverloadTy)); |
| 2119 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2120 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2121 | Ovl, MemberLoc, Context.OverloadTy)); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2122 | } |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2123 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2124 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2125 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2126 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2127 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2128 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2129 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2130 | << MemberName << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2131 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2132 | // We found a declaration kind that we didn't expect. This is a |
| 2133 | // generic error message that tells the user that she can't refer |
| 2134 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2135 | return ExprError(Diag(MemberLoc, |
| 2136 | diag::err_typecheck_member_reference_unknown) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2137 | << MemberName << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2138 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2139 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2140 | // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring |
| 2141 | // into a record type was handled above, any destructor we see here is a |
| 2142 | // pseudo-destructor. |
| 2143 | if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) { |
| 2144 | // C++ [expr.pseudo]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2145 | // The left hand side of the dot operator shall be of scalar type. The |
| 2146 | // 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] | 2147 | // type. |
| 2148 | if (!BaseType->isScalarType()) |
| 2149 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 2150 | << BaseType << BaseExpr->getSourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2151 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2152 | // [...] The type designated by the pseudo-destructor-name shall be the |
| 2153 | // same as the object type. |
| 2154 | if (!MemberName.getCXXNameType()->isDependentType() && |
| 2155 | !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType())) |
| 2156 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch) |
| 2157 | << BaseType << MemberName.getCXXNameType() |
| 2158 | << BaseExpr->getSourceRange() << SourceRange(MemberLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2159 | |
| 2160 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2161 | // the form |
| 2162 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2163 | // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name |
| 2164 | // |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2165 | // shall designate the same scalar type. |
| 2166 | // |
| 2167 | // FIXME: DPG can't see any way to trigger this particular clause, so it |
| 2168 | // isn't checked here. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2169 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2170 | // FIXME: We've lost the precise spelling of the type by going through |
| 2171 | // DeclarationName. Can we do better? |
| 2172 | return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2173 | OpKind == tok::arrow, |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2174 | OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2175 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2176 | SS? SS->getRange() : SourceRange(), |
| 2177 | MemberName.getCXXNameType(), |
| 2178 | MemberLoc)); |
| 2179 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2180 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2181 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2182 | // (*Obj).ivar. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2183 | if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || |
| 2184 | (OpKind == tok::period && BaseType->isObjCInterfaceType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2185 | const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2186 | const ObjCInterfaceType *IFaceT = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2187 | OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>(); |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2188 | if (IFaceT) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2189 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2190 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2191 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2192 | ObjCInterfaceDecl *ClassDeclared; |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2193 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2194 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2195 | if (IV) { |
| 2196 | // If the decl being referenced had an error, return an error for this |
| 2197 | // sub-expr without emitting another error, in order to avoid cascading |
| 2198 | // error cases. |
| 2199 | if (IV->isInvalidDecl()) |
| 2200 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2201 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2202 | // Check whether we can reference this field. |
| 2203 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2204 | return ExprError(); |
| 2205 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2206 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2207 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2208 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2209 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2210 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2211 | // Case of a c-function declared inside an objc implementation. |
| 2212 | // FIXME: For a c-style function nested inside an objc implementation |
| 2213 | // class, there is no implementation context available, so we pass |
| 2214 | // down the context as argument to this routine. Ideally, this context |
| 2215 | // need be passed down in the AST node and somehow calculated from the |
| 2216 | // AST for a function decl. |
| 2217 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2218 | if (ObjCImplementationDecl *IMPD = |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2219 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2220 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2221 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2222 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2223 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2224 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2225 | |
| 2226 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2227 | if (ClassDeclared != IDecl || |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2228 | ClassOfMethodDecl != ClassDeclared) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2229 | Diag(MemberLoc, diag::error_private_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2230 | << IV->getDeclName(); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2231 | } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2232 | // @protected |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2233 | Diag(MemberLoc, diag::error_protected_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2234 | << IV->getDeclName(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2235 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2236 | |
| 2237 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2238 | MemberLoc, BaseExpr, |
| 2239 | OpKind == tok::arrow)); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2240 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2241 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2242 | << IDecl->getDeclName() << MemberName |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2243 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2244 | } |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2245 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2246 | // Handle properties on 'id' and qualified "id". |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2247 | if (OpKind == tok::period && (BaseType->isObjCIdType() || |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2248 | BaseType->isObjCQualifiedIdType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2249 | const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2250 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2251 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2252 | // Check protocols on qualified interfaces. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2253 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2254 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2255 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2256 | // Check the use of this declaration |
| 2257 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2258 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2259 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2260 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2261 | MemberLoc, BaseExpr)); |
| 2262 | } |
| 2263 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2264 | // Check the use of this method. |
| 2265 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2266 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2267 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2268 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2269 | OMD->getResultType(), |
| 2270 | OMD, OpLoc, MemberLoc, |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2271 | NULL, 0)); |
| 2272 | } |
| 2273 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2274 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2275 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2276 | << MemberName << BaseType); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2277 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2278 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2279 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2280 | const ObjCObjectPointerType *OPT; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2281 | if (OpKind == tok::period && |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2282 | (OPT = BaseType->getAsObjCInterfacePointerType())) { |
| 2283 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2284 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2285 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2286 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2287 | // Search for a declared property first. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2288 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2289 | // Check whether we can reference this property. |
| 2290 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2291 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2292 | QualType ResTy = PD->getType(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2293 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2294 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2295 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2296 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2297 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2298 | MemberLoc, BaseExpr)); |
| 2299 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2300 | // Check protocols on qualified interfaces. |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2301 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2302 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2303 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2304 | // Check whether we can reference this property. |
| 2305 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2306 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2307 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2308 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2309 | MemberLoc, BaseExpr)); |
| 2310 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2311 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2312 | // selector is implemented. |
| 2313 | |
| 2314 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2315 | // shared with the code in ActOnInstanceMessage. |
| 2316 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2317 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2318 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2319 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2320 | // If this reference is in an @implementation, check for 'private' methods. |
| 2321 | if (!Getter) |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2322 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2323 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2324 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2325 | if (!Getter) |
| 2326 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2327 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2328 | // Check if we can reference this property. |
| 2329 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2330 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2331 | } |
| 2332 | // If we found a getter then this may be a valid dot-reference, we |
| 2333 | // will look for the matching setter, in case it is needed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2334 | Selector SetterSel = |
| 2335 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2336 | PP.getSelectorTable(), Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2337 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2338 | if (!Setter) { |
| 2339 | // If this reference is in an @implementation, also check for 'private' |
| 2340 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2341 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2342 | } |
| 2343 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2344 | if (!Setter) |
| 2345 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2346 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2347 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2348 | return ExprError(); |
| 2349 | |
| 2350 | if (Getter || Setter) { |
| 2351 | QualType PType; |
| 2352 | |
| 2353 | if (Getter) |
| 2354 | PType = Getter->getResultType(); |
Fariborz Jahanian | 154440e | 2009-08-18 20:50:23 +0000 | [diff] [blame] | 2355 | else |
| 2356 | // Get the expression type from Setter's incoming parameter. |
| 2357 | PType = (*(Setter->param_end() -1))->getType(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2358 | // FIXME: we must check that the setter has property type. |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 2359 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2360 | Setter, MemberLoc, BaseExpr)); |
| 2361 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2362 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2363 | << MemberName << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2364 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2365 | |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2366 | // Handle the following exceptional case (*Obj).isa. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2367 | if (OpKind == tok::period && |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2368 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2369 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2370 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
| 2371 | Context.getObjCIdType())); |
| 2372 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2373 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2374 | if (BaseType->isExtVectorType()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2375 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2376 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2377 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2378 | return ExprError(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2379 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2380 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2381 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2382 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2383 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2384 | << BaseType << BaseExpr->getSourceRange(); |
| 2385 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2386 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2387 | } |
| 2388 | |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2389 | Sema::OwningExprResult Sema::ActOnMemberAccessExpr(Scope *S, ExprArg Base, |
| 2390 | SourceLocation OpLoc, |
| 2391 | tok::TokenKind OpKind, |
| 2392 | const CXXScopeSpec &SS, |
| 2393 | UnqualifiedId &Member, |
| 2394 | DeclPtrTy ObjCImpDecl, |
| 2395 | bool HasTrailingLParen) { |
| 2396 | if (Member.getKind() == UnqualifiedId::IK_TemplateId) { |
| 2397 | TemplateName Template |
| 2398 | = TemplateName::getFromVoidPointer(Member.TemplateId->Template); |
| 2399 | |
| 2400 | // FIXME: We're going to end up looking up the template based on its name, |
| 2401 | // twice! |
| 2402 | DeclarationName Name; |
| 2403 | if (TemplateDecl *ActualTemplate = Template.getAsTemplateDecl()) |
| 2404 | Name = ActualTemplate->getDeclName(); |
| 2405 | else if (OverloadedFunctionDecl *Ovl = Template.getAsOverloadedFunctionDecl()) |
| 2406 | Name = Ovl->getDeclName(); |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 2407 | else { |
| 2408 | DependentTemplateName *DTN = Template.getAsDependentTemplateName(); |
| 2409 | if (DTN->isIdentifier()) |
| 2410 | Name = DTN->getIdentifier(); |
| 2411 | else |
| 2412 | Name = Context.DeclarationNames.getCXXOperatorName(DTN->getOperator()); |
| 2413 | } |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2414 | |
| 2415 | // Translate the parser's template argument list in our AST format. |
| 2416 | ASTTemplateArgsPtr TemplateArgsPtr(*this, |
| 2417 | Member.TemplateId->getTemplateArgs(), |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2418 | Member.TemplateId->NumArgs); |
| 2419 | |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2420 | TemplateArgumentListInfo TemplateArgs; |
| 2421 | TemplateArgs.setLAngleLoc(Member.TemplateId->LAngleLoc); |
| 2422 | TemplateArgs.setRAngleLoc(Member.TemplateId->RAngleLoc); |
| 2423 | translateTemplateArguments(TemplateArgsPtr, TemplateArgs); |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2424 | TemplateArgsPtr.release(); |
| 2425 | |
| 2426 | // Do we have the save the actual template name? We might need it... |
| 2427 | return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, |
| 2428 | Member.TemplateId->TemplateNameLoc, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2429 | Name, &TemplateArgs, DeclPtrTy(), |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2430 | &SS); |
| 2431 | } |
| 2432 | |
| 2433 | // FIXME: We lose a lot of source information by mapping directly to the |
| 2434 | // DeclarationName. |
| 2435 | OwningExprResult Result |
| 2436 | = BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, |
| 2437 | Member.getSourceRange().getBegin(), |
| 2438 | GetNameFromUnqualifiedId(Member), |
| 2439 | ObjCImpDecl, &SS); |
| 2440 | |
| 2441 | if (Result.isInvalid() || HasTrailingLParen || |
| 2442 | Member.getKind() != UnqualifiedId::IK_DestructorName) |
| 2443 | return move(Result); |
| 2444 | |
| 2445 | // The only way a reference to a destructor can be used is to |
| 2446 | // immediately call them. Since the next token is not a '(', produce a |
| 2447 | // diagnostic and build the call now. |
| 2448 | Expr *E = (Expr *)Result.get(); |
| 2449 | SourceLocation ExpectedLParenLoc |
| 2450 | = PP.getLocForEndOfToken(Member.getSourceRange().getEnd()); |
| 2451 | Diag(E->getLocStart(), diag::err_dtor_expr_without_call) |
| 2452 | << isa<CXXPseudoDestructorExpr>(E) |
| 2453 | << CodeModificationHint::CreateInsertion(ExpectedLParenLoc, "()"); |
| 2454 | |
| 2455 | return ActOnCallExpr(0, move(Result), ExpectedLParenLoc, |
| 2456 | MultiExprArg(*this, 0, 0), 0, ExpectedLParenLoc); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2457 | } |
| 2458 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2459 | Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 2460 | FunctionDecl *FD, |
| 2461 | ParmVarDecl *Param) { |
| 2462 | if (Param->hasUnparsedDefaultArg()) { |
| 2463 | Diag (CallLoc, |
| 2464 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2465 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2466 | Diag(UnparsedDefaultArgLocs[Param], |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2467 | diag::note_default_argument_declared_here); |
| 2468 | } else { |
| 2469 | if (Param->hasUninstantiatedDefaultArg()) { |
| 2470 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
| 2471 | |
| 2472 | // Instantiate the expression. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2473 | MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2474 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2475 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 2476 | ArgList.getInnermost().getFlatArgumentList(), |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2477 | ArgList.getInnermost().flat_size()); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2478 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2479 | OwningExprResult Result = SubstExpr(UninstExpr, ArgList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2480 | if (Result.isInvalid()) |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2481 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2482 | |
| 2483 | if (SetParamDefaultArgument(Param, move(Result), |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2484 | /*FIXME:EqualLoc*/ |
| 2485 | UninstExpr->getSourceRange().getBegin())) |
| 2486 | return ExprError(); |
| 2487 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2488 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2489 | Expr *DefaultExpr = Param->getDefaultArg(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2490 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2491 | // If the default expression creates temporaries, we need to |
| 2492 | // push them to the current stack of expression temporaries so they'll |
| 2493 | // be properly destroyed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2494 | if (CXXExprWithTemporaries *E |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2495 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2496 | assert(!E->shouldDestroyTemporaries() && |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2497 | "Can't destroy temporaries in a default argument expr!"); |
| 2498 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2499 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2500 | } |
| 2501 | } |
| 2502 | |
| 2503 | // We already type-checked the argument, so we know it works. |
| 2504 | return Owned(CXXDefaultArgExpr::Create(Context, Param)); |
| 2505 | } |
| 2506 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2507 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2508 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2509 | /// function prototype Proto. Call is the call expression itself, and |
| 2510 | /// Fn is the function expression. For a C++ member function, this |
| 2511 | /// routine does not attempt to convert the object argument. Returns |
| 2512 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2513 | bool |
| 2514 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2515 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2516 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2517 | Expr **Args, unsigned NumArgs, |
| 2518 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2519 | // 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] | 2520 | // assignment, to the types of the corresponding parameter, ... |
| 2521 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2522 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2523 | bool Invalid = false; |
| 2524 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2525 | // If too few arguments are available (and we don't have default |
| 2526 | // arguments for the remaining parameters), don't make the call. |
| 2527 | if (NumArgs < NumArgsInProto) { |
| 2528 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2529 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2530 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2531 | // Use default arguments for missing arguments |
| 2532 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2533 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2534 | } |
| 2535 | |
| 2536 | // If too many are passed and not variadic, error on the extras and drop |
| 2537 | // them. |
| 2538 | if (NumArgs > NumArgsInProto) { |
| 2539 | if (!Proto->isVariadic()) { |
| 2540 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2541 | diag::err_typecheck_call_too_many_args) |
| 2542 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2543 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2544 | Args[NumArgs-1]->getLocEnd()); |
| 2545 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2546 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2547 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2548 | } |
| 2549 | NumArgsToCheck = NumArgsInProto; |
| 2550 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2551 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2552 | // Continue to check argument types (even if we have too few/many args). |
| 2553 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2554 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2555 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2556 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2557 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2558 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2559 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2560 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2561 | ProtoArgType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2562 | PDiag(diag::err_call_incomplete_argument) |
| 2563 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2564 | return true; |
| 2565 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2566 | // Pass the argument. |
| 2567 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2568 | return true; |
Anders Carlsson | 03d8ed4 | 2009-11-13 04:34:45 +0000 | [diff] [blame] | 2569 | |
Anders Carlsson | 4b3cbea | 2009-11-13 17:04:35 +0000 | [diff] [blame] | 2570 | if (!ProtoArgType->isReferenceType()) |
| 2571 | Arg = MaybeBindToTemporary(Arg).takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2572 | } else { |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 2573 | ParmVarDecl *Param = FDecl->getParamDecl(i); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2574 | |
| 2575 | OwningExprResult ArgExpr = |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2576 | BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(), |
| 2577 | FDecl, Param); |
| 2578 | if (ArgExpr.isInvalid()) |
| 2579 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2580 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2581 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2582 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2583 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2584 | Call->setArg(i, Arg); |
| 2585 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2586 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2587 | // If this is a variadic call, handle args passed through "...". |
| 2588 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2589 | VariadicCallType CallType = VariadicFunction; |
| 2590 | if (Fn->getType()->isBlockPointerType()) |
| 2591 | CallType = VariadicBlock; // Block |
| 2592 | else if (isa<MemberExpr>(Fn)) |
| 2593 | CallType = VariadicMethod; |
| 2594 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2595 | // Promote the arguments (C99 6.5.2.2p7). |
Eli Friedman | 3e42ffd | 2009-11-14 04:43:10 +0000 | [diff] [blame] | 2596 | for (unsigned i = NumArgsInProto; i < NumArgs; i++) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2597 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2598 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2599 | Call->setArg(i, Arg); |
| 2600 | } |
| 2601 | } |
| 2602 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2603 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2604 | } |
| 2605 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2606 | /// \brief "Deconstruct" the function argument of a call expression to find |
| 2607 | /// the underlying declaration (if any), the name of the called function, |
| 2608 | /// whether argument-dependent lookup is available, whether it has explicit |
| 2609 | /// template arguments, etc. |
| 2610 | void Sema::DeconstructCallFunction(Expr *FnExpr, |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2611 | llvm::SmallVectorImpl<NamedDecl*> &Fns, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2612 | DeclarationName &Name, |
| 2613 | NestedNameSpecifier *&Qualifier, |
| 2614 | SourceRange &QualifierRange, |
| 2615 | bool &ArgumentDependentLookup, |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2616 | bool &Overloaded, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2617 | bool &HasExplicitTemplateArguments, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2618 | TemplateArgumentListInfo &ExplicitTemplateArgs) { |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2619 | // Set defaults for all of the output parameters. |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2620 | Name = DeclarationName(); |
| 2621 | Qualifier = 0; |
| 2622 | QualifierRange = SourceRange(); |
| 2623 | ArgumentDependentLookup = getLangOptions().CPlusPlus; |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2624 | Overloaded = false; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2625 | HasExplicitTemplateArguments = false; |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2626 | |
| 2627 | // Most of the explicit tracking of ArgumentDependentLookup in this |
| 2628 | // function can disappear when we handle unresolved |
| 2629 | // TemplateIdRefExprs properly. |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2630 | |
| 2631 | // If we're directly calling a function, get the appropriate declaration. |
| 2632 | // Also, in C++, keep track of whether we should perform argument-dependent |
| 2633 | // lookup and whether there were any explicitly-specified template arguments. |
| 2634 | while (true) { |
| 2635 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2636 | FnExpr = IcExpr->getSubExpr(); |
| 2637 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
| 2638 | // Parentheses around a function disable ADL |
| 2639 | // (C++0x [basic.lookup.argdep]p1). |
| 2640 | ArgumentDependentLookup = false; |
| 2641 | FnExpr = PExpr->getSubExpr(); |
| 2642 | } else if (isa<UnaryOperator>(FnExpr) && |
| 2643 | cast<UnaryOperator>(FnExpr)->getOpcode() |
| 2644 | == UnaryOperator::AddrOf) { |
| 2645 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2646 | } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2647 | Fns.push_back(cast<NamedDecl>(DRExpr->getDecl())); |
| 2648 | ArgumentDependentLookup = false; |
| 2649 | if ((Qualifier = DRExpr->getQualifier())) |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 2650 | QualifierRange = DRExpr->getQualifierRange(); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2651 | break; |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2652 | } else if (UnresolvedLookupExpr *UnresLookup |
| 2653 | = dyn_cast<UnresolvedLookupExpr>(FnExpr)) { |
| 2654 | Name = UnresLookup->getName(); |
| 2655 | Fns.append(UnresLookup->decls_begin(), UnresLookup->decls_end()); |
| 2656 | ArgumentDependentLookup = UnresLookup->requiresADL(); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2657 | Overloaded = UnresLookup->isOverloaded(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2658 | if ((Qualifier = UnresLookup->getQualifier())) |
| 2659 | QualifierRange = UnresLookup->getQualifierRange(); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2660 | break; |
| 2661 | } else if (TemplateIdRefExpr *TemplateIdRef |
| 2662 | = dyn_cast<TemplateIdRefExpr>(FnExpr)) { |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2663 | if (NamedDecl *Function |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2664 | = TemplateIdRef->getTemplateName().getAsTemplateDecl()) { |
| 2665 | Name = Function->getDeclName(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2666 | Fns.push_back(Function); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2667 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2668 | else { |
| 2669 | OverloadedFunctionDecl *Overload |
| 2670 | = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2671 | Name = Overload->getDeclName(); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2672 | Fns.append(Overload->function_begin(), Overload->function_end()); |
| 2673 | } |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2674 | Overloaded = true; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2675 | HasExplicitTemplateArguments = true; |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2676 | TemplateIdRef->copyTemplateArgumentsInto(ExplicitTemplateArgs); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2677 | |
| 2678 | // C++ [temp.arg.explicit]p6: |
| 2679 | // [Note: For simple function names, argument dependent lookup (3.4.2) |
| 2680 | // applies even when the function name is not visible within the |
| 2681 | // scope of the call. This is because the call still has the syntactic |
| 2682 | // form of a function call (3.4.1). But when a function template with |
| 2683 | // explicit template arguments is used, the call does not have the |
| 2684 | // correct syntactic form unless there is a function template with |
| 2685 | // that name visible at the point of the call. If no such name is |
| 2686 | // visible, the call is not syntactically well-formed and |
| 2687 | // argument-dependent lookup does not apply. If some such name is |
| 2688 | // visible, argument dependent lookup applies and additional function |
| 2689 | // templates may be found in other namespaces. |
| 2690 | // |
| 2691 | // The summary of this paragraph is that, if we get to this point and the |
| 2692 | // template-id was not a qualified name, then argument-dependent lookup |
| 2693 | // is still possible. |
| 2694 | if ((Qualifier = TemplateIdRef->getQualifier())) { |
| 2695 | ArgumentDependentLookup = false; |
| 2696 | QualifierRange = TemplateIdRef->getQualifierRange(); |
| 2697 | } |
| 2698 | break; |
| 2699 | } else { |
| 2700 | // Any kind of name that does not refer to a declaration (or |
| 2701 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2702 | ArgumentDependentLookup = false; |
| 2703 | break; |
| 2704 | } |
| 2705 | } |
| 2706 | } |
| 2707 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2708 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2709 | /// This provides the location of the left/right parens and a list of comma |
| 2710 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2711 | Action::OwningExprResult |
| 2712 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2713 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2714 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2715 | unsigned NumArgs = args.size(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2716 | |
| 2717 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 2718 | fn = MaybeConvertParenListExprToParenExpr(S, move(fn)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2719 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2720 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2721 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2722 | assert(Fn && "no function call expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2723 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2724 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2725 | // If this is a pseudo-destructor expression, build the call immediately. |
| 2726 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 2727 | if (NumArgs > 0) { |
| 2728 | // Pseudo-destructor calls should not have any arguments. |
| 2729 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
| 2730 | << CodeModificationHint::CreateRemoval( |
| 2731 | SourceRange(Args[0]->getLocStart(), |
| 2732 | Args[NumArgs-1]->getLocEnd())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2733 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2734 | for (unsigned I = 0; I != NumArgs; ++I) |
| 2735 | Args[I]->Destroy(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2736 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2737 | NumArgs = 0; |
| 2738 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2739 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2740 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
| 2741 | RParenLoc)); |
| 2742 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2743 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2744 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2745 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2746 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2747 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2748 | bool Dependent = false; |
| 2749 | if (Fn->isTypeDependent()) |
| 2750 | Dependent = true; |
| 2751 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2752 | Dependent = true; |
| 2753 | |
| 2754 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2755 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2756 | Context.DependentTy, RParenLoc)); |
| 2757 | |
| 2758 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2759 | if (Fn->getType()->isRecordType()) |
| 2760 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2761 | CommaLocs, RParenLoc)); |
| 2762 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2763 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2764 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2765 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2766 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2767 | isa<CXXMethodDecl>(MemDecl) || |
| 2768 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2769 | isa<CXXMethodDecl>( |
| 2770 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2771 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2772 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2773 | } |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2774 | |
| 2775 | // Determine whether this is a call to a pointer-to-member function. |
| 2776 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) { |
| 2777 | if (BO->getOpcode() == BinaryOperator::PtrMemD || |
| 2778 | BO->getOpcode() == BinaryOperator::PtrMemI) { |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2779 | if (const FunctionProtoType *FPT = |
| 2780 | dyn_cast<FunctionProtoType>(BO->getType())) { |
| 2781 | QualType ResultTy = FPT->getResultType().getNonReferenceType(); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2782 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2783 | ExprOwningPtr<CXXMemberCallExpr> |
| 2784 | TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args, |
| 2785 | NumArgs, ResultTy, |
| 2786 | RParenLoc)); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2787 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2788 | if (CheckCallReturnType(FPT->getResultType(), |
| 2789 | BO->getRHS()->getSourceRange().getBegin(), |
| 2790 | TheCall.get(), 0)) |
| 2791 | return ExprError(); |
Anders Carlsson | 8d6d90d | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 2792 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2793 | if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs, |
| 2794 | RParenLoc)) |
| 2795 | return ExprError(); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2796 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2797 | return Owned(MaybeBindToTemporary(TheCall.release()).release()); |
| 2798 | } |
| 2799 | return ExprError(Diag(Fn->getLocStart(), |
| 2800 | diag::err_typecheck_call_not_function) |
| 2801 | << Fn->getType() << Fn->getSourceRange()); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2802 | } |
| 2803 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2806 | // If we're directly calling a function, get the appropriate declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2807 | // Also, in C++, keep track of whether we should perform argument-dependent |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2808 | // lookup and whether there were any explicitly-specified template arguments. |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2809 | llvm::SmallVector<NamedDecl*,8> Fns; |
| 2810 | DeclarationName UnqualifiedName; |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2811 | bool Overloaded; |
| 2812 | bool ADL; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2813 | bool HasExplicitTemplateArgs = 0; |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2814 | TemplateArgumentListInfo ExplicitTemplateArgs; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2815 | NestedNameSpecifier *Qualifier = 0; |
| 2816 | SourceRange QualifierRange; |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2817 | DeconstructCallFunction(Fn, Fns, UnqualifiedName, Qualifier, QualifierRange, |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2818 | ADL, Overloaded, HasExplicitTemplateArgs, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2819 | ExplicitTemplateArgs); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2820 | |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2821 | NamedDecl *NDecl; // the specific declaration we're calling, if applicable |
| 2822 | FunctionDecl *FDecl; // same, if it's known to be a function |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2823 | |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2824 | if (Overloaded || ADL) { |
| 2825 | #ifndef NDEBUG |
| 2826 | if (ADL) { |
| 2827 | // To do ADL, we must have found an unqualified name. |
| 2828 | assert(UnqualifiedName && "found no unqualified name for ADL"); |
| 2829 | |
| 2830 | // We don't perform ADL for implicit declarations of builtins. |
| 2831 | // Verify that this was correctly set up. |
| 2832 | if (Fns.size() == 1 && (FDecl = dyn_cast<FunctionDecl>(Fns[0])) && |
| 2833 | FDecl->getBuiltinID() && FDecl->isImplicit()) |
| 2834 | assert(0 && "performing ADL for builtin"); |
| 2835 | |
| 2836 | // We don't perform ADL in C. |
| 2837 | assert(getLangOptions().CPlusPlus && "ADL enabled in C"); |
| 2838 | } |
| 2839 | |
| 2840 | if (Overloaded) { |
| 2841 | // To be overloaded, we must either have multiple functions or |
| 2842 | // at least one function template (which is effectively an |
| 2843 | // infinite set of functions). |
| 2844 | assert((Fns.size() > 1 || |
| 2845 | (Fns.size() == 1 && |
| 2846 | isa<FunctionTemplateDecl>(Fns[0]->getUnderlyingDecl()))) |
| 2847 | && "unrecognized overload situation"); |
| 2848 | } |
| 2849 | #endif |
| 2850 | |
| 2851 | FDecl = ResolveOverloadedCallFn(Fn, Fns, UnqualifiedName, |
John McCall | d5532b6 | 2009-11-23 01:53:49 +0000 | [diff] [blame] | 2852 | (HasExplicitTemplateArgs ? &ExplicitTemplateArgs : 0), |
John McCall | 7453ed4 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 2853 | LParenLoc, Args, NumArgs, CommaLocs, |
| 2854 | RParenLoc, ADL); |
| 2855 | if (!FDecl) |
| 2856 | return ExprError(); |
| 2857 | |
| 2858 | Fn = FixOverloadedFunctionReference(Fn, FDecl); |
| 2859 | |
| 2860 | NDecl = FDecl; |
| 2861 | } else { |
| 2862 | assert(Fns.size() <= 1 && "overloaded without Overloaded flag"); |
| 2863 | if (Fns.empty()) |
| 2864 | NDecl = FDecl = 0; |
| 2865 | else { |
| 2866 | NDecl = Fns[0]; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2867 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2868 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2869 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2870 | |
| 2871 | // Promote the function operand. |
| 2872 | UsualUnaryConversions(Fn); |
| 2873 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2874 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2875 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2876 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2877 | Args, NumArgs, |
| 2878 | Context.BoolTy, |
| 2879 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2880 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2881 | const FunctionType *FuncT; |
| 2882 | if (!Fn->getType()->isBlockPointerType()) { |
| 2883 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2884 | // have type pointer to function". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2885 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2886 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2887 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2888 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2889 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2890 | } else { // This is a block call. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2891 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2892 | getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2893 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2894 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2895 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2896 | << Fn->getType() << Fn->getSourceRange()); |
| 2897 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2898 | // Check for a valid return type |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 2899 | if (CheckCallReturnType(FuncT->getResultType(), |
| 2900 | Fn->getSourceRange().getBegin(), TheCall.get(), |
| 2901 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2902 | return ExprError(); |
| 2903 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2904 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2905 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2906 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2907 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2908 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2909 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2910 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2911 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2912 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2913 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2914 | if (FDecl) { |
| 2915 | // Check if we have too few/too many template arguments, based |
| 2916 | // on our knowledge of the function definition. |
| 2917 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2918 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2919 | const FunctionProtoType *Proto = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2920 | Def->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2921 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2922 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2923 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2924 | } |
| 2925 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2926 | } |
| 2927 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2928 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2929 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2930 | Expr *Arg = Args[i]; |
| 2931 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2932 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2933 | Arg->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2934 | PDiag(diag::err_call_incomplete_argument) |
| 2935 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2936 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2937 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2938 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2939 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2940 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2941 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2942 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2943 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2944 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2945 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2946 | // Check for sentinels |
| 2947 | if (NDecl) |
| 2948 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2949 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2950 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 2951 | if (FDecl) { |
| 2952 | if (CheckFunctionCall(FDecl, TheCall.get())) |
| 2953 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2954 | |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 2955 | if (unsigned BuiltinID = FDecl->getBuiltinID()) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 2956 | return CheckBuiltinFunctionCall(BuiltinID, TheCall.take()); |
| 2957 | } else if (NDecl) { |
| 2958 | if (CheckBlockCall(NDecl, TheCall.get())) |
| 2959 | return ExprError(); |
| 2960 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2961 | |
Anders Carlsson | ec74c59 | 2009-08-16 03:06:32 +0000 | [diff] [blame] | 2962 | return MaybeBindToTemporary(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2963 | } |
| 2964 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2965 | Action::OwningExprResult |
| 2966 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 2967 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2968 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 2969 | //FIXME: Preserve type source info. |
| 2970 | QualType literalType = GetTypeFromParser(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 2971 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2972 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2973 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 2974 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2975 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 2976 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2977 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 2978 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 2979 | } else if (!literalType->isDependentType() && |
| 2980 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2981 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2982 | << SourceRange(LParenLoc, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2983 | literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2984 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 2985 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2986 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 2987 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2988 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2989 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 2990 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 2991 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2992 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2993 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 2994 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 2995 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2996 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2997 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 2998 | } |
| 2999 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3000 | Action::OwningExprResult |
| 3001 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3002 | SourceLocation RBraceLoc) { |
| 3003 | unsigned NumInit = initlist.size(); |
| 3004 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3005 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3006 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3007 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3008 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3009 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 3010 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3011 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3012 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3013 | } |
| 3014 | |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3015 | static CastExpr::CastKind getScalarCastKind(ASTContext &Context, |
| 3016 | QualType SrcTy, QualType DestTy) { |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3017 | if (Context.hasSameUnqualifiedType(SrcTy, DestTy)) |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3018 | return CastExpr::CK_NoOp; |
| 3019 | |
| 3020 | if (SrcTy->hasPointerRepresentation()) { |
| 3021 | if (DestTy->hasPointerRepresentation()) |
| 3022 | return CastExpr::CK_BitCast; |
| 3023 | if (DestTy->isIntegerType()) |
| 3024 | return CastExpr::CK_PointerToIntegral; |
| 3025 | } |
| 3026 | |
| 3027 | if (SrcTy->isIntegerType()) { |
| 3028 | if (DestTy->isIntegerType()) |
| 3029 | return CastExpr::CK_IntegralCast; |
| 3030 | if (DestTy->hasPointerRepresentation()) |
| 3031 | return CastExpr::CK_IntegralToPointer; |
| 3032 | if (DestTy->isRealFloatingType()) |
| 3033 | return CastExpr::CK_IntegralToFloating; |
| 3034 | } |
| 3035 | |
| 3036 | if (SrcTy->isRealFloatingType()) { |
| 3037 | if (DestTy->isRealFloatingType()) |
| 3038 | return CastExpr::CK_FloatingCast; |
| 3039 | if (DestTy->isIntegerType()) |
| 3040 | return CastExpr::CK_FloatingToIntegral; |
| 3041 | } |
| 3042 | |
| 3043 | // FIXME: Assert here. |
| 3044 | // assert(false && "Unhandled cast combination!"); |
| 3045 | return CastExpr::CK_Unknown; |
| 3046 | } |
| 3047 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3048 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3049 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3050 | CastExpr::CastKind& Kind, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3051 | CXXMethodDecl *& ConversionDecl, |
| 3052 | bool FunctionalStyle) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3053 | if (getLangOptions().CPlusPlus) |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3054 | return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle, |
| 3055 | ConversionDecl); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3056 | |
Eli Friedman | 199ea95 | 2009-08-15 19:02:19 +0000 | [diff] [blame] | 3057 | DefaultFunctionArrayConversion(castExpr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3058 | |
| 3059 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 3060 | // type needs to be scalar. |
| 3061 | if (castType->isVoidType()) { |
| 3062 | // Cast to void allows any expr type. |
Anders Carlsson | ebeaf20 | 2009-10-16 02:35:04 +0000 | [diff] [blame] | 3063 | Kind = CastExpr::CK_ToVoid; |
| 3064 | return false; |
| 3065 | } |
| 3066 | |
| 3067 | if (!castType->isScalarType() && !castType->isVectorType()) { |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3068 | if (Context.hasSameUnqualifiedType(castType, castExpr->getType()) && |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3069 | (castType->isStructureType() || castType->isUnionType())) { |
| 3070 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3071 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3072 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 3073 | << castType << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3074 | Kind = CastExpr::CK_NoOp; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3075 | return false; |
| 3076 | } |
| 3077 | |
| 3078 | if (castType->isUnionType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3079 | // GCC cast to union extension |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3080 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3081 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3082 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3083 | Field != FieldEnd; ++Field) { |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3084 | if (Context.hasSameUnqualifiedType(Field->getType(), |
| 3085 | castExpr->getType())) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3086 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 3087 | << castExpr->getSourceRange(); |
| 3088 | break; |
| 3089 | } |
| 3090 | } |
| 3091 | if (Field == FieldEnd) |
| 3092 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 3093 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3094 | Kind = CastExpr::CK_ToUnion; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3095 | return false; |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3096 | } |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3097 | |
| 3098 | // Reject any other conversions to non-scalar types. |
| 3099 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
| 3100 | << castType << castExpr->getSourceRange(); |
| 3101 | } |
| 3102 | |
| 3103 | if (!castExpr->getType()->isScalarType() && |
| 3104 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3105 | return Diag(castExpr->getLocStart(), |
| 3106 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3107 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3108 | } |
| 3109 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3110 | if (castType->isExtVectorType()) |
| 3111 | return CheckExtVectorCast(TyR, castType, castExpr, Kind); |
| 3112 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3113 | if (castType->isVectorType()) |
| 3114 | return CheckVectorCast(TyR, castType, castExpr->getType(), Kind); |
| 3115 | if (castExpr->getType()->isVectorType()) |
| 3116 | return CheckVectorCast(TyR, castExpr->getType(), castType, Kind); |
| 3117 | |
| 3118 | if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3119 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3120 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3121 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3122 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
| 3123 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3124 | if (!castType->isArithmeticType()) { |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3125 | QualType castExprType = castExpr->getType(); |
| 3126 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3127 | return Diag(castExpr->getLocStart(), |
| 3128 | diag::err_cast_pointer_from_non_pointer_int) |
| 3129 | << castExprType << castExpr->getSourceRange(); |
| 3130 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3131 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3132 | return Diag(castExpr->getLocStart(), |
| 3133 | diag::err_cast_pointer_to_non_pointer_int) |
| 3134 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3135 | } |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3136 | |
| 3137 | Kind = getScalarCastKind(Context, castExpr->getType(), castType); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3138 | return false; |
| 3139 | } |
| 3140 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3141 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
| 3142 | CastExpr::CastKind &Kind) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3143 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3144 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3145 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3146 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3147 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3148 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3149 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3150 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3151 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3152 | } else |
| 3153 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3154 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3155 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3156 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3157 | Kind = CastExpr::CK_BitCast; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3158 | return false; |
| 3159 | } |
| 3160 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3161 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr, |
| 3162 | CastExpr::CastKind &Kind) { |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3163 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3164 | |
| 3165 | QualType SrcTy = CastExpr->getType(); |
| 3166 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3167 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3168 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3169 | if (SrcTy->isVectorType()) { |
| 3170 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3171 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3172 | << DestTy << SrcTy << R; |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3173 | Kind = CastExpr::CK_BitCast; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3174 | return false; |
| 3175 | } |
| 3176 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3177 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3178 | // conversion will take place first from scalar to elt type, and then |
| 3179 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3180 | if (SrcTy->isPointerType()) |
| 3181 | return Diag(R.getBegin(), |
| 3182 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3183 | << DestTy << SrcTy << R; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3184 | |
| 3185 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
| 3186 | ImpCastExprToType(CastExpr, DestElemTy, |
| 3187 | getScalarCastKind(Context, SrcTy, DestElemTy)); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3188 | |
| 3189 | Kind = CastExpr::CK_VectorSplat; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3190 | return false; |
| 3191 | } |
| 3192 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3193 | Action::OwningExprResult |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3194 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3195 | SourceLocation RParenLoc, ExprArg Op) { |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3196 | CastExpr::CastKind Kind = CastExpr::CK_Unknown; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3197 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3198 | assert((Ty != 0) && (Op.get() != 0) && |
| 3199 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3200 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3201 | Expr *castExpr = (Expr *)Op.get(); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3202 | //FIXME: Preserve type source info. |
| 3203 | QualType castType = GetTypeFromParser(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3204 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3205 | // If the Expr being casted is a ParenListExpr, handle it specially. |
| 3206 | if (isa<ParenListExpr>(castExpr)) |
| 3207 | return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3208 | CXXMethodDecl *Method = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3209 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3210 | Kind, Method)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3211 | return ExprError(); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3212 | |
| 3213 | if (Method) { |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3214 | OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3215 | Method, move(Op)); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3216 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3217 | if (CastArg.isInvalid()) |
| 3218 | return ExprError(); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3219 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3220 | castExpr = CastArg.takeAs<Expr>(); |
| 3221 | } else { |
| 3222 | Op.release(); |
Fariborz Jahanian | 3197659 | 2009-08-29 19:15:16 +0000 | [diff] [blame] | 3223 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3224 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3225 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3226 | Kind, castExpr, castType, |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3227 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3228 | } |
| 3229 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3230 | /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence |
| 3231 | /// of comma binary operators. |
| 3232 | Action::OwningExprResult |
| 3233 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) { |
| 3234 | Expr *expr = EA.takeAs<Expr>(); |
| 3235 | ParenListExpr *E = dyn_cast<ParenListExpr>(expr); |
| 3236 | if (!E) |
| 3237 | return Owned(expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3238 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3239 | OwningExprResult Result(*this, E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3240 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3241 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
| 3242 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result), |
| 3243 | Owned(E->getExpr(i))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3244 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3245 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result)); |
| 3246 | } |
| 3247 | |
| 3248 | Action::OwningExprResult |
| 3249 | Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 3250 | SourceLocation RParenLoc, ExprArg Op, |
| 3251 | QualType Ty) { |
| 3252 | ParenListExpr *PE = (ParenListExpr *)Op.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3253 | |
| 3254 | // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')' |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3255 | // then handle it as such. |
| 3256 | if (getLangOptions().AltiVec && Ty->isVectorType()) { |
| 3257 | if (PE->getNumExprs() == 0) { |
| 3258 | Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 3259 | return ExprError(); |
| 3260 | } |
| 3261 | |
| 3262 | llvm::SmallVector<Expr *, 8> initExprs; |
| 3263 | for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i) |
| 3264 | initExprs.push_back(PE->getExpr(i)); |
| 3265 | |
| 3266 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 3267 | // braces instead of the original commas. |
| 3268 | Op.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3269 | InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0], |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3270 | initExprs.size(), RParenLoc); |
| 3271 | E->setType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3272 | return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc, |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3273 | Owned(E)); |
| 3274 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3275 | // 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] | 3276 | // sequence of BinOp comma operators. |
| 3277 | Op = MaybeConvertParenListExprToParenExpr(S, move(Op)); |
| 3278 | return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op)); |
| 3279 | } |
| 3280 | } |
| 3281 | |
| 3282 | Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 3283 | SourceLocation R, |
| 3284 | MultiExprArg Val) { |
| 3285 | unsigned nexprs = Val.size(); |
| 3286 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
| 3287 | assert((exprs != 0) && "ActOnParenListExpr() missing expr list"); |
| 3288 | Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
| 3289 | return Owned(expr); |
| 3290 | } |
| 3291 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3292 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3293 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3294 | /// C99 6.5.15 |
| 3295 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3296 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3297 | // C++ is sufficiently different to merit its own checker. |
| 3298 | if (getLangOptions().CPlusPlus) |
| 3299 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3300 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 3301 | CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional); |
| 3302 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3303 | UsualUnaryConversions(Cond); |
| 3304 | UsualUnaryConversions(LHS); |
| 3305 | UsualUnaryConversions(RHS); |
| 3306 | QualType CondTy = Cond->getType(); |
| 3307 | QualType LHSTy = LHS->getType(); |
| 3308 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3309 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3310 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3311 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3312 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3313 | << CondTy; |
| 3314 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3315 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3316 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3317 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3318 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
| 3319 | return CheckVectorOperands(QuestionLoc, LHS, RHS); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3320 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3321 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3322 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3323 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3324 | UsualArithmeticConversions(LHS, RHS); |
| 3325 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3326 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3327 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3328 | // If both operands are the same structure or union type, the result is that |
| 3329 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3330 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3331 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3332 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3333 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3334 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3335 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3336 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3337 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3338 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3339 | // 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] | 3340 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3341 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3342 | if (!LHSTy->isVoidType()) |
| 3343 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3344 | << RHS->getSourceRange(); |
| 3345 | if (!RHSTy->isVoidType()) |
| 3346 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3347 | << LHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3348 | ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid); |
| 3349 | ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3350 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3351 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3352 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3353 | // the type of the other operand." |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3354 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3355 | RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3356 | // promote the null to a pointer. |
| 3357 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3358 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3359 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3360 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3361 | LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3362 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3363 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3364 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3365 | // Handle things like Class and struct objc_class*. Here we case the result |
| 3366 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 3367 | // redefinition type if an attempt is made to access its fields. |
| 3368 | if (LHSTy->isObjCClassType() && |
| 3369 | (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3370 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3371 | return LHSTy; |
| 3372 | } |
| 3373 | if (RHSTy->isObjCClassType() && |
| 3374 | (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3375 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3376 | return RHSTy; |
| 3377 | } |
| 3378 | // And the same for struct objc_object* / id |
| 3379 | if (LHSTy->isObjCIdType() && |
| 3380 | (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3381 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3382 | return LHSTy; |
| 3383 | } |
| 3384 | if (RHSTy->isObjCIdType() && |
| 3385 | (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3386 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3387 | return RHSTy; |
| 3388 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3389 | // Handle block pointer types. |
| 3390 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3391 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3392 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3393 | QualType destType = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3394 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
| 3395 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3396 | return destType; |
| 3397 | } |
| 3398 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3399 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3400 | return QualType(); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3401 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3402 | // We have 2 block pointer types. |
| 3403 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3404 | // Two identical block pointer types are always compatible. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3405 | return LHSTy; |
| 3406 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3407 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3408 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3409 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3410 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3411 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3412 | rhptee.getUnqualifiedType())) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3413 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3414 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3415 | // In this situation, we assume void* type. No especially good |
| 3416 | // reason, but this is what gcc does, and we do have to pick |
| 3417 | // to get a consistent AST. |
| 3418 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3419 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3420 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3421 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3422 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3423 | // The block pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3424 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3425 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3426 | return LHSTy; |
| 3427 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3428 | // Check constraints for Objective-C object pointers types. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3429 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3430 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3431 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3432 | // Two identical object pointer types are always compatible. |
| 3433 | return LHSTy; |
| 3434 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3435 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>(); |
| 3436 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3437 | QualType compositeType = LHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3438 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3439 | // If both operands are interfaces and either operand can be |
| 3440 | // assigned to the other, use that type as the composite |
| 3441 | // type. This allows |
| 3442 | // xxx ? (A*) a : (B*) b |
| 3443 | // where B is a subclass of A. |
| 3444 | // |
| 3445 | // Additionally, as for assignment, if either type is 'id' |
| 3446 | // allow silent coercion. Finally, if the types are |
| 3447 | // incompatible then make sure to use 'id' as the composite |
| 3448 | // type so the result is acceptable for sending messages to. |
| 3449 | |
| 3450 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3451 | // It could return the composite type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3452 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3453 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3454 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3455 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3456 | } else if ((LHSTy->isObjCQualifiedIdType() || |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3457 | RHSTy->isObjCQualifiedIdType()) && |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3458 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3459 | // Need to handle "id<xx>" explicitly. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3460 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3461 | // id. Currently localizing to here until clear this should be |
| 3462 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 3463 | compositeType = Context.getObjCIdType(); |
| 3464 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3465 | compositeType = Context.getObjCIdType(); |
Fariborz Jahanian | db07b3f | 2009-10-27 23:02:38 +0000 | [diff] [blame] | 3466 | } else if (!(compositeType = |
| 3467 | Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) |
| 3468 | ; |
| 3469 | else { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3470 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3471 | << LHSTy << RHSTy |
| 3472 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3473 | QualType incompatTy = Context.getObjCIdType(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3474 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3475 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3476 | return incompatTy; |
| 3477 | } |
| 3478 | // The object pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3479 | ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast); |
| 3480 | ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3481 | return compositeType; |
| 3482 | } |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3483 | // Check Objective-C object pointer types and 'void *' |
| 3484 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3485 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3486 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3487 | QualType destPointee |
| 3488 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3489 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3490 | // Add qualifiers if necessary. |
| 3491 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3492 | // Promote to void*. |
| 3493 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3494 | return destType; |
| 3495 | } |
| 3496 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3497 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3498 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3499 | QualType destPointee |
| 3500 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3501 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3502 | // Add qualifiers if necessary. |
| 3503 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
| 3504 | // Promote to void*. |
| 3505 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3506 | return destType; |
| 3507 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3508 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3509 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3510 | // get the "pointed to" types |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3511 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3512 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3513 | |
| 3514 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3515 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3516 | // Figure out necessary qualifiers (C99 6.5.15p6) |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3517 | QualType destPointee |
| 3518 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3519 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3520 | // Add qualifiers if necessary. |
| 3521 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3522 | // Promote to void*. |
| 3523 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3524 | return destType; |
| 3525 | } |
| 3526 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3527 | QualType destPointee |
| 3528 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3529 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3530 | // Add qualifiers if necessary. |
Eli Friedman | 16fea9b | 2009-11-17 01:22:05 +0000 | [diff] [blame] | 3531 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3532 | // Promote to void*. |
Eli Friedman | 16fea9b | 2009-11-17 01:22:05 +0000 | [diff] [blame] | 3533 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3534 | return destType; |
| 3535 | } |
| 3536 | |
| 3537 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3538 | // Two identical pointer types are always compatible. |
| 3539 | return LHSTy; |
| 3540 | } |
| 3541 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3542 | rhptee.getUnqualifiedType())) { |
| 3543 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3544 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3545 | // In this situation, we assume void* type. No especially good |
| 3546 | // reason, but this is what gcc does, and we do have to pick |
| 3547 | // to get a consistent AST. |
| 3548 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3549 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3550 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3551 | return incompatTy; |
| 3552 | } |
| 3553 | // The pointer types are compatible. |
| 3554 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3555 | // differently qualified versions of compatible types, the result type is |
| 3556 | // a pointer to an appropriately qualified version of the *composite* |
| 3557 | // type. |
| 3558 | // FIXME: Need to calculate the composite type. |
| 3559 | // FIXME: Need to add qualifiers |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3560 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3561 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3562 | return LHSTy; |
| 3563 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3564 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3565 | // GCC compatibility: soften pointer/integer mismatch. |
| 3566 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3567 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3568 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3569 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3570 | return RHSTy; |
| 3571 | } |
| 3572 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3573 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3574 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3575 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3576 | return LHSTy; |
| 3577 | } |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3578 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3579 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3580 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3581 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3582 | return QualType(); |
| 3583 | } |
| 3584 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3585 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3586 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3587 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3588 | SourceLocation ColonLoc, |
| 3589 | ExprArg Cond, ExprArg LHS, |
| 3590 | ExprArg RHS) { |
| 3591 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3592 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3593 | |
| 3594 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3595 | // was the condition. |
| 3596 | bool isLHSNull = LHSExpr == 0; |
| 3597 | if (isLHSNull) |
| 3598 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3599 | |
| 3600 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3601 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3602 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3603 | return ExprError(); |
| 3604 | |
| 3605 | Cond.release(); |
| 3606 | LHS.release(); |
| 3607 | RHS.release(); |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3608 | return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3609 | isLHSNull ? 0 : LHSExpr, |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3610 | ColonLoc, RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3611 | } |
| 3612 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3613 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3614 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3615 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3616 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3617 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3618 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3619 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3620 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3621 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3622 | if ((lhsType->isObjCClassType() && |
| 3623 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3624 | (rhsType->isObjCClassType() && |
| 3625 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3626 | return Compatible; |
| 3627 | } |
| 3628 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3629 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3630 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 3631 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3632 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3633 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3634 | lhptee = Context.getCanonicalType(lhptee); |
| 3635 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3636 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3637 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3638 | |
| 3639 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3640 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3641 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3642 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3643 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3644 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3645 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3646 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3647 | // 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] | 3648 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3649 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3650 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3651 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3652 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3653 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3654 | assert(rhptee->isFunctionType()); |
| 3655 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3656 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3657 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3658 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3659 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3660 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3661 | |
| 3662 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3663 | assert(lhptee->isFunctionType()); |
| 3664 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3665 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3666 | // 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] | 3667 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3668 | lhptee = lhptee.getUnqualifiedType(); |
| 3669 | rhptee = rhptee.getUnqualifiedType(); |
| 3670 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3671 | // Check if the pointee types are compatible ignoring the sign. |
| 3672 | // We explicitly check for char so that we catch "char" vs |
| 3673 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3674 | if (lhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3675 | lhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3676 | else if (lhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3677 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3678 | |
| 3679 | if (rhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3680 | rhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3681 | else if (rhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3682 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3683 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3684 | if (lhptee == rhptee) { |
| 3685 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3686 | // takes priority over sign incompatibility because the sign |
| 3687 | // warning can be disabled. |
| 3688 | if (ConvTy != Compatible) |
| 3689 | return ConvTy; |
| 3690 | return IncompatiblePointerSign; |
| 3691 | } |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 3692 | |
| 3693 | // If we are a multi-level pointer, it's possible that our issue is simply |
| 3694 | // one of qualification - e.g. char ** -> const char ** is not allowed. If |
| 3695 | // the eventual target type is the same and the pointers have the same |
| 3696 | // level of indirection, this must be the issue. |
| 3697 | if (lhptee->isPointerType() && rhptee->isPointerType()) { |
| 3698 | do { |
| 3699 | lhptee = lhptee->getAs<PointerType>()->getPointeeType(); |
| 3700 | rhptee = rhptee->getAs<PointerType>()->getPointeeType(); |
| 3701 | |
| 3702 | lhptee = Context.getCanonicalType(lhptee); |
| 3703 | rhptee = Context.getCanonicalType(rhptee); |
| 3704 | } while (lhptee->isPointerType() && rhptee->isPointerType()); |
| 3705 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3706 | if (Context.hasSameUnqualifiedType(lhptee, rhptee)) |
Sean Hunt | c9132b6 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 3707 | return IncompatibleNestedPointerQualifiers; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 3708 | } |
| 3709 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3710 | // General pointer incompatibility takes priority over qualifiers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3711 | return IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3712 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3713 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3714 | } |
| 3715 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3716 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3717 | /// block pointer types are compatible or whether a block and normal pointer |
| 3718 | /// are compatible. It is more restrict than comparing two function pointer |
| 3719 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3720 | Sema::AssignConvertType |
| 3721 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3722 | QualType rhsType) { |
| 3723 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3724 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3725 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3726 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 3727 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3728 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3729 | // make sure we operate on the canonical type |
| 3730 | lhptee = Context.getCanonicalType(lhptee); |
| 3731 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3732 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3733 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3734 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3735 | // For blocks we enforce that qualifiers are identical. |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 3736 | if (lhptee.getLocalCVRQualifiers() != rhptee.getLocalCVRQualifiers()) |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3737 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3738 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3739 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3740 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3741 | return ConvTy; |
| 3742 | } |
| 3743 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3744 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3745 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3746 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3747 | /// |
| 3748 | /// int a, *pint; |
| 3749 | /// short *pshort; |
| 3750 | /// struct foo *pfoo; |
| 3751 | /// |
| 3752 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3753 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3754 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3755 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3756 | /// |
| 3757 | /// 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] | 3758 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3759 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3760 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3761 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3762 | // Get canonical types. We're not formatting these types, just comparing |
| 3763 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3764 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3765 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3766 | |
| 3767 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3768 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3769 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3770 | if ((lhsType->isObjCClassType() && |
| 3771 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3772 | (rhsType->isObjCClassType() && |
| 3773 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3774 | return Compatible; |
| 3775 | } |
| 3776 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3777 | // If the left-hand side is a reference type, then we are in a |
| 3778 | // (rare!) case where we've allowed the use of references in C, |
| 3779 | // e.g., as a parameter type in a built-in function. In this case, |
| 3780 | // just make sure that the type referenced is compatible with the |
| 3781 | // right-hand side type. The caller is responsible for adjusting |
| 3782 | // lhsType so that the resulting expression does not have reference |
| 3783 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3784 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3785 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3786 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3787 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3788 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3789 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3790 | // to the same ExtVector type. |
| 3791 | if (lhsType->isExtVectorType()) { |
| 3792 | if (rhsType->isExtVectorType()) |
| 3793 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3794 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3795 | return Compatible; |
| 3796 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3797 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3798 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3799 | // 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] | 3800 | // 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] | 3801 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3802 | if (getLangOptions().LaxVectorConversions && |
| 3803 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3804 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3805 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3806 | } |
| 3807 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3808 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3809 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3810 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3811 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3812 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3813 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3814 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3815 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3816 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3817 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3818 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3819 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3820 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3821 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3822 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3823 | return Compatible; |
| 3824 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3825 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3826 | if (rhsType->getAs<BlockPointerType>()) { |
| 3827 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3828 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3829 | |
| 3830 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3831 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3832 | return Compatible; |
| 3833 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3834 | return Incompatible; |
| 3835 | } |
| 3836 | |
| 3837 | if (isa<BlockPointerType>(lhsType)) { |
| 3838 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3839 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3840 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3841 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3842 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3843 | return Compatible; |
| 3844 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3845 | if (rhsType->isBlockPointerType()) |
| 3846 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3847 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3848 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3849 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3850 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3851 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3852 | return Incompatible; |
| 3853 | } |
| 3854 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3855 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 3856 | if (rhsType->isIntegerType()) |
| 3857 | return IntToPointer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3858 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3859 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3860 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3861 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 3862 | return Compatible; |
| 3863 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3864 | } |
| 3865 | if (rhsType->isObjCObjectPointerType()) { |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 3866 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 3867 | return Compatible; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3868 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 3869 | return Compatible; |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3870 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 3871 | return IncompatibleObjCQualifiedId; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3872 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3873 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3874 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3875 | if (RHSPT->getPointeeType()->isVoidType()) |
| 3876 | return Compatible; |
| 3877 | } |
| 3878 | // Treat block pointers as objects. |
| 3879 | if (rhsType->isBlockPointerType()) |
| 3880 | return Compatible; |
| 3881 | return Incompatible; |
| 3882 | } |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3883 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3884 | // 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] | 3885 | if (lhsType == Context.BoolTy) |
| 3886 | return Compatible; |
| 3887 | |
| 3888 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3889 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3890 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3891 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3892 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3893 | |
| 3894 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3895 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3896 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3897 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3898 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3899 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 3900 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 3901 | if (lhsType == Context.BoolTy) |
| 3902 | return Compatible; |
| 3903 | |
| 3904 | if (lhsType->isIntegerType()) |
| 3905 | return PointerToInt; |
| 3906 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3907 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3908 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3909 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3910 | return Compatible; |
| 3911 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3912 | } |
| 3913 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3914 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3915 | return Compatible; |
| 3916 | return Incompatible; |
| 3917 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3918 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3919 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3920 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3921 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3922 | } |
| 3923 | return Incompatible; |
| 3924 | } |
| 3925 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3926 | /// \brief Constructs a transparent union from an expression that is |
| 3927 | /// used to initialize the transparent union. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3928 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3929 | QualType UnionType, FieldDecl *Field) { |
| 3930 | // Build an initializer list that designates the appropriate member |
| 3931 | // of the transparent union. |
| 3932 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3933 | &E, 1, |
| 3934 | SourceLocation()); |
| 3935 | Initializer->setType(UnionType); |
| 3936 | Initializer->setInitializedFieldInUnion(Field); |
| 3937 | |
| 3938 | // Build a compound literal constructing a value of the transparent |
| 3939 | // union type from this initializer list. |
| 3940 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3941 | false); |
| 3942 | } |
| 3943 | |
| 3944 | Sema::AssignConvertType |
| 3945 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3946 | QualType FromType = rExpr->getType(); |
| 3947 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3948 | // 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] | 3949 | // transparent_union GCC extension. |
| 3950 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3951 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3952 | return Incompatible; |
| 3953 | |
| 3954 | // The field to initialize within the transparent union. |
| 3955 | RecordDecl *UD = UT->getDecl(); |
| 3956 | FieldDecl *InitField = 0; |
| 3957 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3958 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 3959 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3960 | it != itend; ++it) { |
| 3961 | if (it->getType()->isPointerType()) { |
| 3962 | // If the transparent union contains a pointer type, we allow: |
| 3963 | // 1) void pointer |
| 3964 | // 2) null pointer constant |
| 3965 | if (FromType->isPointerType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3966 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3967 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3968 | InitField = *it; |
| 3969 | break; |
| 3970 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3971 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3972 | if (rExpr->isNullPointerConstant(Context, |
| 3973 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3974 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3975 | InitField = *it; |
| 3976 | break; |
| 3977 | } |
| 3978 | } |
| 3979 | |
| 3980 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 3981 | == Compatible) { |
| 3982 | InitField = *it; |
| 3983 | break; |
| 3984 | } |
| 3985 | } |
| 3986 | |
| 3987 | if (!InitField) |
| 3988 | return Incompatible; |
| 3989 | |
| 3990 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 3991 | return Compatible; |
| 3992 | } |
| 3993 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3994 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 3995 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3996 | if (getLangOptions().CPlusPlus) { |
| 3997 | if (!lhsType->isRecordType()) { |
| 3998 | // C++ 5.17p3: If the left operand is not of class type, the |
| 3999 | // expression is implicitly converted (C++ 4) to the |
| 4000 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 4001 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 4002 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4003 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 4004 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4005 | } |
| 4006 | |
| 4007 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 4008 | // structures. |
| 4009 | } |
| 4010 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4011 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 4012 | // a null pointer constant. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4013 | if ((lhsType->isPointerType() || |
| 4014 | lhsType->isObjCObjectPointerType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4015 | lhsType->isBlockPointerType()) |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4016 | && rExpr->isNullPointerConstant(Context, |
| 4017 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4018 | ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4019 | return Compatible; |
| 4020 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4021 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4022 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4023 | // conversion of functions/arrays. If the conversion were done for all |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 4024 | // DeclExpr's (created by ActOnIdExpression), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4025 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4026 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4027 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4028 | if (!lhsType->isReferenceType()) |
| 4029 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4030 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4031 | Sema::AssignConvertType result = |
| 4032 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4033 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4034 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 4035 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4036 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 4037 | // so that we can use references in built-in functions even in C. |
| 4038 | // The getNonReferenceType() call makes sure that the resulting expression |
| 4039 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4040 | if (result != Incompatible && rExpr->getType() != lhsType) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4041 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType(), |
| 4042 | CastExpr::CK_Unknown); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4043 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4044 | } |
| 4045 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4046 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4047 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4048 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4049 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4050 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4051 | } |
| 4052 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4053 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4054 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4055 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4056 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4057 | QualType lhsType = |
| 4058 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 4059 | QualType rhsType = |
| 4060 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4061 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4062 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4063 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4064 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4065 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4066 | // Handle the case of a vector & extvector type of the same size and element |
| 4067 | // 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] | 4068 | if (getLangOptions().LaxVectorConversions) { |
| 4069 | // FIXME: Should we warn here? |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4070 | if (const VectorType *LV = lhsType->getAs<VectorType>()) { |
| 4071 | if (const VectorType *RV = rhsType->getAs<VectorType>()) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4072 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4073 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4074 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4075 | } |
| 4076 | } |
| 4077 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4078 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4079 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 4080 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 4081 | bool swapped = false; |
| 4082 | if (rhsType->isExtVectorType()) { |
| 4083 | swapped = true; |
| 4084 | std::swap(rex, lex); |
| 4085 | std::swap(rhsType, lhsType); |
| 4086 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4087 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4088 | // Handle the case of an ext vector and scalar. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4089 | if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4090 | QualType EltTy = LV->getElementType(); |
| 4091 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 4092 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4093 | ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4094 | if (swapped) std::swap(rex, lex); |
| 4095 | return lhsType; |
| 4096 | } |
| 4097 | } |
| 4098 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 4099 | rhsType->isRealFloatingType()) { |
| 4100 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4101 | ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4102 | if (swapped) std::swap(rex, lex); |
| 4103 | return lhsType; |
| 4104 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4105 | } |
| 4106 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4107 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4108 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4109 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4110 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4111 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4112 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4113 | } |
| 4114 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4115 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4116 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 4117 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4118 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4119 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4120 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4121 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4122 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4123 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4124 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4125 | } |
| 4126 | |
| 4127 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4128 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 4129 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4130 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 4131 | return CheckVectorOperands(Loc, lex, rex); |
| 4132 | return InvalidOperands(Loc, lex, rex); |
| 4133 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4134 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4135 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4136 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4137 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4138 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4139 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4140 | } |
| 4141 | |
| 4142 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4143 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4144 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4145 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4146 | if (CompLHSTy) *CompLHSTy = compType; |
| 4147 | return compType; |
| 4148 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4149 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4150 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4151 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4152 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4153 | if (lex->getType()->isArithmeticType() && |
| 4154 | rex->getType()->isArithmeticType()) { |
| 4155 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4156 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4157 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4158 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4159 | // Put any potential pointer into PExp |
| 4160 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4161 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4162 | std::swap(PExp, IExp); |
| 4163 | |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4164 | if (PExp->getType()->isAnyPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4165 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4166 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4167 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4168 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4169 | // Check for arithmetic on pointers to incomplete types. |
| 4170 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4171 | if (getLangOptions().CPlusPlus) { |
| 4172 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4173 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4174 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4175 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4176 | |
| 4177 | // GNU extension: arithmetic on pointer to void |
| 4178 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4179 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4180 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4181 | if (getLangOptions().CPlusPlus) { |
| 4182 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 4183 | << lex->getType() << lex->getSourceRange(); |
| 4184 | return QualType(); |
| 4185 | } |
| 4186 | |
| 4187 | // GNU extension: arithmetic on pointer to function |
| 4188 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4189 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4190 | } else { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4191 | // Check if we require a complete type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4192 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4193 | !PExp->getType()->isDependentType()) || |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4194 | PExp->getType()->isObjCObjectPointerType()) && |
| 4195 | RequireCompleteType(Loc, PointeeTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4196 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 4197 | << PExp->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4198 | << PExp->getType())) |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4199 | return QualType(); |
| 4200 | } |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4201 | // Diagnose bad cases where we step over interface counts. |
| 4202 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4203 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4204 | << PointeeTy << PExp->getSourceRange(); |
| 4205 | return QualType(); |
| 4206 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4207 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4208 | if (CompLHSTy) { |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4209 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4210 | if (LHSTy.isNull()) { |
| 4211 | LHSTy = lex->getType(); |
| 4212 | if (LHSTy->isPromotableIntegerType()) |
| 4213 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4214 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4215 | *CompLHSTy = LHSTy; |
| 4216 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4217 | return PExp->getType(); |
| 4218 | } |
| 4219 | } |
| 4220 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4221 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4222 | } |
| 4223 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4224 | // C99 6.5.6 |
| 4225 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4226 | SourceLocation Loc, QualType* CompLHSTy) { |
| 4227 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4228 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4229 | if (CompLHSTy) *CompLHSTy = compType; |
| 4230 | return compType; |
| 4231 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4232 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4233 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4234 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4235 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4236 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4237 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4238 | if (lex->getType()->isArithmeticType() |
| 4239 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4240 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4241 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4242 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4243 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4244 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4245 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 4246 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4247 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4248 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4249 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4250 | bool ComplainAboutVoid = false; |
| 4251 | Expr *ComplainAboutFunc = 0; |
| 4252 | if (lpointee->isVoidType()) { |
| 4253 | if (getLangOptions().CPlusPlus) { |
| 4254 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4255 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4256 | return QualType(); |
| 4257 | } |
| 4258 | |
| 4259 | // GNU C extension: arithmetic on pointer to void |
| 4260 | ComplainAboutVoid = true; |
| 4261 | } else if (lpointee->isFunctionType()) { |
| 4262 | if (getLangOptions().CPlusPlus) { |
| 4263 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4264 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4265 | return QualType(); |
| 4266 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4267 | |
| 4268 | // GNU C extension: arithmetic on pointer to function |
| 4269 | ComplainAboutFunc = lex; |
| 4270 | } else if (!lpointee->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4271 | RequireCompleteType(Loc, lpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4272 | PDiag(diag::err_typecheck_sub_ptr_object) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4273 | << lex->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4274 | << lex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4275 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4276 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4277 | // Diagnose bad cases where we step over interface counts. |
| 4278 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4279 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4280 | << lpointee << lex->getSourceRange(); |
| 4281 | return QualType(); |
| 4282 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4283 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4284 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4285 | if (rex->getType()->isIntegerType()) { |
| 4286 | if (ComplainAboutVoid) |
| 4287 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4288 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4289 | if (ComplainAboutFunc) |
| 4290 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4291 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4292 | << ComplainAboutFunc->getSourceRange(); |
| 4293 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4294 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4295 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4296 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4297 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4298 | // Handle pointer-pointer subtractions. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4299 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4300 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4301 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4302 | // RHS must be a completely-type object type. |
| 4303 | // Handle the GNU void* extension. |
| 4304 | if (rpointee->isVoidType()) { |
| 4305 | if (getLangOptions().CPlusPlus) { |
| 4306 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4307 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4308 | return QualType(); |
| 4309 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4310 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4311 | ComplainAboutVoid = true; |
| 4312 | } else if (rpointee->isFunctionType()) { |
| 4313 | if (getLangOptions().CPlusPlus) { |
| 4314 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4315 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4316 | return QualType(); |
| 4317 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4318 | |
| 4319 | // GNU extension: arithmetic on pointer to function |
| 4320 | if (!ComplainAboutFunc) |
| 4321 | ComplainAboutFunc = rex; |
| 4322 | } else if (!rpointee->isDependentType() && |
| 4323 | RequireCompleteType(Loc, rpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4324 | PDiag(diag::err_typecheck_sub_ptr_object) |
| 4325 | << rex->getSourceRange() |
| 4326 | << rex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4327 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4328 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4329 | if (getLangOptions().CPlusPlus) { |
| 4330 | // Pointee types must be the same: C++ [expr.add] |
| 4331 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4332 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4333 | << lex->getType() << rex->getType() |
| 4334 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4335 | return QualType(); |
| 4336 | } |
| 4337 | } else { |
| 4338 | // Pointee types must be compatible C99 6.5.6p3 |
| 4339 | if (!Context.typesAreCompatible( |
| 4340 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4341 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4342 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4343 | << lex->getType() << rex->getType() |
| 4344 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4345 | return QualType(); |
| 4346 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4347 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4348 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4349 | if (ComplainAboutVoid) |
| 4350 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4351 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4352 | if (ComplainAboutFunc) |
| 4353 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4354 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4355 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4356 | |
| 4357 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4358 | return Context.getPointerDiffType(); |
| 4359 | } |
| 4360 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4361 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4362 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4363 | } |
| 4364 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4365 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4366 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4367 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4368 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4369 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4370 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4371 | |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 4372 | // Vector shifts promote their scalar inputs to vector type. |
| 4373 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 4374 | return CheckVectorOperands(Loc, lex, rex); |
| 4375 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4376 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4377 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4378 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4379 | if (LHSTy.isNull()) { |
| 4380 | LHSTy = lex->getType(); |
| 4381 | if (LHSTy->isPromotableIntegerType()) |
| 4382 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4383 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4384 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4385 | ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4386 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4387 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4388 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4389 | // Sanity-check shift operands |
| 4390 | llvm::APSInt Right; |
| 4391 | // Check right/shifter operand |
Daniel Dunbar | 3f180c6 | 2009-09-17 06:31:27 +0000 | [diff] [blame] | 4392 | if (!rex->isValueDependent() && |
| 4393 | rex->isIntegerConstantExpr(Right, Context)) { |
Ryan Flynn | 8045c73 | 2009-08-08 19:18:23 +0000 | [diff] [blame] | 4394 | if (Right.isNegative()) |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4395 | Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange(); |
| 4396 | else { |
| 4397 | llvm::APInt LeftBits(Right.getBitWidth(), |
| 4398 | Context.getTypeSize(lex->getType())); |
| 4399 | if (Right.uge(LeftBits)) |
| 4400 | Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange(); |
| 4401 | } |
| 4402 | } |
| 4403 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4404 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4405 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4406 | } |
| 4407 | |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4408 | /// \brief Implements -Wsign-compare. |
| 4409 | /// |
| 4410 | /// \param lex the left-hand expression |
| 4411 | /// \param rex the right-hand expression |
| 4412 | /// \param OpLoc the location of the joining operator |
John McCall | 48f5e63 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 4413 | /// \param Equality whether this is an "equality-like" join, which |
| 4414 | /// suppresses the warning in some cases |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4415 | void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc, |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4416 | const PartialDiagnostic &PD, bool Equality) { |
John McCall | 7d62a8f | 2009-11-06 18:16:06 +0000 | [diff] [blame] | 4417 | // Don't warn if we're in an unevaluated context. |
| 4418 | if (ExprEvalContext == Unevaluated) |
| 4419 | return; |
| 4420 | |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4421 | QualType lt = lex->getType(), rt = rex->getType(); |
| 4422 | |
| 4423 | // Only warn if both operands are integral. |
| 4424 | if (!lt->isIntegerType() || !rt->isIntegerType()) |
| 4425 | return; |
| 4426 | |
Sebastian Redl | 732429c | 2009-11-05 21:09:23 +0000 | [diff] [blame] | 4427 | // If either expression is value-dependent, don't warn. We'll get another |
| 4428 | // chance at instantiation time. |
| 4429 | if (lex->isValueDependent() || rex->isValueDependent()) |
| 4430 | return; |
| 4431 | |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4432 | // The rule is that the signed operand becomes unsigned, so isolate the |
| 4433 | // signed operand. |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4434 | Expr *signedOperand, *unsignedOperand; |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4435 | if (lt->isSignedIntegerType()) { |
| 4436 | if (rt->isSignedIntegerType()) return; |
| 4437 | signedOperand = lex; |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4438 | unsignedOperand = rex; |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4439 | } else { |
| 4440 | if (!rt->isSignedIntegerType()) return; |
| 4441 | signedOperand = rex; |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4442 | unsignedOperand = lex; |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4443 | } |
| 4444 | |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4445 | // If the unsigned type is strictly smaller than the signed type, |
John McCall | 48f5e63 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 4446 | // then (1) the result type will be signed and (2) the unsigned |
| 4447 | // value will fit fully within the signed type, and thus the result |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4448 | // of the comparison will be exact. |
| 4449 | if (Context.getIntWidth(signedOperand->getType()) > |
| 4450 | Context.getIntWidth(unsignedOperand->getType())) |
| 4451 | return; |
| 4452 | |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4453 | // If the value is a non-negative integer constant, then the |
| 4454 | // signed->unsigned conversion won't change it. |
| 4455 | llvm::APSInt value; |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4456 | if (signedOperand->isIntegerConstantExpr(value, Context)) { |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4457 | assert(value.isSigned() && "result of signed expression not signed"); |
| 4458 | |
| 4459 | if (value.isNonNegative()) |
| 4460 | return; |
| 4461 | } |
| 4462 | |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4463 | if (Equality) { |
| 4464 | // For (in)equality comparisons, if the unsigned operand is a |
John McCall | 48f5e63 | 2009-11-06 08:53:51 +0000 | [diff] [blame] | 4465 | // constant which cannot collide with a overflowed signed operand, |
| 4466 | // then reinterpreting the signed operand as unsigned will not |
| 4467 | // change the result of the comparison. |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4468 | if (unsignedOperand->isIntegerConstantExpr(value, Context)) { |
| 4469 | assert(!value.isSigned() && "result of unsigned expression is signed"); |
| 4470 | |
| 4471 | // 2's complement: test the top bit. |
| 4472 | if (value.isNonNegative()) |
| 4473 | return; |
| 4474 | } |
| 4475 | } |
| 4476 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4477 | Diag(OpLoc, PD) |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4478 | << lex->getType() << rex->getType() |
| 4479 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4480 | } |
| 4481 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4482 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4483 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4484 | unsigned OpaqueOpc, bool isRelational) { |
| 4485 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 4486 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4487 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4488 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4489 | |
John McCall | 5dbad3d | 2009-11-06 08:49:08 +0000 | [diff] [blame] | 4490 | CheckSignCompare(lex, rex, Loc, diag::warn_mixed_sign_comparison, |
| 4491 | (Opc == BinaryOperator::EQ || Opc == BinaryOperator::NE)); |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4492 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4493 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 4494 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 4495 | UsualArithmeticConversions(lex, rex); |
| 4496 | else { |
| 4497 | UsualUnaryConversions(lex); |
| 4498 | UsualUnaryConversions(rex); |
| 4499 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4500 | QualType lType = lex->getType(); |
| 4501 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4502 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4503 | if (!lType->isFloatingType() |
| 4504 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4505 | // For non-floating point types, check for self-comparisons of the form |
| 4506 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4507 | // often indicate logic errors in the program. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4508 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 4509 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4510 | Expr *LHSStripped = lex->IgnoreParens(); |
| 4511 | Expr *RHSStripped = rex->IgnoreParens(); |
| 4512 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 4513 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 4514 | if (DRL->getDecl() == DRR->getDecl() && |
| 4515 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4516 | Diag(Loc, diag::warn_selfcomparison); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4517 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4518 | if (isa<CastExpr>(LHSStripped)) |
| 4519 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 4520 | if (isa<CastExpr>(RHSStripped)) |
| 4521 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4522 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4523 | // Warn about comparisons against a string constant (unless the other |
| 4524 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4525 | Expr *literalString = 0; |
| 4526 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4527 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4528 | !RHSStripped->isNullPointerConstant(Context, |
| 4529 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4530 | literalString = lex; |
| 4531 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 4532 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 4533 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4534 | !LHSStripped->isNullPointerConstant(Context, |
| 4535 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4536 | literalString = rex; |
| 4537 | literalStringStripped = RHSStripped; |
| 4538 | } |
| 4539 | |
| 4540 | if (literalString) { |
| 4541 | std::string resultComparison; |
| 4542 | switch (Opc) { |
| 4543 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4544 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4545 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4546 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4547 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4548 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4549 | default: assert(false && "Invalid comparison operator"); |
| 4550 | } |
| 4551 | Diag(Loc, diag::warn_stringcompare) |
| 4552 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4553 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4554 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4555 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4556 | "strcmp(") |
| 4557 | << CodeModificationHint::CreateInsertion( |
| 4558 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4559 | resultComparison); |
| 4560 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4561 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4562 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4563 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4564 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4565 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4566 | if (isRelational) { |
| 4567 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4568 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4569 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4570 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4571 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4572 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4573 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4574 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4575 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4576 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4577 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4578 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4579 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4580 | bool LHSIsNull = lex->isNullPointerConstant(Context, |
| 4581 | Expr::NPC_ValueDependentIsNull); |
| 4582 | bool RHSIsNull = rex->isNullPointerConstant(Context, |
| 4583 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4584 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4585 | // All of the following pointer related warnings are GCC extensions, except |
| 4586 | // when handling null pointer constants. One day, we can consider making them |
| 4587 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4588 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4589 | QualType LCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4590 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4591 | QualType RCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4592 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4593 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4594 | if (getLangOptions().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4595 | if (LCanPointeeTy == RCanPointeeTy) |
| 4596 | return ResultTy; |
| 4597 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4598 | // C++ [expr.rel]p2: |
| 4599 | // [...] Pointer conversions (4.10) and qualification |
| 4600 | // conversions (4.4) are performed on pointer operands (or on |
| 4601 | // a pointer operand and a null pointer constant) to bring |
| 4602 | // them to their composite pointer type. [...] |
| 4603 | // |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4604 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4605 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4606 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4607 | if (T.isNull()) { |
| 4608 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4609 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4610 | return QualType(); |
| 4611 | } |
| 4612 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4613 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4614 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4615 | return ResultTy; |
| 4616 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4617 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 4618 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 4619 | RCanPointeeTy.getUnqualifiedType())) { |
| 4620 | // Valid unless a relational comparison of function pointers |
| 4621 | if (isRelational && LCanPointeeTy->isFunctionType()) { |
| 4622 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4623 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4624 | } |
| 4625 | } else if (!isRelational && |
| 4626 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 4627 | // Valid unless comparison between non-null pointer and function pointer |
| 4628 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 4629 | && !LHSIsNull && !RHSIsNull) { |
| 4630 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 4631 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4632 | } |
| 4633 | } else { |
| 4634 | // Invalid |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4635 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4636 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4637 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4638 | if (LCanPointeeTy != RCanPointeeTy) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4639 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4640 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4641 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4642 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4643 | if (getLangOptions().CPlusPlus) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4644 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4645 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4646 | if (RHSIsNull && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4647 | (lType->isPointerType() || |
| 4648 | (!isRelational && lType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4649 | ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4650 | return ResultTy; |
| 4651 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4652 | if (LHSIsNull && |
| 4653 | (rType->isPointerType() || |
| 4654 | (!isRelational && rType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4655 | ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4656 | return ResultTy; |
| 4657 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4658 | |
| 4659 | // Comparison of member pointers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4660 | if (!isRelational && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4661 | lType->isMemberPointerType() && rType->isMemberPointerType()) { |
| 4662 | // C++ [expr.eq]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4663 | // In addition, pointers to members can be compared, or a pointer to |
| 4664 | // member and a null pointer constant. Pointer to member conversions |
| 4665 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 4666 | // them to a common type. If one operand is a null pointer constant, |
| 4667 | // the common type is the type of the other operand. Otherwise, the |
| 4668 | // common type is a pointer to member type similar (4.4) to the type |
| 4669 | // of one of the operands, with a cv-qualification signature (4.4) |
| 4670 | // that is the union of the cv-qualification signatures of the operand |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4671 | // types. |
| 4672 | QualType T = FindCompositePointerType(lex, rex); |
| 4673 | if (T.isNull()) { |
| 4674 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4675 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4676 | return QualType(); |
| 4677 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4678 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4679 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4680 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4681 | return ResultTy; |
| 4682 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4683 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4684 | // Comparison of nullptr_t with itself. |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4685 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4686 | return ResultTy; |
| 4687 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4688 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4689 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4690 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4691 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 4692 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4693 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4694 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4695 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4696 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4697 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4698 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4699 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4700 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4701 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4702 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4703 | if (!isRelational |
| 4704 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4705 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4706 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4707 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4708 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4709 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4710 | ->getPointeeType()->isVoidType()))) |
| 4711 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4712 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4713 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4714 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4715 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4716 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4717 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4718 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4719 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4720 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 4721 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4722 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4723 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4724 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4725 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4726 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4727 | if (!LPtrToVoid && !RPtrToVoid && |
| 4728 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4729 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4730 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4731 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4732 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4733 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4734 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4735 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4736 | if (!Context.areComparableObjCPointerTypes(lType, rType)) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4737 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4738 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4739 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4740 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4741 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4742 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4743 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4744 | unsigned DiagID = 0; |
| 4745 | if (RHSIsNull) { |
| 4746 | if (isRelational) |
| 4747 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4748 | } else if (isRelational) |
| 4749 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4750 | else |
| 4751 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4752 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4753 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4754 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4755 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4756 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4757 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4758 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4759 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4760 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4761 | unsigned DiagID = 0; |
| 4762 | if (LHSIsNull) { |
| 4763 | if (isRelational) |
| 4764 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4765 | } else if (isRelational) |
| 4766 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4767 | else |
| 4768 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4769 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4770 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4771 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4772 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4773 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4774 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4775 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4776 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4777 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4778 | if (!isRelational && RHSIsNull |
| 4779 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4780 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4781 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4782 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4783 | if (!isRelational && LHSIsNull |
| 4784 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4785 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4786 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4787 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4788 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4789 | } |
| 4790 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4791 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4792 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4793 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4794 | /// types. |
| 4795 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4796 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4797 | bool isRelational) { |
| 4798 | // Check to make sure we're operating on vectors of the same type and width, |
| 4799 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4800 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4801 | if (vType.isNull()) |
| 4802 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4803 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4804 | QualType lType = lex->getType(); |
| 4805 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4806 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4807 | // For non-floating point types, check for self-comparisons of the form |
| 4808 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4809 | // often indicate logic errors in the program. |
| 4810 | if (!lType->isFloatingType()) { |
| 4811 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4812 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4813 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4814 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4815 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4816 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4817 | // Check for comparisons of floating point operands using != and ==. |
| 4818 | if (!isRelational && lType->isFloatingType()) { |
| 4819 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4820 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4821 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4822 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4823 | // Return the type for the comparison, which is the same as vector type for |
| 4824 | // integer vectors, or an integer type of identical size and number of |
| 4825 | // elements for floating point vectors. |
| 4826 | if (lType->isIntegerType()) |
| 4827 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4828 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4829 | const VectorType *VTy = lType->getAs<VectorType>(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4830 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4831 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4832 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4833 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4834 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4835 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4836 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4837 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4838 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4839 | } |
| 4840 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4841 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4842 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4843 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4844 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4845 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4846 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4847 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4848 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4849 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4850 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4851 | } |
| 4852 | |
| 4853 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4854 | Expr *&lex, Expr *&rex, SourceLocation Loc) { |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame^] | 4855 | if (!Context.getLangOptions().CPlusPlus) { |
| 4856 | UsualUnaryConversions(lex); |
| 4857 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4858 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame^] | 4859 | if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType()) |
| 4860 | return InvalidOperands(Loc, lex, rex); |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 4861 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame^] | 4862 | return Context.IntTy; |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 4863 | } |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame^] | 4864 | |
| 4865 | // C++ [expr.log.and]p1 |
| 4866 | // C++ [expr.log.or]p1 |
| 4867 | // The operands are both implicitly converted to type bool (clause 4). |
| 4868 | StandardConversionSequence LHS; |
| 4869 | if (!IsStandardConversion(lex, Context.BoolTy, |
| 4870 | /*InOverloadResolution=*/false, LHS)) |
| 4871 | return InvalidOperands(Loc, lex, rex); |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 4872 | |
Anders Carlsson | a4c98cd | 2009-11-23 21:47:44 +0000 | [diff] [blame^] | 4873 | if (PerformImplicitConversion(lex, Context.BoolTy, LHS, |
| 4874 | "passing", /*IgnoreBaseAccess=*/false)) |
| 4875 | return InvalidOperands(Loc, lex, rex); |
| 4876 | |
| 4877 | StandardConversionSequence RHS; |
| 4878 | if (!IsStandardConversion(rex, Context.BoolTy, |
| 4879 | /*InOverloadResolution=*/false, RHS)) |
| 4880 | return InvalidOperands(Loc, lex, rex); |
| 4881 | |
| 4882 | if (PerformImplicitConversion(rex, Context.BoolTy, RHS, |
| 4883 | "passing", /*IgnoreBaseAccess=*/false)) |
| 4884 | return InvalidOperands(Loc, lex, rex); |
| 4885 | |
| 4886 | // C++ [expr.log.and]p2 |
| 4887 | // C++ [expr.log.or]p2 |
| 4888 | // The result is a bool. |
| 4889 | return Context.BoolTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4890 | } |
| 4891 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4892 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4893 | /// is a read-only property; return true if so. A readonly property expression |
| 4894 | /// depends on various declarations and thus must be treated specially. |
| 4895 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4896 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4897 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4898 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4899 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4900 | QualType BaseType = PropExpr->getBase()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4901 | if (const ObjCObjectPointerType *OPT = |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4902 | BaseType->getAsObjCInterfacePointerType()) |
| 4903 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 4904 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4905 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4906 | } |
| 4907 | } |
| 4908 | return false; |
| 4909 | } |
| 4910 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4911 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4912 | /// emit an error and return true. If so, return false. |
| 4913 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4914 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4915 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4916 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4917 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4918 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4919 | if (IsLV == Expr::MLV_Valid) |
| 4920 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4921 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4922 | unsigned Diag = 0; |
| 4923 | bool NeedType = false; |
| 4924 | switch (IsLV) { // C99 6.5.16p2 |
| 4925 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4926 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4927 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4928 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4929 | NeedType = true; |
| 4930 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4931 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4932 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4933 | NeedType = true; |
| 4934 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4935 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4936 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4937 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4938 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4939 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4940 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4941 | case Expr::MLV_IncompleteType: |
| 4942 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4943 | return S.RequireCompleteType(Loc, E->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 4944 | PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
| 4945 | << E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4946 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4947 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4948 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4949 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4950 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4951 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4952 | case Expr::MLV_ReadonlyProperty: |
| 4953 | Diag = diag::error_readonly_property_assignment; |
| 4954 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4955 | case Expr::MLV_NoSetterProperty: |
| 4956 | Diag = diag::error_nosetter_property_assignment; |
| 4957 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4958 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4959 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4960 | SourceRange Assign; |
| 4961 | if (Loc != OrigLoc) |
| 4962 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4963 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4964 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4965 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4966 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4967 | return true; |
| 4968 | } |
| 4969 | |
| 4970 | |
| 4971 | |
| 4972 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4973 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4974 | SourceLocation Loc, |
| 4975 | QualType CompoundType) { |
| 4976 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4977 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4978 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4979 | |
| 4980 | QualType LHSType = LHS->getType(); |
| 4981 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4982 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4983 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4984 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4985 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4986 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4987 | // Special case of NSObject attributes on c-style pointer types. |
| 4988 | if (ConvTy == IncompatiblePointer && |
| 4989 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4990 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4991 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4992 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4993 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4994 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4995 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4996 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4997 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4998 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4999 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 5000 | RHSCheck = ICE->getSubExpr(); |
| 5001 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 5002 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 5003 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5004 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5005 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 5006 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 5007 | // And there is a space or other character before the subexpr of the |
| 5008 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 5009 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 5010 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5011 | Diag(Loc, diag::warn_not_compound_assign) |
| 5012 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 5013 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 5014 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5015 | } |
| 5016 | } else { |
| 5017 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 5018 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 5019 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5020 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5021 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 5022 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 5023 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5024 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5025 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 5026 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5027 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5028 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 5029 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5030 | // 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] | 5031 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5032 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5033 | } |
| 5034 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5035 | // C99 6.5.17 |
| 5036 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 5037 | // 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] | 5038 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5039 | |
| 5040 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 5041 | // incomplete in C++). |
| 5042 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5043 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5044 | } |
| 5045 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 5046 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 5047 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5048 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 5049 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5050 | if (Op->isTypeDependent()) |
| 5051 | return Context.DependentTy; |
| 5052 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5053 | QualType ResType = Op->getType(); |
| 5054 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5055 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5056 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 5057 | // Decrement of bool is not allowed. |
| 5058 | if (!isInc) { |
| 5059 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 5060 | return QualType(); |
| 5061 | } |
| 5062 | // Increment of bool sets it to true, but is deprecated. |
| 5063 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 5064 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5065 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5066 | } else if (ResType->isAnyPointerType()) { |
| 5067 | QualType PointeeTy = ResType->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5068 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5069 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5070 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5071 | if (getLangOptions().CPlusPlus) { |
| 5072 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 5073 | << Op->getSourceRange(); |
| 5074 | return QualType(); |
| 5075 | } |
| 5076 | |
| 5077 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5078 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5079 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5080 | if (getLangOptions().CPlusPlus) { |
| 5081 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 5082 | << Op->getType() << Op->getSourceRange(); |
| 5083 | return QualType(); |
| 5084 | } |
| 5085 | |
| 5086 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5087 | << ResType << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5088 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5089 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5090 | << Op->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5091 | << ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5092 | return QualType(); |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 5093 | // Diagnose bad cases where we step over interface counts. |
| 5094 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 5095 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 5096 | << PointeeTy << Op->getSourceRange(); |
| 5097 | return QualType(); |
| 5098 | } |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5099 | } else if (ResType->isComplexType()) { |
| 5100 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 5101 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5102 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5103 | } else { |
| 5104 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5105 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5106 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5107 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5108 | // 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] | 5109 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5110 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5111 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5112 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5113 | } |
| 5114 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5115 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5116 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5117 | /// where the declaration is needed for type checking. We only need to |
| 5118 | /// handle cases when the expression references a function designator |
| 5119 | /// or is an lvalue. Here are some examples: |
| 5120 | /// - &(x) => x |
| 5121 | /// - &*****f => f for f a function designator. |
| 5122 | /// - &s.xx => s |
| 5123 | /// - &s.zz[1].yy -> s, if zz is an array |
| 5124 | /// - *(x + 1) -> x, if x is an array |
| 5125 | /// - &"123"[2] -> 0 |
| 5126 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5127 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5128 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5129 | case Stmt::DeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5130 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5131 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5132 | // If this is an arrow operator, the address is an offset from |
| 5133 | // the base's value, so the object the base refers to is |
| 5134 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5135 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5136 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5137 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5138 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5139 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5140 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 5141 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5142 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 5143 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 5144 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 5145 | return getPrimaryDecl(ICE->getSubExpr()); |
| 5146 | } |
| 5147 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5148 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5149 | case Stmt::UnaryOperatorClass: { |
| 5150 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5151 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5152 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5153 | case UnaryOperator::Real: |
| 5154 | case UnaryOperator::Imag: |
| 5155 | case UnaryOperator::Extension: |
| 5156 | return getPrimaryDecl(UO->getSubExpr()); |
| 5157 | default: |
| 5158 | return 0; |
| 5159 | } |
| 5160 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5161 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5162 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5163 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5164 | // If the result of an implicit cast is an l-value, we care about |
| 5165 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5166 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5167 | default: |
| 5168 | return 0; |
| 5169 | } |
| 5170 | } |
| 5171 | |
| 5172 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5173 | /// 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] | 5174 | /// 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] | 5175 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5176 | /// 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] | 5177 | /// 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] | 5178 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5179 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5180 | // Make sure to ignore parentheses in subsequent checks |
| 5181 | op = op->IgnoreParens(); |
| 5182 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 5183 | if (op->isTypeDependent()) |
| 5184 | return Context.DependentTy; |
| 5185 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5186 | if (getLangOptions().C99) { |
| 5187 | // Implement C99-only parts of addressof rules. |
| 5188 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 5189 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 5190 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 5191 | // (assuming the deref expression is valid). |
| 5192 | return uOp->getSubExpr()->getType(); |
| 5193 | } |
| 5194 | // Technically, there should be a check for array subscript |
| 5195 | // expressions here, but the result of one is always an lvalue anyway. |
| 5196 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5197 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 5198 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 5199 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5200 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 5201 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5202 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5203 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5204 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5205 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 5206 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5207 | return QualType(); |
| 5208 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 5209 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5210 | // The operand cannot be a bit-field |
| 5211 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5212 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 5213 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5214 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 5215 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5216 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5217 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5218 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5219 | return QualType(); |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 5220 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 5221 | // cannot take address of a property expression. |
| 5222 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5223 | << "property expression" << op->getSourceRange(); |
| 5224 | return QualType(); |
Anders Carlsson | 1d524c3 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 5225 | } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) { |
| 5226 | // FIXME: Can LHS ever be null here? |
Anders Carlsson | 474e102 | 2009-09-15 16:03:44 +0000 | [diff] [blame] | 5227 | if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull()) |
| 5228 | return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc); |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 5229 | } else if (isa<UnresolvedLookupExpr>(op)) { |
| 5230 | return Context.OverloadTy; |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5231 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5232 | // 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] | 5233 | // with the register storage-class specifier. |
| 5234 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 5235 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5236 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5237 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5238 | return QualType(); |
| 5239 | } |
John McCall | ba13543 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 5240 | } else if (isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5241 | return Context.OverloadTy; |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5242 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 5243 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5244 | // Could be a pointer to member, though, if there is an explicit |
| 5245 | // scope qualifier for the class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5246 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5247 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5248 | if (Ctx && Ctx->isRecord()) { |
| 5249 | if (FD->getType()->isReferenceType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5250 | Diag(OpLoc, |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5251 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 5252 | << FD->getDeclName() << FD->getType(); |
| 5253 | return QualType(); |
| 5254 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5255 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5256 | return Context.getMemberPointerType(op->getType(), |
| 5257 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5258 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5259 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5260 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 5261 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5262 | // As above. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5263 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() && |
| 5264 | MD->isInstance()) |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5265 | return Context.getMemberPointerType(op->getType(), |
| 5266 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 5267 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5268 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5269 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5270 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5271 | if (lval == Expr::LV_IncompleteVoidType) { |
| 5272 | // Taking the address of a void variable is technically illegal, but we |
| 5273 | // allow it in cases which are otherwise valid. |
| 5274 | // Example: "extern void x; void* y = &x;". |
| 5275 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 5276 | } |
| 5277 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5278 | // If the operand has type "type", the result has type "pointer to type". |
| 5279 | return Context.getPointerType(op->getType()); |
| 5280 | } |
| 5281 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5282 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5283 | if (Op->isTypeDependent()) |
| 5284 | return Context.DependentTy; |
| 5285 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5286 | UsualUnaryConversions(Op); |
| 5287 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5288 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5289 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 5290 | // incomplete type or void. It would be possible to warn about dereferencing |
| 5291 | // a void pointer, but it's completely well-defined, and such a warning is |
| 5292 | // unlikely to catch any mistakes. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5293 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5294 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5295 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5296 | if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>()) |
Fariborz Jahanian | 16b1037 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 5297 | return OPT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5298 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5299 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5300 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5301 | return QualType(); |
| 5302 | } |
| 5303 | |
| 5304 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 5305 | tok::TokenKind Kind) { |
| 5306 | BinaryOperator::Opcode Opc; |
| 5307 | switch (Kind) { |
| 5308 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5309 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 5310 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5311 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 5312 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 5313 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 5314 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 5315 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 5316 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 5317 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 5318 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 5319 | case tok::less: Opc = BinaryOperator::LT; break; |
| 5320 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 5321 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 5322 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 5323 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 5324 | case tok::amp: Opc = BinaryOperator::And; break; |
| 5325 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 5326 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 5327 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 5328 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 5329 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 5330 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 5331 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 5332 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 5333 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 5334 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 5335 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 5336 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 5337 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 5338 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 5339 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 5340 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 5341 | } |
| 5342 | return Opc; |
| 5343 | } |
| 5344 | |
| 5345 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 5346 | tok::TokenKind Kind) { |
| 5347 | UnaryOperator::Opcode Opc; |
| 5348 | switch (Kind) { |
| 5349 | default: assert(0 && "Unknown unary op!"); |
| 5350 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 5351 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 5352 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 5353 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 5354 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 5355 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 5356 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 5357 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5358 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 5359 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 5360 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 5361 | } |
| 5362 | return Opc; |
| 5363 | } |
| 5364 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5365 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 5366 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 5367 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5368 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 5369 | unsigned Op, |
| 5370 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5371 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5372 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5373 | // The following two variables are used for compound assignment operators |
| 5374 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 5375 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5376 | |
| 5377 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5378 | case BinaryOperator::Assign: |
| 5379 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 5380 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5381 | case BinaryOperator::PtrMemD: |
| 5382 | case BinaryOperator::PtrMemI: |
| 5383 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 5384 | Opc == BinaryOperator::PtrMemI); |
| 5385 | break; |
| 5386 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5387 | case BinaryOperator::Div: |
| 5388 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 5389 | break; |
| 5390 | case BinaryOperator::Rem: |
| 5391 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 5392 | break; |
| 5393 | case BinaryOperator::Add: |
| 5394 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 5395 | break; |
| 5396 | case BinaryOperator::Sub: |
| 5397 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 5398 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5399 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5400 | case BinaryOperator::Shr: |
| 5401 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 5402 | break; |
| 5403 | case BinaryOperator::LE: |
| 5404 | case BinaryOperator::LT: |
| 5405 | case BinaryOperator::GE: |
| 5406 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5407 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5408 | break; |
| 5409 | case BinaryOperator::EQ: |
| 5410 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5411 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5412 | break; |
| 5413 | case BinaryOperator::And: |
| 5414 | case BinaryOperator::Xor: |
| 5415 | case BinaryOperator::Or: |
| 5416 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 5417 | break; |
| 5418 | case BinaryOperator::LAnd: |
| 5419 | case BinaryOperator::LOr: |
| 5420 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 5421 | break; |
| 5422 | case BinaryOperator::MulAssign: |
| 5423 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5424 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 5425 | CompLHSTy = CompResultTy; |
| 5426 | if (!CompResultTy.isNull()) |
| 5427 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5428 | break; |
| 5429 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5430 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 5431 | CompLHSTy = CompResultTy; |
| 5432 | if (!CompResultTy.isNull()) |
| 5433 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5434 | break; |
| 5435 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5436 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5437 | if (!CompResultTy.isNull()) |
| 5438 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5439 | break; |
| 5440 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5441 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5442 | if (!CompResultTy.isNull()) |
| 5443 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5444 | break; |
| 5445 | case BinaryOperator::ShlAssign: |
| 5446 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5447 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 5448 | CompLHSTy = CompResultTy; |
| 5449 | if (!CompResultTy.isNull()) |
| 5450 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5451 | break; |
| 5452 | case BinaryOperator::AndAssign: |
| 5453 | case BinaryOperator::XorAssign: |
| 5454 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5455 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 5456 | CompLHSTy = CompResultTy; |
| 5457 | if (!CompResultTy.isNull()) |
| 5458 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5459 | break; |
| 5460 | case BinaryOperator::Comma: |
| 5461 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 5462 | break; |
| 5463 | } |
| 5464 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5465 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5466 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5467 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 5468 | else |
| 5469 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5470 | CompLHSTy, CompResultTy, |
| 5471 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5472 | } |
| 5473 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5474 | /// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps |
| 5475 | /// ParenRange in parentheses. |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5476 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
| 5477 | const PartialDiagnostic &PD, |
| 5478 | SourceRange ParenRange) |
| 5479 | { |
| 5480 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 5481 | if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { |
| 5482 | // We can't display the parentheses, so just dig the |
| 5483 | // warning/error and return. |
| 5484 | Self.Diag(Loc, PD); |
| 5485 | return; |
| 5486 | } |
| 5487 | |
| 5488 | Self.Diag(Loc, PD) |
| 5489 | << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 5490 | << CodeModificationHint::CreateInsertion(EndLoc, ")"); |
| 5491 | } |
| 5492 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5493 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 5494 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 5495 | /// comparison operators have higher precedence. The most typical example of |
| 5496 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5497 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5498 | SourceLocation OpLoc,Expr *lhs,Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5499 | typedef BinaryOperator BinOp; |
| 5500 | BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1), |
| 5501 | rhsopc = static_cast<BinOp::Opcode>(-1); |
| 5502 | if (BinOp *BO = dyn_cast<BinOp>(lhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5503 | lhsopc = BO->getOpcode(); |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5504 | if (BinOp *BO = dyn_cast<BinOp>(rhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5505 | rhsopc = BO->getOpcode(); |
| 5506 | |
| 5507 | // Subs are not binary operators. |
| 5508 | if (lhsopc == -1 && rhsopc == -1) |
| 5509 | return; |
| 5510 | |
| 5511 | // Bitwise operations are sometimes used as eager logical ops. |
| 5512 | // Don't diagnose this. |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5513 | if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) && |
| 5514 | (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc))) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5515 | return; |
| 5516 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5517 | if (BinOp::isComparisonOp(lhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5518 | SuggestParentheses(Self, OpLoc, |
| 5519 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5520 | << SourceRange(lhs->getLocStart(), OpLoc) |
| 5521 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc), |
| 5522 | SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd())); |
| 5523 | else if (BinOp::isComparisonOp(rhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5524 | SuggestParentheses(Self, OpLoc, |
| 5525 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5526 | << SourceRange(OpLoc, rhs->getLocEnd()) |
| 5527 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc), |
| 5528 | SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart())); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5529 | } |
| 5530 | |
| 5531 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
| 5532 | /// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3". |
| 5533 | /// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does. |
| 5534 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5535 | SourceLocation OpLoc, Expr *lhs, Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5536 | if (BinaryOperator::isBitwiseOp(Opc)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5537 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs); |
| 5538 | } |
| 5539 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5540 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5541 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 5542 | tok::TokenKind Kind, |
| 5543 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5544 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5545 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5546 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5547 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 5548 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5549 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5550 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
| 5551 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs); |
| 5552 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5553 | return BuildBinOp(S, TokLoc, Opc, lhs, rhs); |
| 5554 | } |
| 5555 | |
| 5556 | Action::OwningExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, |
| 5557 | BinaryOperator::Opcode Opc, |
| 5558 | Expr *lhs, Expr *rhs) { |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5559 | if (getLangOptions().CPlusPlus && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5560 | (lhs->getType()->isOverloadableType() || |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5561 | rhs->getType()->isOverloadableType())) { |
| 5562 | // Find all of the overloaded operators visible from this |
| 5563 | // point. We perform both an operator-name lookup from the local |
| 5564 | // scope and an argument-dependent lookup based on the types of |
| 5565 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 5566 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5567 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 5568 | if (OverOp != OO_None) { |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5569 | if (S) |
| 5570 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 5571 | Functions); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5572 | Expr *Args[2] = { lhs, rhs }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5573 | DeclarationName OpName |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5574 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5575 | ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 5576 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5577 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5578 | // Build the (potentially-overloaded, potentially-dependent) |
| 5579 | // binary operation. |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5580 | return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5581 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5582 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5583 | // Build a built-in binary operation. |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5584 | return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5585 | } |
| 5586 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5587 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5588 | unsigned OpcIn, |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5589 | ExprArg InputArg) { |
| 5590 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5591 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5592 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5593 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5594 | QualType resultType; |
| 5595 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5596 | case UnaryOperator::OffsetOf: |
| 5597 | assert(false && "Invalid unary operator"); |
| 5598 | break; |
| 5599 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5600 | case UnaryOperator::PreInc: |
| 5601 | case UnaryOperator::PreDec: |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5602 | case UnaryOperator::PostInc: |
| 5603 | case UnaryOperator::PostDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5604 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5605 | Opc == UnaryOperator::PreInc || |
| 5606 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5607 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5608 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5609 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 5610 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5611 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 5612 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5613 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 5614 | break; |
| 5615 | case UnaryOperator::Plus: |
| 5616 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5617 | UsualUnaryConversions(Input); |
| 5618 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5619 | if (resultType->isDependentType()) |
| 5620 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5621 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 5622 | break; |
| 5623 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 5624 | resultType->isEnumeralType()) |
| 5625 | break; |
| 5626 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 5627 | Opc == UnaryOperator::Plus && |
| 5628 | resultType->isPointerType()) |
| 5629 | break; |
| 5630 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5631 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5632 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5633 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5634 | UsualUnaryConversions(Input); |
| 5635 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5636 | if (resultType->isDependentType()) |
| 5637 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5638 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 5639 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 5640 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5641 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5642 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5643 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5644 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5645 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5646 | break; |
| 5647 | case UnaryOperator::LNot: // logical negation |
| 5648 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5649 | DefaultFunctionArrayConversion(Input); |
| 5650 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5651 | if (resultType->isDependentType()) |
| 5652 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5653 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5654 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5655 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5656 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5657 | // In C++, it's bool. C++ 5.3.1p8 |
| 5658 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5659 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5660 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5661 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 5662 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5663 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5664 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5665 | resultType = Input->getType(); |
| 5666 | break; |
| 5667 | } |
| 5668 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5669 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5670 | |
| 5671 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5672 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5673 | } |
| 5674 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5675 | Action::OwningExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5676 | UnaryOperator::Opcode Opc, |
| 5677 | ExprArg input) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5678 | Expr *Input = (Expr*)input.get(); |
Anders Carlsson | a8a1e3d | 2009-11-14 21:26:41 +0000 | [diff] [blame] | 5679 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType() && |
| 5680 | Opc != UnaryOperator::Extension) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5681 | // Find all of the overloaded operators visible from this |
| 5682 | // point. We perform both an operator-name lookup from the local |
| 5683 | // scope and an argument-dependent lookup based on the types of |
| 5684 | // the arguments. |
| 5685 | FunctionSet Functions; |
| 5686 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 5687 | if (OverOp != OO_None) { |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5688 | if (S) |
| 5689 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 5690 | Functions); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5691 | DeclarationName OpName |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5692 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5693 | ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5694 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5695 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5696 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 5697 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5698 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5699 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 5700 | } |
| 5701 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5702 | // Unary Operators. 'Tok' is the token for the operator. |
| 5703 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5704 | tok::TokenKind Op, ExprArg input) { |
| 5705 | return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), move(input)); |
| 5706 | } |
| 5707 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 5708 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5709 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 5710 | SourceLocation LabLoc, |
| 5711 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5712 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 5713 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5714 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 5715 | // If we haven't seen this label yet, create a forward reference. It |
| 5716 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5717 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5718 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5719 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5720 | // 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] | 5721 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5722 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5723 | } |
| 5724 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5725 | Sema::OwningExprResult |
| 5726 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5727 | SourceLocation RPLoc) { // "({..})" |
| 5728 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5729 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5730 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5731 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5732 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5733 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5734 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5735 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5736 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5737 | // example, it is not possible to goto into a stmt expression apparently. |
| 5738 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5739 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5740 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5741 | // as the type of the stmtexpr. |
| 5742 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5743 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5744 | if (!Compound->body_empty()) { |
| 5745 | Stmt *LastStmt = Compound->body_back(); |
| 5746 | // If LastStmt is a label, skip down through into the body. |
| 5747 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5748 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5749 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5750 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5751 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5752 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5753 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5754 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5755 | // expressions are not lvalues. |
| 5756 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5757 | substmt.release(); |
| 5758 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5759 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5760 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5761 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5762 | SourceLocation BuiltinLoc, |
| 5763 | SourceLocation TypeLoc, |
| 5764 | TypeTy *argty, |
| 5765 | OffsetOfComponent *CompPtr, |
| 5766 | unsigned NumComponents, |
| 5767 | SourceLocation RPLoc) { |
| 5768 | // FIXME: This function leaks all expressions in the offset components on |
| 5769 | // error. |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5770 | // FIXME: Preserve type source info. |
| 5771 | QualType ArgTy = GetTypeFromParser(argty); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5772 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5773 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5774 | bool Dependent = ArgTy->isDependentType(); |
| 5775 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5776 | // We must have at least one component that refers to the type, and the first |
| 5777 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5778 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5779 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5780 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5781 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5782 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5783 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5784 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5785 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5786 | // the offsetof designators. |
| 5787 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5788 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5789 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5790 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5791 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5792 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5793 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5794 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5795 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5796 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5797 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5798 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5799 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5800 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5801 | bool DidWarnAboutNonPOD = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5802 | |
John McCall | d00f200 | 2009-11-04 03:03:43 +0000 | [diff] [blame] | 5803 | if (RequireCompleteType(TypeLoc, Res->getType(), |
| 5804 | diag::err_offsetof_incomplete_type)) |
| 5805 | return ExprError(); |
| 5806 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5807 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5808 | // leaks like a sieve. |
| 5809 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5810 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5811 | if (OC.isBrackets) { |
| 5812 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5813 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5814 | if (!AT) { |
| 5815 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5816 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5817 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5818 | } |
| 5819 | |
| 5820 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5821 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5822 | // Promote the array so it looks more like a normal array subscript |
| 5823 | // expression. |
| 5824 | DefaultFunctionArrayConversion(Res); |
| 5825 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5826 | // C99 6.5.2.1p1 |
| 5827 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5828 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5829 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5830 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5831 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5832 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5833 | |
| 5834 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5835 | OC.LocEnd); |
| 5836 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5837 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5838 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5839 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5840 | if (!RC) { |
| 5841 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5842 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5843 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5844 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5845 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5846 | // Get the decl corresponding to this. |
| 5847 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5848 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5849 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5850 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5851 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5852 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5853 | DidWarnAboutNonPOD = true; |
| 5854 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5855 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5856 | |
John McCall | a24dc2e | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 5857 | LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName); |
| 5858 | LookupQualifiedName(R, RD); |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5859 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5860 | FieldDecl *MemberDecl |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5861 | = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context)); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5862 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5863 | if (!MemberDecl) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 5864 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 5865 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5866 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5867 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5868 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5869 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5870 | Res = BuildAnonymousStructUnionMemberReference( |
John McCall | 09b6d0e | 2009-11-11 03:23:23 +0000 | [diff] [blame] | 5871 | OC.LocEnd, MemberDecl, Res, OC.LocEnd).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5872 | } else { |
| 5873 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5874 | // doesn't matter here. |
| 5875 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5876 | MemberDecl->getType().getNonReferenceType()); |
| 5877 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5878 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5879 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5880 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5881 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5882 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5883 | } |
| 5884 | |
| 5885 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5886 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5887 | TypeTy *arg1,TypeTy *arg2, |
| 5888 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5889 | // FIXME: Preserve type source info. |
| 5890 | QualType argT1 = GetTypeFromParser(arg1); |
| 5891 | QualType argT2 = GetTypeFromParser(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5892 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5893 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5894 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5895 | if (getLangOptions().CPlusPlus) { |
| 5896 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5897 | << SourceRange(BuiltinLoc, RPLoc); |
| 5898 | return ExprError(); |
| 5899 | } |
| 5900 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5901 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5902 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5903 | } |
| 5904 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5905 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5906 | ExprArg cond, |
| 5907 | ExprArg expr1, ExprArg expr2, |
| 5908 | SourceLocation RPLoc) { |
| 5909 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5910 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5911 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5912 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5913 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5914 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5915 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5916 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5917 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5918 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5919 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5920 | } else { |
| 5921 | // The conditional expression is required to be a constant expression. |
| 5922 | llvm::APSInt condEval(32); |
| 5923 | SourceLocation ExpLoc; |
| 5924 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5925 | return ExprError(Diag(ExpLoc, |
| 5926 | diag::err_typecheck_choose_expr_requires_constant) |
| 5927 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5928 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5929 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5930 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5931 | ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent() |
| 5932 | : RHSExpr->isValueDependent(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5933 | } |
| 5934 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5935 | cond.release(); expr1.release(); expr2.release(); |
| 5936 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5937 | resType, RPLoc, |
| 5938 | resType->isDependentType(), |
| 5939 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5940 | } |
| 5941 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5942 | //===----------------------------------------------------------------------===// |
| 5943 | // Clang Extensions. |
| 5944 | //===----------------------------------------------------------------------===// |
| 5945 | |
| 5946 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5947 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5948 | // Analyze block parameters. |
| 5949 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5950 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5951 | // Add BSI to CurBlock. |
| 5952 | BSI->PrevBlockInfo = CurBlock; |
| 5953 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5954 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5955 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5956 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5957 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | 1d2154c | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 5958 | BSI->hasPrototype = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5959 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5960 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5961 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5962 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5963 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5964 | } |
| 5965 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5966 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5967 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5968 | |
| 5969 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5970 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5971 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5972 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5973 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5974 | if (T->isArrayType()) { |
| 5975 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5976 | diag::err_block_returns_array); |
| 5977 | return; |
| 5978 | } |
| 5979 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5980 | // The parameter list is optional, if there was none, assume (). |
| 5981 | if (!T->isFunctionType()) |
| 5982 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5983 | |
| 5984 | CurBlock->hasPrototype = true; |
| 5985 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5986 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5987 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5988 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5989 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5990 | // FIXME: remove the attribute. |
| 5991 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5992 | QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5993 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5994 | // Do not allow returning a objc interface by-value. |
| 5995 | if (RetTy->isObjCInterfaceType()) { |
| 5996 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5997 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5998 | return; |
| 5999 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 6000 | return; |
| 6001 | } |
| 6002 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6003 | // Analyze arguments to block. |
| 6004 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 6005 | "Not a function declarator!"); |
| 6006 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6007 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6008 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 6009 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6010 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6011 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 6012 | // no arguments, not a function that takes a single void argument. |
| 6013 | if (FTI.hasPrototype && |
| 6014 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 6015 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 6016 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6017 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6018 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6019 | } else if (FTI.hasPrototype) { |
| 6020 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 6021 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6022 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6023 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6024 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6025 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 6026 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 6027 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6028 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 6029 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 6030 | // If this has an identifier, add it to the scope stack. |
| 6031 | if ((*AI)->getIdentifier()) |
| 6032 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6033 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6034 | // Check for a valid sentinel attribute on this block. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6035 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 6036 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6037 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 6038 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6039 | // FIXME: remove the attribute. |
| 6040 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6041 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6042 | // Analyze the return type. |
| 6043 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 6044 | QualType RetTy = T->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6045 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6046 | // Do not allow returning a objc interface by-value. |
| 6047 | if (RetTy->isObjCInterfaceType()) { |
| 6048 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 6049 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 6050 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6051 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6052 | } |
| 6053 | |
| 6054 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 6055 | /// is invoked to pop the information about the block from the action impl. |
| 6056 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 6057 | // Ensure that CurBlock is deleted. |
| 6058 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6059 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6060 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 6061 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6062 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 6063 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6064 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6065 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6066 | } |
| 6067 | |
| 6068 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 6069 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6070 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 6071 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 6072 | // If blocks are disabled, emit an error. |
| 6073 | if (!LangOpts.Blocks) |
| 6074 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6075 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6076 | // Ensure that CurBlock is deleted. |
| 6077 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6078 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6079 | PopDeclContext(); |
| 6080 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6081 | // Pop off CurBlock, handle nested blocks. |
| 6082 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6083 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6084 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6085 | if (!BSI->ReturnType.isNull()) |
| 6086 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6087 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6088 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 6089 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 6090 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6091 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6092 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6093 | QualType BlockTy; |
| 6094 | if (!BSI->hasPrototype) |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6095 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 6096 | NoReturn); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6097 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6098 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6099 | BSI->isVariadic, 0, false, false, 0, 0, |
| 6100 | NoReturn); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6101 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6102 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6103 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6104 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6105 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6106 | // If needed, diagnose invalid gotos and switches in the block. |
| 6107 | if (CurFunctionNeedsScopeChecking) |
| 6108 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 6109 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6110 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 6111 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6112 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6113 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 6114 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6115 | } |
| 6116 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6117 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 6118 | ExprArg expr, TypeTy *type, |
| 6119 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6120 | QualType T = GetTypeFromParser(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6121 | Expr *E = static_cast<Expr*>(expr.get()); |
| 6122 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6123 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6124 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6125 | |
| 6126 | // Get the va_list type |
| 6127 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6128 | if (VaListType->isArrayType()) { |
| 6129 | // Deal with implicit array decay; for example, on x86-64, |
| 6130 | // va_list is an array, but it's supposed to decay to |
| 6131 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6132 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6133 | // Make sure the input expression also decays appropriately. |
| 6134 | UsualUnaryConversions(E); |
| 6135 | } else { |
| 6136 | // Otherwise, the va_list argument must be an l-value because |
| 6137 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6138 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6139 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6140 | return ExprError(); |
| 6141 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6142 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6143 | if (!E->isTypeDependent() && |
| 6144 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6145 | return ExprError(Diag(E->getLocStart(), |
| 6146 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6147 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 6148 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6149 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6150 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6151 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6152 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6153 | expr.release(); |
| 6154 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 6155 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6156 | } |
| 6157 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6158 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6159 | // The type of __null will be int or long, depending on the size of |
| 6160 | // pointers on the target. |
| 6161 | QualType Ty; |
| 6162 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 6163 | Ty = Context.IntTy; |
| 6164 | else |
| 6165 | Ty = Context.LongTy; |
| 6166 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6167 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6168 | } |
| 6169 | |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6170 | static void |
| 6171 | MakeObjCStringLiteralCodeModificationHint(Sema& SemaRef, |
| 6172 | QualType DstType, |
| 6173 | Expr *SrcExpr, |
| 6174 | CodeModificationHint &Hint) { |
| 6175 | if (!SemaRef.getLangOptions().ObjC1) |
| 6176 | return; |
| 6177 | |
| 6178 | const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>(); |
| 6179 | if (!PT) |
| 6180 | return; |
| 6181 | |
| 6182 | // Check if the destination is of type 'id'. |
| 6183 | if (!PT->isObjCIdType()) { |
| 6184 | // Check if the destination is the 'NSString' interface. |
| 6185 | const ObjCInterfaceDecl *ID = PT->getInterfaceDecl(); |
| 6186 | if (!ID || !ID->getIdentifier()->isStr("NSString")) |
| 6187 | return; |
| 6188 | } |
| 6189 | |
| 6190 | // Strip off any parens and casts. |
| 6191 | StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr->IgnoreParenCasts()); |
| 6192 | if (!SL || SL->isWide()) |
| 6193 | return; |
| 6194 | |
| 6195 | Hint = CodeModificationHint::CreateInsertion(SL->getLocStart(), "@"); |
| 6196 | } |
| 6197 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6198 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 6199 | SourceLocation Loc, |
| 6200 | QualType DstType, QualType SrcType, |
| 6201 | Expr *SrcExpr, const char *Flavor) { |
| 6202 | // Decode the result (notice that AST's are still created for extensions). |
| 6203 | bool isInvalid = false; |
| 6204 | unsigned DiagKind; |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6205 | CodeModificationHint Hint; |
| 6206 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6207 | switch (ConvTy) { |
| 6208 | default: assert(0 && "Unknown conversion type"); |
| 6209 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6210 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6211 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 6212 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6213 | case IntToPointer: |
| 6214 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 6215 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6216 | case IncompatiblePointer: |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6217 | MakeObjCStringLiteralCodeModificationHint(*this, DstType, SrcExpr, Hint); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6218 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 6219 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 6220 | case IncompatiblePointerSign: |
| 6221 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 6222 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6223 | case FunctionVoidPointer: |
| 6224 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 6225 | break; |
| 6226 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 6227 | // If the qualifiers lost were because we were applying the |
| 6228 | // (deprecated) C++ conversion from a string literal to a char* |
| 6229 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 6230 | // Ideally, this check would be performed in |
| 6231 | // CheckPointerTypesForAssignment. However, that would require a |
| 6232 | // bit of refactoring (so that the second argument is an |
| 6233 | // expression, rather than a type), which should be done as part |
| 6234 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 6235 | // C++ semantics. |
| 6236 | if (getLangOptions().CPlusPlus && |
| 6237 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 6238 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6239 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 6240 | break; |
Sean Hunt | c9132b6 | 2009-11-08 07:46:34 +0000 | [diff] [blame] | 6241 | case IncompatibleNestedPointerQualifiers: |
Fariborz Jahanian | 3451e92 | 2009-11-09 22:16:37 +0000 | [diff] [blame] | 6242 | DiagKind = diag::ext_nested_pointer_qualifier_mismatch; |
Fariborz Jahanian | 36a862f | 2009-11-07 20:20:40 +0000 | [diff] [blame] | 6243 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6244 | case IntToBlockPointer: |
| 6245 | DiagKind = diag::err_int_to_block_pointer; |
| 6246 | break; |
| 6247 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 6248 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6249 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6250 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6251 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6252 | // it can give a more specific diagnostic. |
| 6253 | DiagKind = diag::warn_incompatible_qualified_id; |
| 6254 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 6255 | case IncompatibleVectors: |
| 6256 | DiagKind = diag::warn_incompatible_vectors; |
| 6257 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6258 | case Incompatible: |
| 6259 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 6260 | isInvalid = true; |
| 6261 | break; |
| 6262 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6263 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 6264 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
Anders Carlsson | b76cd3d | 2009-11-10 04:46:30 +0000 | [diff] [blame] | 6265 | << SrcExpr->getSourceRange() << Hint; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6266 | return isInvalid; |
| 6267 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6268 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 6269 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6270 | llvm::APSInt ICEResult; |
| 6271 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 6272 | if (Result) |
| 6273 | *Result = ICEResult; |
| 6274 | return false; |
| 6275 | } |
| 6276 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6277 | Expr::EvalResult EvalResult; |
| 6278 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6279 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6280 | EvalResult.HasSideEffects) { |
| 6281 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 6282 | |
| 6283 | if (EvalResult.Diag) { |
| 6284 | // We only show the note if it's not the usual "invalid subexpression" |
| 6285 | // or if it's actually in a subexpression. |
| 6286 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 6287 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 6288 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 6289 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6290 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6291 | return true; |
| 6292 | } |
| 6293 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6294 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 6295 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6296 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6297 | if (EvalResult.Diag && |
| 6298 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 6299 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6300 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6301 | if (Result) |
| 6302 | *Result = EvalResult.Val.getInt(); |
| 6303 | return false; |
| 6304 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6305 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6306 | Sema::ExpressionEvaluationContext |
| 6307 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6308 | // Introduce a new set of potentially referenced declarations to the stack. |
| 6309 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 6310 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6311 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6312 | std::swap(ExprEvalContext, NewContext); |
| 6313 | return NewContext; |
| 6314 | } |
| 6315 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6316 | void |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6317 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 6318 | ExpressionEvaluationContext NewContext) { |
| 6319 | ExprEvalContext = NewContext; |
| 6320 | |
| 6321 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 6322 | // Mark any remaining declarations in the current position of the stack |
| 6323 | // as "referenced". If they were not meant to be referenced, semantic |
| 6324 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 6325 | PotentiallyReferencedDecls RemainingDecls; |
| 6326 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 6327 | PotentiallyReferencedDeclStack.pop_back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6328 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6329 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 6330 | IEnd = RemainingDecls.end(); |
| 6331 | I != IEnd; ++I) |
| 6332 | MarkDeclarationReferenced(I->first, I->second); |
| 6333 | } |
| 6334 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6335 | |
| 6336 | /// \brief Note that the given declaration was referenced in the source code. |
| 6337 | /// |
| 6338 | /// This routine should be invoke whenever a given declaration is referenced |
| 6339 | /// in the source code, and where that reference occurred. If this declaration |
| 6340 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 6341 | /// C99 6.9p3), then the declaration will be marked as used. |
| 6342 | /// |
| 6343 | /// \param Loc the location where the declaration was referenced. |
| 6344 | /// |
| 6345 | /// \param D the declaration that has been referenced by the source code. |
| 6346 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 6347 | assert(D && "No declaration?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6348 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6349 | if (D->isUsed()) |
| 6350 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6351 | |
Douglas Gregor | b5352cf | 2009-10-08 21:35:42 +0000 | [diff] [blame] | 6352 | // Mark a parameter or variable declaration "used", regardless of whether we're in a |
| 6353 | // template or not. The reason for this is that unevaluated expressions |
| 6354 | // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and |
| 6355 | // -Wunused-parameters) |
| 6356 | if (isa<ParmVarDecl>(D) || |
| 6357 | (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6358 | D->setUsed(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6359 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6360 | // Do not mark anything as "used" within a dependent context; wait for |
| 6361 | // an instantiation. |
| 6362 | if (CurContext->isDependentContext()) |
| 6363 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6364 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6365 | switch (ExprEvalContext) { |
| 6366 | case Unevaluated: |
| 6367 | // We are in an expression that is not potentially evaluated; do nothing. |
| 6368 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6369 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6370 | case PotentiallyEvaluated: |
| 6371 | // We are in a potentially-evaluated expression, so this declaration is |
| 6372 | // "used"; handle this below. |
| 6373 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6374 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6375 | case PotentiallyPotentiallyEvaluated: |
| 6376 | // We are in an expression that may be potentially evaluated; queue this |
| 6377 | // declaration reference until we know whether the expression is |
| 6378 | // potentially evaluated. |
| 6379 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 6380 | return; |
| 6381 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6382 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6383 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 6384 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6385 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 6386 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 6387 | if (!Constructor->isUsed()) |
| 6388 | DefineImplicitDefaultConstructor(Loc, Constructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6389 | } else if (Constructor->isImplicit() && |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 6390 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6391 | if (!Constructor->isUsed()) |
| 6392 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 6393 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 6394 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 6395 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 6396 | DefineImplicitDestructor(Loc, Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6397 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 6398 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 6399 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 6400 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 6401 | if (!MethodDecl->isUsed()) |
| 6402 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 6403 | } |
| 6404 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 6405 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6406 | // Implicit instantiation of function templates and member functions of |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 6407 | // class templates. |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6408 | if (!Function->getBody() && Function->isImplicitlyInstantiable()) { |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6409 | bool AlreadyInstantiated = false; |
| 6410 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 6411 | = Function->getTemplateSpecializationInfo()) { |
| 6412 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 6413 | SpecInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6414 | else if (SpecInfo->getTemplateSpecializationKind() |
| 6415 | == TSK_ImplicitInstantiation) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6416 | AlreadyInstantiated = true; |
| 6417 | } else if (MemberSpecializationInfo *MSInfo |
| 6418 | = Function->getMemberSpecializationInfo()) { |
| 6419 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
| 6420 | MSInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6421 | else if (MSInfo->getTemplateSpecializationKind() |
| 6422 | == TSK_ImplicitInstantiation) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6423 | AlreadyInstantiated = true; |
| 6424 | } |
| 6425 | |
| 6426 | if (!AlreadyInstantiated) |
| 6427 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
| 6428 | } |
| 6429 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6430 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6431 | Function->setUsed(true); |
| 6432 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6433 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6434 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6435 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6436 | // Implicit instantiation of static data members of class templates. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6437 | if (Var->isStaticDataMember() && |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6438 | Var->getInstantiatedFromStaticDataMember()) { |
| 6439 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 6440 | assert(MSInfo && "Missing member specialization information?"); |
| 6441 | if (MSInfo->getPointOfInstantiation().isInvalid() && |
| 6442 | MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { |
| 6443 | MSInfo->setPointOfInstantiation(Loc); |
| 6444 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 6445 | } |
| 6446 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6447 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6448 | // FIXME: keep track of references to static data? |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6449 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6450 | D->setUsed(true); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6451 | return; |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 6452 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6453 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 6454 | |
| 6455 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 6456 | CallExpr *CE, FunctionDecl *FD) { |
| 6457 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 6458 | return false; |
| 6459 | |
| 6460 | PartialDiagnostic Note = |
| 6461 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 6462 | << FD->getDeclName() : PDiag(); |
| 6463 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
| 6464 | |
| 6465 | if (RequireCompleteType(Loc, ReturnType, |
| 6466 | FD ? |
| 6467 | PDiag(diag::err_call_function_incomplete_return) |
| 6468 | << CE->getSourceRange() << FD->getDeclName() : |
| 6469 | PDiag(diag::err_call_incomplete_return) |
| 6470 | << CE->getSourceRange(), |
| 6471 | std::make_pair(NoteLoc, Note))) |
| 6472 | return true; |
| 6473 | |
| 6474 | return false; |
| 6475 | } |
| 6476 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6477 | // Diagnose the common s/=/==/ typo. Note that adding parentheses |
| 6478 | // will prevent this condition from triggering, which is what we want. |
| 6479 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 6480 | SourceLocation Loc; |
| 6481 | |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 6482 | unsigned diagnostic = diag::warn_condition_is_assignment; |
| 6483 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6484 | if (isa<BinaryOperator>(E)) { |
| 6485 | BinaryOperator *Op = cast<BinaryOperator>(E); |
| 6486 | if (Op->getOpcode() != BinaryOperator::Assign) |
| 6487 | return; |
| 6488 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 6489 | // Greylist some idioms by putting them into a warning subcategory. |
| 6490 | if (ObjCMessageExpr *ME |
| 6491 | = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) { |
| 6492 | Selector Sel = ME->getSelector(); |
| 6493 | |
John McCall | c8d8ac5 | 2009-11-12 00:06:05 +0000 | [diff] [blame] | 6494 | // self = [<foo> init...] |
| 6495 | if (isSelfExpr(Op->getLHS()) |
| 6496 | && Sel.getIdentifierInfoForSlot(0)->getName().startswith("init")) |
| 6497 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 6498 | |
| 6499 | // <foo> = [<bar> nextObject] |
| 6500 | else if (Sel.isUnarySelector() && |
| 6501 | Sel.getIdentifierInfoForSlot(0)->getName() == "nextObject") |
| 6502 | diagnostic = diag::warn_condition_is_idiomatic_assignment; |
| 6503 | } |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 6504 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6505 | Loc = Op->getOperatorLoc(); |
| 6506 | } else if (isa<CXXOperatorCallExpr>(E)) { |
| 6507 | CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E); |
| 6508 | if (Op->getOperator() != OO_Equal) |
| 6509 | return; |
| 6510 | |
| 6511 | Loc = Op->getOperatorLoc(); |
| 6512 | } else { |
| 6513 | // Not an assignment. |
| 6514 | return; |
| 6515 | } |
| 6516 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6517 | SourceLocation Open = E->getSourceRange().getBegin(); |
John McCall | 2d15215 | 2009-10-12 22:25:59 +0000 | [diff] [blame] | 6518 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6519 | |
John McCall | a52ef08 | 2009-11-11 02:41:58 +0000 | [diff] [blame] | 6520 | Diag(Loc, diagnostic) |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6521 | << E->getSourceRange() |
| 6522 | << CodeModificationHint::CreateInsertion(Open, "(") |
| 6523 | << CodeModificationHint::CreateInsertion(Close, ")"); |
| 6524 | } |
| 6525 | |
| 6526 | bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) { |
| 6527 | DiagnoseAssignmentAsCondition(E); |
| 6528 | |
| 6529 | if (!E->isTypeDependent()) { |
| 6530 | DefaultFunctionArrayConversion(E); |
| 6531 | |
| 6532 | QualType T = E->getType(); |
| 6533 | |
| 6534 | if (getLangOptions().CPlusPlus) { |
| 6535 | if (CheckCXXBooleanCondition(E)) // C++ 6.4p4 |
| 6536 | return true; |
| 6537 | } else if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 6538 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 6539 | << T << E->getSourceRange(); |
| 6540 | return true; |
| 6541 | } |
| 6542 | } |
| 6543 | |
| 6544 | return false; |
| 6545 | } |