Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements semantic analysis for expressions. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "Sema.h" |
| 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | c4a1dea | 2008-08-11 05:35:13 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclTemplate.h" |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 18 | #include "clang/AST/ExprCXX.h" |
Steve Naroff | f494b57 | 2008-05-29 21:12:08 +0000 | [diff] [blame] | 19 | #include "clang/AST/ExprObjC.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 20 | #include "clang/Basic/PartialDiagnostic.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 21 | #include "clang/Basic/SourceManager.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 22 | #include "clang/Basic/TargetInfo.h" |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 23 | #include "clang/Lex/LiteralSupport.h" |
| 24 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 25 | #include "clang/Parse/DeclSpec.h" |
Chris Lattner | 418f6c7 | 2008-10-26 23:43:26 +0000 | [diff] [blame] | 26 | #include "clang/Parse/Designator.h" |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 27 | #include "clang/Parse/Scope.h" |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 28 | using namespace clang; |
| 29 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 30 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 31 | /// \brief Determine whether the use of this declaration is valid, and |
| 32 | /// emit any corresponding diagnostics. |
| 33 | /// |
| 34 | /// This routine diagnoses various problems with referencing |
| 35 | /// declarations that can occur when using a declaration. For example, |
| 36 | /// it might warn if a deprecated or unavailable declaration is being |
| 37 | /// used, or produce an error (and return true) if a C++0x deleted |
| 38 | /// function is being used. |
| 39 | /// |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 40 | /// If IgnoreDeprecated is set to true, this should not want about deprecated |
| 41 | /// decls. |
| 42 | /// |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 43 | /// \returns true if there was an error (this declaration cannot be |
| 44 | /// referenced), false otherwise. |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 45 | /// |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 46 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 47 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 48 | if (D->getAttr<DeprecatedAttr>()) { |
John McCall | 54abf7d | 2009-11-04 02:18:39 +0000 | [diff] [blame] | 49 | EmitDeprecationWarning(D, Loc); |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 50 | } |
| 51 | |
Chris Lattner | ffb9368 | 2009-10-25 17:21:40 +0000 | [diff] [blame] | 52 | // See if the decl is unavailable |
| 53 | if (D->getAttr<UnavailableAttr>()) { |
| 54 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
| 55 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 56 | } |
| 57 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 58 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 59 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 60 | if (FD->isDeleted()) { |
| 61 | Diag(Loc, diag::err_deleted_function_use); |
| 62 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 63 | return true; |
| 64 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 65 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 66 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 67 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 68 | } |
| 69 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 70 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 71 | /// (and other functions in future), which have been declared with sentinel |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 72 | /// attribute. It warns if call does not have the sentinel argument. |
| 73 | /// |
| 74 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 75 | Expr **Args, unsigned NumArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 76 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 77 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 78 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 79 | int sentinelPos = attr->getSentinel(); |
| 80 | int nullPos = attr->getNullPos(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 81 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 82 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 83 | // 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] | 84 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 85 | bool warnNotEnoughArgs = false; |
| 86 | int isMethod = 0; |
| 87 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 88 | // skip over named parameters. |
| 89 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 90 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 91 | if (nullPos) |
| 92 | --nullPos; |
| 93 | else |
| 94 | ++i; |
| 95 | } |
| 96 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 97 | isMethod = 1; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 98 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 99 | // skip over named parameters. |
| 100 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 101 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 102 | if (nullPos) |
| 103 | --nullPos; |
| 104 | else |
| 105 | ++i; |
| 106 | } |
| 107 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 108 | } else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 109 | // block or function pointer call. |
| 110 | QualType Ty = V->getType(); |
| 111 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 112 | const FunctionType *FT = Ty->isFunctionPointerType() |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 113 | ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>() |
| 114 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 115 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 116 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 117 | unsigned k; |
| 118 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 119 | if (nullPos) |
| 120 | --nullPos; |
| 121 | else |
| 122 | ++i; |
| 123 | } |
| 124 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 125 | } |
| 126 | if (Ty->isBlockPointerType()) |
| 127 | isMethod = 2; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 128 | } else |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 129 | return; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 130 | } else |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 131 | return; |
| 132 | |
| 133 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 134 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 135 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 136 | return; |
| 137 | } |
| 138 | int sentinel = i; |
| 139 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 140 | --sentinelPos; |
| 141 | ++i; |
| 142 | } |
| 143 | if (sentinelPos > 0) { |
| 144 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 145 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 146 | return; |
| 147 | } |
| 148 | while (i < NumArgs-1) { |
| 149 | ++i; |
| 150 | ++sentinel; |
| 151 | } |
| 152 | Expr *sentinelExpr = Args[sentinel]; |
| 153 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 154 | !sentinelExpr->isNullPointerConstant(Context, |
| 155 | Expr::NPC_ValueDependentIsNull))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 156 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 157 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 158 | } |
| 159 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 160 | } |
| 161 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 162 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 163 | Expr *Ex = (Expr *)E; |
| 164 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 165 | } |
| 166 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 167 | //===----------------------------------------------------------------------===// |
| 168 | // Standard Promotions and Conversions |
| 169 | //===----------------------------------------------------------------------===// |
| 170 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 171 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 172 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 173 | QualType Ty = E->getType(); |
| 174 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 175 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 176 | if (Ty->isFunctionType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 177 | ImpCastExprToType(E, Context.getPointerType(Ty), |
Anders Carlsson | b633c4e | 2009-09-01 20:37:18 +0000 | [diff] [blame] | 178 | CastExpr::CK_FunctionToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 179 | else if (Ty->isArrayType()) { |
| 180 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 181 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 182 | // type 'array of type' is converted to an expression that has type 'pointer |
| 183 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 184 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 185 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 186 | // |
| 187 | // C++ 4.2p1: |
| 188 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 189 | // T" can be converted to an rvalue of type "pointer to T". |
| 190 | // |
| 191 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 192 | E->isLvalue(Context) == Expr::LV_Valid) |
Anders Carlsson | 112a0a8 | 2009-08-07 23:48:20 +0000 | [diff] [blame] | 193 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 194 | CastExpr::CK_ArrayToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 195 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 199 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 200 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 201 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 202 | /// In these instances, this routine should *not* be called. |
| 203 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 204 | QualType Ty = Expr->getType(); |
| 205 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 206 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 207 | // C99 6.3.1.1p2: |
| 208 | // |
| 209 | // The following may be used in an expression wherever an int or |
| 210 | // unsigned int may be used: |
| 211 | // - an object or expression with an integer type whose integer |
| 212 | // conversion rank is less than or equal to the rank of int |
| 213 | // and unsigned int. |
| 214 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 215 | // |
| 216 | // If an int can represent all values of the original type, the |
| 217 | // value is converted to an int; otherwise, it is converted to an |
| 218 | // unsigned int. These are called the integer promotions. All |
| 219 | // other types are unchanged by the integer promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 220 | QualType PTy = Context.isPromotableBitField(Expr); |
| 221 | if (!PTy.isNull()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 222 | ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast); |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 223 | return Expr; |
| 224 | } |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 225 | if (Ty->isPromotableIntegerType()) { |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 226 | QualType PT = Context.getPromotedIntegerType(Ty); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 227 | ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 228 | return Expr; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 229 | } |
| 230 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 231 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 232 | return Expr; |
| 233 | } |
| 234 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 235 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 236 | /// 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] | 237 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 238 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 239 | QualType Ty = Expr->getType(); |
| 240 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 241 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 242 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 243 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 244 | if (BT->getKind() == BuiltinType::Float) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 245 | return ImpCastExprToType(Expr, Context.DoubleTy, |
| 246 | CastExpr::CK_FloatingCast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 247 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 248 | UsualUnaryConversions(Expr); |
| 249 | } |
| 250 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 251 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 252 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 253 | /// interfaces passed by value. This returns true if the argument type is |
| 254 | /// completely illegal. |
| 255 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 256 | DefaultArgumentPromotion(Expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 257 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 258 | if (Expr->getType()->isObjCInterfaceType()) { |
| 259 | Diag(Expr->getLocStart(), |
| 260 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 261 | << Expr->getType() << CT; |
| 262 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 263 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 264 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 265 | if (!Expr->getType()->isPODType()) |
| 266 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 267 | << Expr->getType() << CT; |
| 268 | |
| 269 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 270 | } |
| 271 | |
| 272 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 273 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 274 | /// 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] | 275 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 276 | /// responsible for emitting appropriate error diagnostics. |
| 277 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 278 | /// GCC. |
| 279 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 280 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 281 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 282 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 283 | |
| 284 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 285 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 286 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 287 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 288 | QualType lhs = |
| 289 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 290 | QualType rhs = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 291 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 292 | |
| 293 | // If both types are identical, no conversion is needed. |
| 294 | if (lhs == rhs) |
| 295 | return lhs; |
| 296 | |
| 297 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 298 | // The caller can deal with this (e.g. pointer + int). |
| 299 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 300 | return lhs; |
| 301 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 302 | // Perform bitfield promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 303 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 304 | if (!LHSBitfieldPromoteTy.isNull()) |
| 305 | lhs = LHSBitfieldPromoteTy; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 306 | QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 307 | if (!RHSBitfieldPromoteTy.isNull()) |
| 308 | rhs = RHSBitfieldPromoteTy; |
| 309 | |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 310 | QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 311 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 312 | ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown); |
| 313 | ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 314 | return destType; |
| 315 | } |
| 316 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 317 | //===----------------------------------------------------------------------===// |
| 318 | // Semantic Analysis for various Expression Types |
| 319 | //===----------------------------------------------------------------------===// |
| 320 | |
| 321 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 322 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 323 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 324 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 325 | /// multiple tokens. However, the common case is that StringToks points to one |
| 326 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 327 | /// |
| 328 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 329 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 330 | assert(NumStringToks && "Must have at least one string!"); |
| 331 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 332 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 333 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 334 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 335 | |
| 336 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 337 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 338 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 339 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 340 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 341 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 342 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 343 | |
| 344 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 345 | if (getLangOptions().CPlusPlus) |
| 346 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 347 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 348 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 349 | // the nul terminator character as well as the string length for pascal |
| 350 | // strings. |
| 351 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 352 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 353 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 354 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 355 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 356 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 357 | Literal.GetStringLength(), |
| 358 | Literal.AnyWide, StrTy, |
| 359 | &StringTokLocs[0], |
| 360 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 361 | } |
| 362 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 363 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 364 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 365 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 366 | /// for values inside the block or for globals). |
| 367 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 368 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 369 | /// up-to-date. |
| 370 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 371 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 372 | ValueDecl *VD) { |
| 373 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 374 | // we wanted to. |
| 375 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 376 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 377 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 378 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 379 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 380 | return false; |
| 381 | |
| 382 | // If this is a reference to an extern, static, or global variable, no need to |
| 383 | // snapshot it. |
| 384 | // FIXME: What about 'const' variables in C++? |
| 385 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 386 | if (!Var->hasLocalStorage()) |
| 387 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 388 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 389 | // Blocks that have these can't be constant. |
| 390 | CurBlock->hasBlockDeclRefExprs = true; |
| 391 | |
| 392 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 393 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 394 | // be defined outside all of the current blocks (in which case the blocks do |
| 395 | // all get the bit). Walk the nesting chain. |
| 396 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 397 | NextBlock = NextBlock->PrevBlockInfo) { |
| 398 | // If we found the defining block for the variable, don't mark the block as |
| 399 | // having a reference outside it. |
| 400 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 401 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 402 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 403 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 404 | // a snapshot as well. |
| 405 | NextBlock->hasBlockDeclRefExprs = true; |
| 406 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 407 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 408 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 409 | } |
| 410 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 411 | |
| 412 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 413 | /// BuildDeclRefExpr - Build a DeclRefExpr. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 414 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 415 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 416 | bool TypeDependent, bool ValueDependent, |
| 417 | const CXXScopeSpec *SS) { |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 418 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 419 | Diag(Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 420 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 421 | << D->getDeclName(); |
| 422 | return ExprError(); |
| 423 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 424 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 425 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 426 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 427 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 428 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 429 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 430 | << D->getIdentifier() << FD->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 431 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 432 | << D->getIdentifier(); |
| 433 | return ExprError(); |
| 434 | } |
| 435 | } |
| 436 | } |
| 437 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 438 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 439 | MarkDeclarationReferenced(Loc, D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 440 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 441 | return Owned(DeclRefExpr::Create(Context, |
| 442 | SS? (NestedNameSpecifier *)SS->getScopeRep() : 0, |
| 443 | SS? SS->getRange() : SourceRange(), |
| 444 | D, Loc, |
| 445 | Ty, TypeDependent, ValueDependent)); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 446 | } |
| 447 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 448 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 449 | /// variable corresponding to the anonymous union or struct whose type |
| 450 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 451 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 452 | RecordDecl *Record) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 453 | assert(Record->isAnonymousStructOrUnion() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 454 | "Record must be an anonymous struct or union!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 455 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 456 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 457 | // operation rather than a slow walk through DeclContext's vector (which |
| 458 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 459 | DeclContext *Ctx = Record->getDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 461 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 462 | D != DEnd; ++D) { |
| 463 | if (*D == Record) { |
| 464 | // The object for the anonymous struct/union directly |
| 465 | // follows its type in the list of declarations. |
| 466 | ++D; |
| 467 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 468 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 469 | return *D; |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | assert(false && "Missing object for anonymous record"); |
| 474 | return 0; |
| 475 | } |
| 476 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 477 | /// \brief Given a field that represents a member of an anonymous |
| 478 | /// struct/union, build the path from that field's context to the |
| 479 | /// actual member. |
| 480 | /// |
| 481 | /// Construct the sequence of field member references we'll have to |
| 482 | /// perform to get to the field in the anonymous union/struct. The |
| 483 | /// list of members is built from the field outward, so traverse it |
| 484 | /// backwards to go from an object in the current context to the field |
| 485 | /// we found. |
| 486 | /// |
| 487 | /// \returns The variable from which the field access should begin, |
| 488 | /// for an anonymous struct/union that is not a member of another |
| 489 | /// class. Otherwise, returns NULL. |
| 490 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 491 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 492 | assert(Field->getDeclContext()->isRecord() && |
| 493 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 494 | && "Field must be stored inside an anonymous struct or union"); |
| 495 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 496 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 497 | VarDecl *BaseObject = 0; |
| 498 | DeclContext *Ctx = Field->getDeclContext(); |
| 499 | do { |
| 500 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 501 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 502 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 503 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 504 | else { |
| 505 | BaseObject = cast<VarDecl>(AnonObject); |
| 506 | break; |
| 507 | } |
| 508 | Ctx = Ctx->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 509 | } while (Ctx->isRecord() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 510 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 511 | |
| 512 | return BaseObject; |
| 513 | } |
| 514 | |
| 515 | Sema::OwningExprResult |
| 516 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 517 | FieldDecl *Field, |
| 518 | Expr *BaseObjectExpr, |
| 519 | SourceLocation OpLoc) { |
| 520 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 521 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 522 | AnonFields); |
| 523 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 524 | // Build the expression that refers to the base object, from |
| 525 | // which we will build a sequence of member references to each |
| 526 | // of the anonymous union objects and, eventually, the field we |
| 527 | // found via name lookup. |
| 528 | bool BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 529 | Qualifiers BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 530 | if (BaseObject) { |
| 531 | // BaseObject is an anonymous struct/union variable (and is, |
| 532 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 533 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 534 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 535 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 536 | SourceLocation()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 537 | BaseQuals |
| 538 | = Context.getCanonicalType(BaseObject->getType()).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 539 | } else if (BaseObjectExpr) { |
| 540 | // The caller provided the base object expression. Determine |
| 541 | // whether its a pointer and whether it adds any qualifiers to the |
| 542 | // anonymous struct/union fields we're looking into. |
| 543 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 544 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 545 | BaseObjectIsPointer = true; |
| 546 | ObjectType = ObjectPtr->getPointeeType(); |
| 547 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 548 | BaseQuals |
| 549 | = Context.getCanonicalType(ObjectType).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 550 | } else { |
| 551 | // We've found a member of an anonymous struct/union that is |
| 552 | // inside a non-anonymous struct/union, so in a well-formed |
| 553 | // program our base object expression is "this". |
| 554 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 555 | if (!MD->isStatic()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 556 | QualType AnonFieldType |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 557 | = Context.getTagDeclType( |
| 558 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 559 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 560 | if ((Context.getCanonicalType(AnonFieldType) |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 561 | == Context.getCanonicalType(ThisType)) || |
| 562 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 563 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 564 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 565 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 566 | BaseObjectIsPointer = true; |
| 567 | } |
| 568 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 569 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 570 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 571 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 572 | BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 573 | } |
| 574 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 575 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 576 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 577 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 578 | } |
| 579 | |
| 580 | // Build the implicit member references to the field of the |
| 581 | // anonymous struct/union. |
| 582 | Expr *Result = BaseObjectExpr; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 583 | Qualifiers ResultQuals = BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 584 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 585 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 586 | FI != FIEnd; ++FI) { |
| 587 | QualType MemberType = (*FI)->getType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 588 | Qualifiers MemberTypeQuals = |
| 589 | Context.getCanonicalType(MemberType).getQualifiers(); |
| 590 | |
| 591 | // CVR attributes from the base are picked up by members, |
| 592 | // except that 'mutable' members don't pick up 'const'. |
| 593 | if ((*FI)->isMutable()) |
| 594 | ResultQuals.removeConst(); |
| 595 | |
| 596 | // GC attributes are never picked up by members. |
| 597 | ResultQuals.removeObjCGCAttr(); |
| 598 | |
| 599 | // TR 18037 does not allow fields to be declared with address spaces. |
| 600 | assert(!MemberTypeQuals.hasAddressSpace()); |
| 601 | |
| 602 | Qualifiers NewQuals = ResultQuals + MemberTypeQuals; |
| 603 | if (NewQuals != MemberTypeQuals) |
| 604 | MemberType = Context.getQualifiedType(MemberType, NewQuals); |
| 605 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 606 | MarkDeclarationReferenced(Loc, *FI); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 607 | // FIXME: Might this end up being a qualified name? |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 608 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 609 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 610 | BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 611 | ResultQuals = NewQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 612 | } |
| 613 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 614 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 615 | } |
| 616 | |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 617 | Sema::OwningExprResult Sema::ActOnIdExpression(Scope *S, |
| 618 | const CXXScopeSpec &SS, |
| 619 | UnqualifiedId &Name, |
| 620 | bool HasTrailingLParen, |
| 621 | bool IsAddressOfOperand) { |
| 622 | if (Name.getKind() == UnqualifiedId::IK_TemplateId) { |
| 623 | ASTTemplateArgsPtr TemplateArgsPtr(*this, |
| 624 | Name.TemplateId->getTemplateArgs(), |
| 625 | Name.TemplateId->getTemplateArgIsType(), |
| 626 | Name.TemplateId->NumArgs); |
| 627 | return ActOnTemplateIdExpr(SS, |
| 628 | TemplateTy::make(Name.TemplateId->Template), |
| 629 | Name.TemplateId->TemplateNameLoc, |
| 630 | Name.TemplateId->LAngleLoc, |
| 631 | TemplateArgsPtr, |
| 632 | Name.TemplateId->getTemplateArgLocations(), |
| 633 | Name.TemplateId->RAngleLoc); |
| 634 | } |
| 635 | |
| 636 | // FIXME: We lose a bunch of source information by doing this. Later, |
| 637 | // we'll want to merge ActOnDeclarationNameExpr's logic into |
| 638 | // ActOnIdExpression. |
| 639 | return ActOnDeclarationNameExpr(S, |
| 640 | Name.StartLocation, |
| 641 | GetNameFromUnqualifiedId(Name), |
| 642 | HasTrailingLParen, |
| 643 | &SS, |
| 644 | IsAddressOfOperand); |
| 645 | } |
| 646 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 647 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 648 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 649 | /// performs lookup on that name and returns an expression that refers |
| 650 | /// to that name. This routine isn't directly called from the parser, |
| 651 | /// because the parser doesn't know about DeclarationName. Rather, |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 652 | /// this routine is called by ActOnIdExpression, which contains a |
| 653 | /// parsed UnqualifiedId. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 654 | /// |
| 655 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 656 | /// function call context. LookupCtx is only used for a C++ |
| 657 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 658 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 659 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 660 | /// isAddressOfOperand means that this expression is the direct operand |
| 661 | /// of an address-of operator. This matters because this is the only |
| 662 | /// situation where a qualified name referencing a non-static member may |
| 663 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 664 | Sema::OwningExprResult |
| 665 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 666 | DeclarationName Name, bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 667 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 668 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 669 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 670 | if (SS && SS->isInvalid()) |
| 671 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 672 | |
| 673 | // C++ [temp.dep.expr]p3: |
| 674 | // An id-expression is type-dependent if it contains: |
| 675 | // -- a nested-name-specifier that contains a class-name that |
| 676 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 677 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 678 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 679 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 680 | Loc, SS->getRange(), |
Anders Carlsson | 9b31df4 | 2009-07-09 00:05:08 +0000 | [diff] [blame] | 681 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()), |
| 682 | isAddressOfOperand)); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 683 | } |
| 684 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 685 | LookupResult Lookup; |
| 686 | LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 687 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 688 | if (Lookup.isAmbiguous()) { |
| 689 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 690 | SS && SS->isSet() ? SS->getRange() |
| 691 | : SourceRange()); |
| 692 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 693 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 694 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 695 | NamedDecl *D = Lookup.getAsSingleDecl(Context); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 696 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 697 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 698 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 699 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 700 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 701 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 702 | // 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] | 703 | // found a decl, but that decl is outside the current instance method (i.e. |
| 704 | // 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] | 705 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 706 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 707 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 708 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 709 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 710 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 711 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 712 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 713 | |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 714 | // If we're referencing an invalid decl, just return this as a silent |
| 715 | // error node. The error diagnostic was already emitted on the decl. |
| 716 | if (IV->isInvalidDecl()) |
| 717 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 718 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 719 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 720 | // If a class method attemps to use a free standing ivar, this is |
| 721 | // an error. |
| 722 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 723 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 724 | << IV->getDeclName()); |
| 725 | // If a class method uses a global variable, even if an ivar with |
| 726 | // same name exists, use the global. |
| 727 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 728 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 729 | ClassDeclared != IFace) |
| 730 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 731 | // FIXME: This should use a new expr for a direct reference, don't |
| 732 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 733 | IdentifierInfo &II = Context.Idents.get("self"); |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 734 | UnqualifiedId SelfName; |
| 735 | SelfName.setIdentifier(&II, SourceLocation()); |
| 736 | CXXScopeSpec SelfScopeSpec; |
| 737 | OwningExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, |
| 738 | SelfName, false, false); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 739 | MarkDeclarationReferenced(Loc, IV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 740 | return Owned(new (Context) |
| 741 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 742 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 743 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 744 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 745 | } else if (getCurMethodDecl()->isInstanceMethod()) { |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 746 | // We should warn if a local variable hides an ivar. |
| 747 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 748 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 749 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 750 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 751 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 752 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 753 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 754 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 755 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 756 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 757 | QualType T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 758 | |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 759 | if (getCurMethodDecl()->isInstanceMethod()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 760 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 761 | getCurMethodDecl()->getClassInterface())); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 762 | else |
| 763 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 764 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 765 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 766 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 767 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 768 | // Determine whether this name might be a candidate for |
| 769 | // argument-dependent lookup. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 770 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 771 | HasTrailingLParen; |
| 772 | |
| 773 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 774 | // We've seen something of the form |
| 775 | // |
| 776 | // identifier( |
| 777 | // |
| 778 | // and we did not find any entity by the name |
| 779 | // "identifier". However, this identifier is still subject to |
| 780 | // argument-dependent lookup, so keep track of the name. |
| 781 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 782 | Context.OverloadTy, |
| 783 | Loc)); |
| 784 | } |
| 785 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 786 | if (D == 0) { |
| 787 | // Otherwise, this could be an implicitly declared function reference (legal |
| 788 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 789 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 790 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 791 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 792 | else { |
| 793 | // If this name wasn't predeclared and if this is not a function call, |
| 794 | // diagnose the problem. |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 795 | if (SS && !SS->isEmpty()) |
| 796 | return ExprError(Diag(Loc, diag::err_no_member) |
| 797 | << Name << computeDeclContext(*SS, false) |
| 798 | << SS->getRange()); |
| 799 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 800 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 801 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 802 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 803 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 804 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 805 | } |
| 806 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 807 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 808 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 809 | // Warn about constructs like: |
| 810 | // if (void *X = foo()) { ... } else { X }. |
| 811 | // In the else block, the pointer is always false. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 812 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 813 | // FIXME: In a template instantiation, we don't have scope |
| 814 | // information to check this property. |
| 815 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 816 | Scope *CheckS = S; |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 817 | while (CheckS && CheckS->getControlParent()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 818 | if (CheckS->isWithinElse() && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 819 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 820 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 821 | << Var->getDeclName() |
| 822 | << (Var->getType()->isPointerType()? 2 : |
| 823 | Var->getType()->isBooleanType()? 1 : 0)); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 824 | break; |
| 825 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 826 | |
Douglas Gregor | 9c4b838 | 2009-11-05 17:49:26 +0000 | [diff] [blame] | 827 | // Move to the parent of this scope. |
| 828 | CheckS = CheckS->getParent(); |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 829 | } |
| 830 | } |
| 831 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { |
| 832 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 833 | // C99 DR 316 says that, if a function type comes from a |
| 834 | // function definition (without a prototype), that type is only |
| 835 | // used for checking compatibility. Therefore, when referencing |
| 836 | // the function, we pretend that we don't have the full function |
| 837 | // type. |
| 838 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 839 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 840 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 841 | QualType T = Func->getType(); |
| 842 | QualType NoProtoType = T; |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 843 | if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>()) |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 844 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
| 845 | return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); |
| 846 | } |
| 847 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 848 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 849 | return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); |
| 850 | } |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 851 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 852 | bool |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 853 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 854 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 855 | if (CXXRecordDecl *RD = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 856 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 857 | QualType DestType = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 858 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 859 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 860 | return false; |
| 861 | QualType FromRecordType = From->getType(); |
| 862 | QualType DestRecordType = DestType; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 863 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 864 | DestType = Context.getPointerType(DestType); |
| 865 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 866 | } |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 867 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 868 | CheckDerivedToBaseConversion(FromRecordType, |
| 869 | DestRecordType, |
| 870 | From->getSourceRange().getBegin(), |
| 871 | From->getSourceRange())) |
| 872 | return true; |
Anders Carlsson | 3503d04 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 873 | ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, |
| 874 | /*isLvalue=*/true); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 875 | } |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 876 | return false; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 877 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 878 | |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 879 | /// \brief Build a MemberExpr AST node. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 880 | static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow, |
| 881 | const CXXScopeSpec *SS, NamedDecl *Member, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 882 | SourceLocation Loc, QualType Ty) { |
| 883 | if (SS && SS->isSet()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 884 | return MemberExpr::Create(C, Base, isArrow, |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 885 | (NestedNameSpecifier *)SS->getScopeRep(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 886 | SS->getRange(), Member, Loc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 887 | // FIXME: Explicit template argument lists |
| 888 | false, SourceLocation(), 0, 0, SourceLocation(), |
| 889 | Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 890 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 891 | return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty); |
| 892 | } |
| 893 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 894 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 895 | Sema::OwningExprResult |
| 896 | Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 897 | bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 898 | const CXXScopeSpec *SS, |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 899 | bool isAddressOfOperand) { |
| 900 | assert(D && "Cannot refer to a NULL declaration"); |
| 901 | DeclarationName Name = D->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 902 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 903 | // If this is an expression of the form &Class::member, don't build an |
| 904 | // implicit member ref, because we want a pointer to the member in general, |
| 905 | // not any specific instance's member. |
| 906 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 907 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 908 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 909 | QualType DType; |
| 910 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 911 | DType = FD->getType().getNonReferenceType(); |
| 912 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 913 | DType = Method->getType(); |
| 914 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 915 | DType = Context.OverloadTy; |
| 916 | } |
| 917 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 918 | if (!DType.isNull()) { |
| 919 | // The pointer is type- and value-dependent if it points into something |
| 920 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 921 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 922 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 923 | } |
| 924 | } |
| 925 | } |
| 926 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 927 | // We may have found a field within an anonymous union or struct |
| 928 | // (C++ [class.union]). |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 929 | // FIXME: This needs to happen post-isImplicitMemberReference? |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 930 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 931 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 932 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 933 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 934 | // Cope with an implicit member access in a C++ non-static member function. |
| 935 | QualType ThisType, MemberType; |
| 936 | if (isImplicitMemberReference(SS, D, Loc, ThisType, MemberType)) { |
| 937 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), ThisType); |
| 938 | MarkDeclarationReferenced(Loc, D); |
| 939 | if (PerformObjectMemberConversion(This, D)) |
| 940 | return ExprError(); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 941 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 942 | bool ShouldCheckUse = true; |
| 943 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 944 | // Don't diagnose the use of a virtual member function unless it's |
| 945 | // explicitly qualified. |
| 946 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 947 | ShouldCheckUse = false; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 948 | } |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 949 | |
| 950 | if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc)) |
| 951 | return ExprError(); |
| 952 | return Owned(BuildMemberExpr(Context, This, true, SS, D, |
| 953 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 954 | } |
| 955 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 956 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 957 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 958 | if (MD->isStatic()) |
| 959 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 960 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 961 | << FD->getDeclName()); |
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. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 967 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 968 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 969 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 970 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 971 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 972 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 973 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 974 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 975 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 976 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 977 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 978 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 979 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 980 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 981 | false, false, SS); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 982 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 983 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 984 | false, false, SS); |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 985 | else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 986 | return BuildDeclRefExpr(UD, Context.DependentTy, Loc, |
| 987 | /*TypeDependent=*/true, |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 988 | /*ValueDependent=*/true, SS); |
| 989 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 990 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 991 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 992 | // Check whether this declaration can be used. Note that we suppress |
| 993 | // this check when we're going to perform argument-dependent lookup |
| 994 | // on this function name, because this might not be the function |
| 995 | // that overload resolution actually selects. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 996 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 997 | HasTrailingLParen; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 998 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 999 | return ExprError(); |
| 1000 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1001 | // Only create DeclRefExpr's for valid Decl's. |
| 1002 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1003 | return ExprError(); |
| 1004 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1005 | // If the identifier reference is inside a block, and it refers to a value |
| 1006 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1007 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1008 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1009 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1010 | // We do not do this for things like enum constants, global variables, etc, |
| 1011 | // as they do not get snapshotted. |
| 1012 | // |
| 1013 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1014 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1015 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1016 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1017 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1018 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1019 | // This is to record that a 'const' was actually synthesize and added. |
| 1020 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1021 | // Variable will be bound by-copy, make it const within the closure. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1022 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1023 | ExprTy.addConst(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1024 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1025 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1026 | } |
| 1027 | // If this reference is not in a block or if the referenced variable is |
| 1028 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1029 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1030 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1031 | bool ValueDependent = false; |
| 1032 | if (getLangOptions().CPlusPlus) { |
| 1033 | // C++ [temp.dep.expr]p3: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1034 | // An id-expression is type-dependent if it contains: |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1035 | // - an identifier that was declared with a dependent type, |
| 1036 | if (VD->getType()->isDependentType()) |
| 1037 | TypeDependent = true; |
| 1038 | // - FIXME: a template-id that is dependent, |
| 1039 | // - a conversion-function-id that specifies a dependent type, |
| 1040 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1041 | Name.getCXXNameType()->isDependentType()) |
| 1042 | TypeDependent = true; |
| 1043 | // - a nested-name-specifier that contains a class-name that |
| 1044 | // names a dependent type. |
| 1045 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1046 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1047 | DC; DC = DC->getParent()) { |
| 1048 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1049 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1050 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1051 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1052 | TypeDependent = true; |
| 1053 | break; |
| 1054 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1055 | } |
| 1056 | } |
| 1057 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1058 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1059 | // C++ [temp.dep.constexpr]p2: |
| 1060 | // |
| 1061 | // An identifier is value-dependent if it is: |
| 1062 | // - a name declared with a dependent type, |
| 1063 | if (TypeDependent) |
| 1064 | ValueDependent = true; |
| 1065 | // - the name of a non-type template parameter, |
| 1066 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1067 | ValueDependent = true; |
| 1068 | // - a constant with integral or enumeration type and is |
| 1069 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1070 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
Mike Stump | fbf6870 | 2009-11-03 22:20:01 +0000 | [diff] [blame] | 1071 | if (Context.getCanonicalType(Dcl->getType()).getCVRQualifiers() |
| 1072 | == Qualifiers::Const && |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1073 | Dcl->getInit()) { |
| 1074 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1075 | } |
| 1076 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1077 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1078 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1079 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1080 | TypeDependent, ValueDependent, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1081 | } |
| 1082 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1083 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1084 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1085 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1086 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1087 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1088 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1089 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1090 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1091 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1092 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1093 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1094 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1095 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1096 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1097 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
| 1098 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1099 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1100 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1101 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1102 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1103 | QualType ResTy; |
| 1104 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 1105 | ResTy = Context.DependentTy; |
| 1106 | } else { |
| 1107 | unsigned Length = |
| 1108 | PredefinedExpr::ComputeName(Context, IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1109 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1110 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1111 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1112 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 1113 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1114 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1115 | } |
| 1116 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1117 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1118 | llvm::SmallString<16> CharBuffer; |
| 1119 | CharBuffer.resize(Tok.getLength()); |
| 1120 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1121 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1122 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1123 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1124 | Tok.getLocation(), PP); |
| 1125 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1126 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1127 | |
| 1128 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1129 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1130 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1131 | Literal.isWide(), |
| 1132 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1133 | } |
| 1134 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1135 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1136 | // 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] | 1137 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1138 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1139 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1140 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1141 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1142 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1143 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1144 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1145 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1146 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1147 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1148 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1149 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1150 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1151 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1152 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1153 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1154 | Tok.getLocation(), PP); |
| 1155 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1156 | return ExprError(); |
| 1157 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1158 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1159 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1160 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1161 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1162 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1163 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1164 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1165 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1166 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1167 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1168 | |
| 1169 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1170 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1171 | // isExact will be set by GetFloatValue(). |
| 1172 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1173 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1174 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1175 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1176 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1177 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1178 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1179 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1180 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1181 | // long long is a C99 feature. |
| 1182 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1183 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1184 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1185 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1186 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1187 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1188 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1189 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1190 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1191 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1192 | Ty = Context.UnsignedLongLongTy; |
| 1193 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1194 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1195 | } else { |
| 1196 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1197 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1198 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1199 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1200 | // be an unsigned int. |
| 1201 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1202 | |
| 1203 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1204 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1205 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1206 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1207 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1208 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1209 | // Does it fit in a unsigned int? |
| 1210 | if (ResultVal.isIntN(IntSize)) { |
| 1211 | // Does it fit in a signed int? |
| 1212 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1213 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1214 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1215 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1216 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1217 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1218 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1219 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1220 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1221 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1222 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1223 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1224 | // Does it fit in a unsigned long? |
| 1225 | if (ResultVal.isIntN(LongSize)) { |
| 1226 | // Does it fit in a signed long? |
| 1227 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1228 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1229 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1230 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1231 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1232 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1233 | } |
| 1234 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1235 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1236 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1237 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1238 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1239 | // Does it fit in a unsigned long long? |
| 1240 | if (ResultVal.isIntN(LongLongSize)) { |
| 1241 | // Does it fit in a signed long long? |
| 1242 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1243 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1244 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1245 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1246 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1247 | } |
| 1248 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1249 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1250 | // If we still couldn't decide a type, we probably have something that |
| 1251 | // 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] | 1252 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1253 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1254 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1255 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1256 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1257 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1258 | if (ResultVal.getBitWidth() != Width) |
| 1259 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1260 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1261 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1262 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1263 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1264 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1265 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1266 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1267 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1268 | |
| 1269 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1272 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1273 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1274 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1275 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1276 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1277 | } |
| 1278 | |
| 1279 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1280 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1281 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1282 | SourceLocation OpLoc, |
| 1283 | const SourceRange &ExprRange, |
| 1284 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1285 | if (exprType->isDependentType()) |
| 1286 | return false; |
| 1287 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1288 | // C99 6.5.3.4p1: |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1289 | if (exprType->isFunctionType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1290 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1291 | if (isSizeof) |
| 1292 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1293 | return false; |
| 1294 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1295 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1296 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1297 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1298 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1299 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1300 | return false; |
| 1301 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1302 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1303 | if (RequireCompleteType(OpLoc, exprType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1304 | isSizeof ? diag::err_sizeof_incomplete_type : |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1305 | PDiag(diag::err_alignof_incomplete_type) |
| 1306 | << ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1307 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1308 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1309 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1310 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1311 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1312 | << exprType << isSizeof << ExprRange; |
| 1313 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1314 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1315 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1316 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1319 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1320 | const SourceRange &ExprRange) { |
| 1321 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1322 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1323 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1324 | if (isa<DeclRefExpr>(E)) |
| 1325 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1326 | |
| 1327 | // Cannot know anything else if the expression is dependent. |
| 1328 | if (E->isTypeDependent()) |
| 1329 | return false; |
| 1330 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1331 | if (E->getBitField()) { |
| 1332 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1333 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1334 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1335 | |
| 1336 | // Alignment of a field access is always okay, so long as it isn't a |
| 1337 | // bit-field. |
| 1338 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1339 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1340 | return false; |
| 1341 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1342 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1343 | } |
| 1344 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1345 | /// \brief Build a sizeof or alignof expression given a type operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1346 | Action::OwningExprResult |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1347 | Sema::CreateSizeOfAlignOfExpr(DeclaratorInfo *DInfo, |
| 1348 | SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1349 | bool isSizeOf, SourceRange R) { |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1350 | if (!DInfo) |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1351 | return ExprError(); |
| 1352 | |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1353 | QualType T = DInfo->getType(); |
| 1354 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1355 | if (!T->isDependentType() && |
| 1356 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1357 | return ExprError(); |
| 1358 | |
| 1359 | // 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] | 1360 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, DInfo, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1361 | Context.getSizeType(), OpLoc, |
| 1362 | R.getEnd())); |
| 1363 | } |
| 1364 | |
| 1365 | /// \brief Build a sizeof or alignof expression given an expression |
| 1366 | /// operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1367 | Action::OwningExprResult |
| 1368 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1369 | bool isSizeOf, SourceRange R) { |
| 1370 | // Verify that the operand is valid. |
| 1371 | bool isInvalid = false; |
| 1372 | if (E->isTypeDependent()) { |
| 1373 | // Delay type-checking for type-dependent expressions. |
| 1374 | } else if (!isSizeOf) { |
| 1375 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1376 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1377 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1378 | isInvalid = true; |
| 1379 | } else { |
| 1380 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1381 | } |
| 1382 | |
| 1383 | if (isInvalid) |
| 1384 | return ExprError(); |
| 1385 | |
| 1386 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1387 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1388 | Context.getSizeType(), OpLoc, |
| 1389 | R.getEnd())); |
| 1390 | } |
| 1391 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1392 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1393 | /// the same for @c alignof and @c __alignof |
| 1394 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1395 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1396 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1397 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1398 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1399 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1400 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1401 | if (isType) { |
John McCall | 5ab7517 | 2009-11-04 07:28:41 +0000 | [diff] [blame] | 1402 | DeclaratorInfo *DInfo; |
| 1403 | (void) GetTypeFromParser(TyOrEx, &DInfo); |
| 1404 | return CreateSizeOfAlignOfExpr(DInfo, OpLoc, isSizeof, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1405 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1406 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1407 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1408 | Action::OwningExprResult Result |
| 1409 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1410 | |
| 1411 | if (Result.isInvalid()) |
| 1412 | DeleteExpr(ArgEx); |
| 1413 | |
| 1414 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1415 | } |
| 1416 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1417 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1418 | if (V->isTypeDependent()) |
| 1419 | return Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1420 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1421 | // These operators return the element type of a complex type. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1422 | if (const ComplexType *CT = V->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1423 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1424 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1425 | // Otherwise they pass through real integer and floating point types here. |
| 1426 | if (V->getType()->isArithmeticType()) |
| 1427 | return V->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1428 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1429 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1430 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1431 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1432 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1433 | } |
| 1434 | |
| 1435 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1436 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1437 | Action::OwningExprResult |
| 1438 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1439 | tok::TokenKind Kind, ExprArg Input) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1440 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1441 | Input = MaybeConvertParenListExprToParenExpr(S, move(Input)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1442 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1443 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1444 | UnaryOperator::Opcode Opc; |
| 1445 | switch (Kind) { |
| 1446 | default: assert(0 && "Unknown unary op!"); |
| 1447 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1448 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1449 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1450 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1451 | if (getLangOptions().CPlusPlus && |
| 1452 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1453 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1454 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1455 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1456 | |
| 1457 | // C++ [over.inc]p1: |
| 1458 | // |
| 1459 | // [...] If the function is a member function with one |
| 1460 | // parameter (which shall be of type int) or a non-member |
| 1461 | // function with two parameters (the second of which shall be |
| 1462 | // of type int), it defines the postfix increment operator ++ |
| 1463 | // for objects of that type. When the postfix increment is |
| 1464 | // called as a result of using the ++ operator, the int |
| 1465 | // argument will have value zero. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1466 | Expr *Args[2] = { |
| 1467 | Arg, |
| 1468 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1469 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1470 | }; |
| 1471 | |
| 1472 | // Build the candidate set for overloading |
| 1473 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1474 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1475 | |
| 1476 | // Perform overload resolution. |
| 1477 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1478 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1479 | case OR_Success: { |
| 1480 | // We found a built-in operator or an overloaded operator. |
| 1481 | FunctionDecl *FnDecl = Best->Function; |
| 1482 | |
| 1483 | if (FnDecl) { |
| 1484 | // We matched an overloaded operator. Build a call to that |
| 1485 | // operator. |
| 1486 | |
| 1487 | // Convert the arguments. |
| 1488 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1489 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1490 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1491 | } else { |
| 1492 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1493 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1494 | FnDecl->getParamDecl(0)->getType(), |
| 1495 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1496 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1497 | } |
| 1498 | |
| 1499 | // Determine the result type |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1500 | QualType ResultTy = FnDecl->getResultType().getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1501 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1502 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1503 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1504 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1505 | UsualUnaryConversions(FnExpr); |
| 1506 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1507 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1508 | Args[0] = Arg; |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1509 | |
| 1510 | ExprOwningPtr<CXXOperatorCallExpr> |
| 1511 | TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp, |
| 1512 | FnExpr, Args, 2, |
| 1513 | ResultTy, OpLoc)); |
| 1514 | |
| 1515 | if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(), |
| 1516 | FnDecl)) |
| 1517 | return ExprError(); |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1518 | return Owned(TheCall.release()); |
| 1519 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1520 | } else { |
| 1521 | // We matched a built-in operator. Convert the arguments, then |
| 1522 | // break out so that we will build the appropriate built-in |
| 1523 | // operator node. |
| 1524 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1525 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1526 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1527 | |
| 1528 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1529 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1530 | } |
| 1531 | |
Douglas Gregor | 3307475 | 2009-09-30 21:46:01 +0000 | [diff] [blame] | 1532 | case OR_No_Viable_Function: { |
| 1533 | // No viable function; try checking this as a built-in operator, which |
| 1534 | // will fail and provide a diagnostic. Then, print the overload |
| 1535 | // candidates. |
| 1536 | OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
| 1537 | assert(Result.isInvalid() && |
| 1538 | "C++ postfix-unary operator overloading is missing candidates!"); |
| 1539 | if (Result.isInvalid()) |
| 1540 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false); |
| 1541 | |
| 1542 | return move(Result); |
| 1543 | } |
| 1544 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1545 | case OR_Ambiguous: |
| 1546 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1547 | << UnaryOperator::getOpcodeStr(Opc) |
| 1548 | << Arg->getSourceRange(); |
| 1549 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1550 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1551 | |
| 1552 | case OR_Deleted: |
| 1553 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1554 | << Best->Function->isDeleted() |
| 1555 | << UnaryOperator::getOpcodeStr(Opc) |
| 1556 | << Arg->getSourceRange(); |
| 1557 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1558 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1559 | } |
| 1560 | |
| 1561 | // Either we found no viable overloaded operator or we matched a |
| 1562 | // built-in operator. In either case, fall through to trying to |
| 1563 | // build a built-in operation. |
| 1564 | } |
| 1565 | |
Eli Friedman | 6016cb2 | 2009-07-22 23:24:42 +0000 | [diff] [blame] | 1566 | Input.release(); |
| 1567 | Input = Arg; |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 1568 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1569 | } |
| 1570 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1571 | Action::OwningExprResult |
| 1572 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1573 | ExprArg Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1574 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1575 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1576 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1577 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1578 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1579 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1580 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1581 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1582 | Base.release(); |
| 1583 | Idx.release(); |
| 1584 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1585 | Context.DependentTy, RLoc)); |
| 1586 | } |
| 1587 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1588 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1589 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1590 | LHSExp->getType()->isEnumeralType() || |
| 1591 | RHSExp->getType()->isRecordType() || |
| 1592 | RHSExp->getType()->isEnumeralType())) { |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1593 | return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, move(Base),move(Idx)); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1594 | } |
| 1595 | |
Sebastian Redl | f322ed6 | 2009-10-29 20:17:01 +0000 | [diff] [blame] | 1596 | return CreateBuiltinArraySubscriptExpr(move(Base), LLoc, move(Idx), RLoc); |
| 1597 | } |
| 1598 | |
| 1599 | |
| 1600 | Action::OwningExprResult |
| 1601 | Sema::CreateBuiltinArraySubscriptExpr(ExprArg Base, SourceLocation LLoc, |
| 1602 | ExprArg Idx, SourceLocation RLoc) { |
| 1603 | Expr *LHSExp = static_cast<Expr*>(Base.get()); |
| 1604 | Expr *RHSExp = static_cast<Expr*>(Idx.get()); |
| 1605 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1606 | // Perform default conversions. |
| 1607 | DefaultFunctionArrayConversion(LHSExp); |
| 1608 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1609 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1610 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1611 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1612 | // 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] | 1613 | // 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] | 1614 | // 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] | 1615 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1616 | Expr *BaseExpr, *IndexExpr; |
| 1617 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1618 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1619 | BaseExpr = LHSExp; |
| 1620 | IndexExpr = RHSExp; |
| 1621 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1622 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1623 | BaseExpr = LHSExp; |
| 1624 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1625 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1626 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1627 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1628 | BaseExpr = RHSExp; |
| 1629 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1630 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1631 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1632 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1633 | BaseExpr = LHSExp; |
| 1634 | IndexExpr = RHSExp; |
| 1635 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1636 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1637 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1638 | // Handle the uncommon case of "123[Ptr]". |
| 1639 | BaseExpr = RHSExp; |
| 1640 | IndexExpr = LHSExp; |
| 1641 | ResultType = PTy->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1642 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1643 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1644 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1645 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1646 | // FIXME: need to deal with const... |
| 1647 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1648 | } else if (LHSTy->isArrayType()) { |
| 1649 | // If we see an array that wasn't promoted by |
| 1650 | // DefaultFunctionArrayConversion, it must be an array that |
| 1651 | // wasn't promoted because of the C90 rule that doesn't |
| 1652 | // allow promoting non-lvalue arrays. Warn, then |
| 1653 | // force the promotion here. |
| 1654 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1655 | LHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1656 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 1657 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1658 | LHSTy = LHSExp->getType(); |
| 1659 | |
| 1660 | BaseExpr = LHSExp; |
| 1661 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1662 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1663 | } else if (RHSTy->isArrayType()) { |
| 1664 | // Same as previous, except for 123[f().a] case |
| 1665 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1666 | RHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1667 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 1668 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1669 | RHSTy = RHSExp->getType(); |
| 1670 | |
| 1671 | BaseExpr = RHSExp; |
| 1672 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1673 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1674 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1675 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1676 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1677 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1678 | // C99 6.5.2.1p1 |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1679 | if (!(IndexExpr->getType()->isIntegerType() && |
| 1680 | IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1681 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1682 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1683 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1684 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 1685 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 1686 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 1687 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 1688 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1689 | // 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] | 1690 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1691 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1692 | // incomplete types are not object types. |
| 1693 | if (ResultType->isFunctionType()) { |
| 1694 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1695 | << ResultType << BaseExpr->getSourceRange(); |
| 1696 | return ExprError(); |
| 1697 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1698 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1699 | if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1700 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1701 | PDiag(diag::err_subscript_incomplete_type) |
| 1702 | << BaseExpr->getSourceRange())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1703 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1704 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1705 | // Diagnose bad cases where we step over interface counts. |
| 1706 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1707 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1708 | << ResultType << BaseExpr->getSourceRange(); |
| 1709 | return ExprError(); |
| 1710 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1711 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1712 | Base.release(); |
| 1713 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1714 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1715 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1716 | } |
| 1717 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1718 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1719 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1720 | const IdentifierInfo *CompName, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1721 | SourceLocation CompLoc) { |
Daniel Dunbar | 2ad3289 | 2009-10-18 02:09:38 +0000 | [diff] [blame] | 1722 | // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements, |
| 1723 | // see FIXME there. |
| 1724 | // |
| 1725 | // FIXME: This logic can be greatly simplified by splitting it along |
| 1726 | // halving/not halving and reworking the component checking. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1727 | const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1728 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1729 | // The vector accessor can't exceed the number of elements. |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1730 | const char *compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1731 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1732 | // 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] | 1733 | // special names that indicate a subset of exactly half the elements are |
| 1734 | // to be selected. |
| 1735 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1736 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1737 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1738 | // 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] | 1739 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1740 | |
| 1741 | // Check that we've found one of the special components, or that the component |
| 1742 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1743 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1744 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1745 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1746 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1747 | do |
| 1748 | compStr++; |
| 1749 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1750 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1751 | do |
| 1752 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1753 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1754 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1755 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1756 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1757 | // We didn't get to the end of the string. This means the component names |
| 1758 | // 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] | 1759 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1760 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1761 | return QualType(); |
| 1762 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1763 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1764 | // Ensure no component accessor exceeds the width of the vector type it |
| 1765 | // operates on. |
| 1766 | if (!HalvingSwizzle) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1767 | compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1768 | |
| 1769 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1770 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1771 | |
| 1772 | while (*compStr) { |
| 1773 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1774 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1775 | << baseType << SourceRange(CompLoc); |
| 1776 | return QualType(); |
| 1777 | } |
| 1778 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1779 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1780 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1781 | // If this is a halving swizzle, verify that the base type has an even |
| 1782 | // number of elements. |
| 1783 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1784 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1785 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1786 | return QualType(); |
| 1787 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1788 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1789 | // 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] | 1790 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1791 | // 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] | 1792 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1793 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1794 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1795 | : CompName->getLength(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1796 | if (HexSwizzle) |
| 1797 | CompSize--; |
| 1798 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1799 | if (CompSize == 1) |
| 1800 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1801 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1802 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1803 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1804 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1805 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1806 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1807 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1808 | } |
| 1809 | 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] | 1810 | } |
| 1811 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1812 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1813 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1814 | const Selector &Sel, |
| 1815 | ASTContext &Context) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1816 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1817 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1818 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1819 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1820 | return OMD; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1821 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1822 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1823 | E = PDecl->protocol_end(); I != E; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1824 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1825 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1826 | return D; |
| 1827 | } |
| 1828 | return 0; |
| 1829 | } |
| 1830 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1831 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1832 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1833 | const Selector &Sel, |
| 1834 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1835 | // Check protocols on qualified interfaces. |
| 1836 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1837 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1838 | E = QIdTy->qual_end(); I != E; ++I) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1839 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1840 | GDecl = PD; |
| 1841 | break; |
| 1842 | } |
| 1843 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1844 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1845 | GDecl = OMD; |
| 1846 | break; |
| 1847 | } |
| 1848 | } |
| 1849 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1850 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1851 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1852 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1853 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1854 | if (GDecl) |
| 1855 | return GDecl; |
| 1856 | } |
| 1857 | } |
| 1858 | return GDecl; |
| 1859 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1860 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1861 | Action::OwningExprResult |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1862 | Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1863 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1864 | DeclarationName MemberName, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1865 | bool HasExplicitTemplateArgs, |
| 1866 | SourceLocation LAngleLoc, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 1867 | const TemplateArgumentLoc *ExplicitTemplateArgs, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1868 | unsigned NumExplicitTemplateArgs, |
| 1869 | SourceLocation RAngleLoc, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1870 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS, |
| 1871 | NamedDecl *FirstQualifierInScope) { |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 1872 | if (SS && SS->isInvalid()) |
| 1873 | return ExprError(); |
| 1874 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1875 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1876 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1877 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1878 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 1879 | assert(BaseExpr && "no base expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1880 | |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1881 | // Perform default conversions. |
| 1882 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1883 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1884 | QualType BaseType = BaseExpr->getType(); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1885 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 1886 | // use that. |
| 1887 | if (BaseType->isObjCIdType()) { |
| 1888 | // We have an 'id' type. Rather than fall through, we check if this |
| 1889 | // is a reference to 'isa'. |
| 1890 | if (BaseType != Context.ObjCIdRedefinitionType) { |
| 1891 | BaseType = Context.ObjCIdRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1892 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1893 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1894 | } |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1895 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1896 | |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1897 | // Handle properties on ObjC 'Class' types. |
| 1898 | if (OpKind == tok::period && BaseType->isObjCClassType()) { |
| 1899 | // Also must look for a getter name which uses property syntax. |
| 1900 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 1901 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 1902 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 1903 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 1904 | ObjCMethodDecl *Getter; |
| 1905 | // FIXME: need to also look locally in the implementation. |
| 1906 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 1907 | // Check the use of this method. |
| 1908 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 1909 | return ExprError(); |
| 1910 | } |
| 1911 | // If we found a getter then this may be a valid dot-reference, we |
| 1912 | // will look for the matching setter, in case it is needed. |
| 1913 | Selector SetterSel = |
| 1914 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 1915 | PP.getSelectorTable(), Member); |
| 1916 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 1917 | if (!Setter) { |
| 1918 | // If this reference is in an @implementation, also check for 'private' |
| 1919 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 1920 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1921 | } |
| 1922 | // Look through local category implementations associated with the class. |
| 1923 | if (!Setter) |
| 1924 | Setter = IFace->getCategoryClassMethod(SetterSel); |
| 1925 | |
| 1926 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 1927 | return ExprError(); |
| 1928 | |
| 1929 | if (Getter || Setter) { |
| 1930 | QualType PType; |
| 1931 | |
| 1932 | if (Getter) |
| 1933 | PType = Getter->getResultType(); |
| 1934 | else |
| 1935 | // Get the expression type from Setter's incoming parameter. |
| 1936 | PType = (*(Setter->param_end() -1))->getType(); |
| 1937 | // FIXME: we must check that the setter has property type. |
| 1938 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, |
| 1939 | PType, |
| 1940 | Setter, MemberLoc, BaseExpr)); |
| 1941 | } |
| 1942 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 1943 | << MemberName << BaseType); |
| 1944 | } |
| 1945 | } |
| 1946 | |
| 1947 | if (BaseType->isObjCClassType() && |
| 1948 | BaseType != Context.ObjCClassRedefinitionType) { |
| 1949 | BaseType = Context.ObjCClassRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1950 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1951 | } |
| 1952 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 1953 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 1954 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1955 | if (OpKind == tok::arrow) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1956 | if (BaseType->isDependentType()) { |
| 1957 | NestedNameSpecifier *Qualifier = 0; |
| 1958 | if (SS) { |
| 1959 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 1960 | if (!FirstQualifierInScope) |
| 1961 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 1962 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1963 | |
| 1964 | return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1965 | OpLoc, Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 1966 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 1967 | FirstQualifierInScope, |
| 1968 | MemberName, |
| 1969 | MemberLoc, |
| 1970 | HasExplicitTemplateArgs, |
| 1971 | LAngleLoc, |
| 1972 | ExplicitTemplateArgs, |
| 1973 | NumExplicitTemplateArgs, |
| 1974 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1975 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1976 | else if (const PointerType *PT = BaseType->getAs<PointerType>()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1977 | BaseType = PT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1978 | else if (BaseType->isObjCObjectPointerType()) |
| 1979 | ; |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1980 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1981 | return ExprError(Diag(MemberLoc, |
| 1982 | diag::err_typecheck_member_reference_arrow) |
| 1983 | << BaseType << BaseExpr->getSourceRange()); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1984 | } else if (BaseType->isDependentType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1985 | // Require that the base type isn't a pointer type |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1986 | // (so we'll report an error for) |
| 1987 | // T* t; |
| 1988 | // t.f; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1989 | // |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1990 | // In Obj-C++, however, the above expression is valid, since it could be |
| 1991 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 1992 | // 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] | 1993 | const PointerType *PT = BaseType->getAs<PointerType>(); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 1994 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1995 | if (!PT || (getLangOptions().ObjC1 && |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1996 | !PT->getPointeeType()->isRecordType())) { |
| 1997 | NestedNameSpecifier *Qualifier = 0; |
| 1998 | if (SS) { |
| 1999 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 2000 | if (!FirstQualifierInScope) |
| 2001 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 2002 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2003 | |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2004 | return Owned(CXXUnresolvedMemberExpr::Create(Context, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2005 | BaseExpr, false, |
| 2006 | OpLoc, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2007 | Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2008 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2009 | FirstQualifierInScope, |
| 2010 | MemberName, |
| 2011 | MemberLoc, |
| 2012 | HasExplicitTemplateArgs, |
| 2013 | LAngleLoc, |
| 2014 | ExplicitTemplateArgs, |
| 2015 | NumExplicitTemplateArgs, |
| 2016 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2017 | } |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2018 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2019 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2020 | // Handle field access to simple records. This also handles access to fields |
| 2021 | // of the ObjC 'id' struct. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2022 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2023 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2024 | if (RequireCompleteType(OpLoc, BaseType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2025 | PDiag(diag::err_typecheck_incomplete_tag) |
| 2026 | << BaseExpr->getSourceRange())) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2027 | return ExprError(); |
| 2028 | |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2029 | DeclContext *DC = RDecl; |
| 2030 | if (SS && SS->isSet()) { |
| 2031 | // If the member name was a qualified-id, look into the |
| 2032 | // nested-name-specifier. |
| 2033 | DC = computeDeclContext(*SS, false); |
Douglas Gregor | 8d1c9ae | 2009-10-17 22:37:54 +0000 | [diff] [blame] | 2034 | |
| 2035 | if (!isa<TypeDecl>(DC)) { |
| 2036 | Diag(MemberLoc, diag::err_qualified_member_nonclass) |
| 2037 | << DC << SS->getRange(); |
| 2038 | return ExprError(); |
| 2039 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2040 | |
| 2041 | // FIXME: If DC is not computable, we should build a |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2042 | // CXXUnresolvedMemberExpr. |
| 2043 | assert(DC && "Cannot handle non-computable dependent contexts in lookup"); |
| 2044 | } |
| 2045 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2046 | // The record definition is complete, now make sure the member is valid. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2047 | LookupResult Result; |
| 2048 | LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2049 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2050 | if (Result.empty()) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 2051 | return ExprError(Diag(MemberLoc, diag::err_no_member) |
| 2052 | << MemberName << DC << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2053 | if (Result.isAmbiguous()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2054 | DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc, |
| 2055 | BaseExpr->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2056 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2057 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2058 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2059 | NamedDecl *MemberDecl = Result.getAsSingleDecl(Context); |
| 2060 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2061 | if (SS && SS->isSet()) { |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2062 | TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2063 | QualType BaseTypeCanon |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2064 | = Context.getCanonicalType(BaseType).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2065 | QualType MemberTypeCanon |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2066 | = Context.getCanonicalType(Context.getTypeDeclType(TyD)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2067 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2068 | if (BaseTypeCanon != MemberTypeCanon && |
| 2069 | !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon)) |
| 2070 | return ExprError(Diag(SS->getBeginLoc(), |
| 2071 | diag::err_not_direct_base_or_virtual) |
| 2072 | << MemberTypeCanon << BaseTypeCanon); |
| 2073 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2074 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2075 | // If the decl being referenced had an error, return an error for this |
| 2076 | // sub-expr without emitting another error, in order to avoid cascading |
| 2077 | // error cases. |
| 2078 | if (MemberDecl->isInvalidDecl()) |
| 2079 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2080 | |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2081 | bool ShouldCheckUse = true; |
| 2082 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) { |
| 2083 | // Don't diagnose the use of a virtual member function unless it's |
| 2084 | // explicitly qualified. |
| 2085 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 2086 | ShouldCheckUse = false; |
| 2087 | } |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 2088 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2089 | // Check the use of this field |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2090 | if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2091 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2092 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2093 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2094 | // We may have found a field within an anonymous union or struct |
| 2095 | // (C++ [class.union]). |
| 2096 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2097 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2098 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2099 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2100 | // 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] | 2101 | QualType MemberType = FD->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2102 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2103 | MemberType = Ref->getPointeeType(); |
| 2104 | else { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2105 | Qualifiers BaseQuals = BaseType.getQualifiers(); |
| 2106 | BaseQuals.removeObjCGCAttr(); |
| 2107 | if (FD->isMutable()) BaseQuals.removeConst(); |
| 2108 | |
| 2109 | Qualifiers MemberQuals |
| 2110 | = Context.getCanonicalType(MemberType).getQualifiers(); |
| 2111 | |
| 2112 | Qualifiers Combined = BaseQuals + MemberQuals; |
| 2113 | if (Combined != MemberQuals) |
| 2114 | MemberType = Context.getQualifiedType(MemberType, Combined); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2115 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2116 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2117 | MarkDeclarationReferenced(MemberLoc, FD); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 2118 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2119 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2120 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2121 | FD, MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2122 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2123 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2124 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2125 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2126 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2127 | Var, MemberLoc, |
| 2128 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2129 | } |
| 2130 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2131 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2132 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2133 | MemberFn, MemberLoc, |
| 2134 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2135 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2136 | if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2137 | = dyn_cast<FunctionTemplateDecl>(MemberDecl)) { |
| 2138 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2139 | |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2140 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2141 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2142 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2143 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2144 | FunTmpl, MemberLoc, true, |
| 2145 | LAngleLoc, ExplicitTemplateArgs, |
| 2146 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2147 | Context.OverloadTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2148 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2149 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2150 | FunTmpl, MemberLoc, |
| 2151 | Context.OverloadTy)); |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2152 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2153 | if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2154 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) { |
| 2155 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2156 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2157 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2158 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2159 | Ovl, MemberLoc, true, |
| 2160 | LAngleLoc, ExplicitTemplateArgs, |
| 2161 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2162 | Context.OverloadTy)); |
| 2163 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2164 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2165 | Ovl, MemberLoc, Context.OverloadTy)); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2166 | } |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2167 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2168 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2169 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2170 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2171 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2172 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2173 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2174 | << MemberName << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2175 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2176 | // We found a declaration kind that we didn't expect. This is a |
| 2177 | // generic error message that tells the user that she can't refer |
| 2178 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2179 | return ExprError(Diag(MemberLoc, |
| 2180 | diag::err_typecheck_member_reference_unknown) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2181 | << MemberName << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2182 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2183 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2184 | // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring |
| 2185 | // into a record type was handled above, any destructor we see here is a |
| 2186 | // pseudo-destructor. |
| 2187 | if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) { |
| 2188 | // C++ [expr.pseudo]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2189 | // The left hand side of the dot operator shall be of scalar type. The |
| 2190 | // 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] | 2191 | // type. |
| 2192 | if (!BaseType->isScalarType()) |
| 2193 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 2194 | << BaseType << BaseExpr->getSourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2195 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2196 | // [...] The type designated by the pseudo-destructor-name shall be the |
| 2197 | // same as the object type. |
| 2198 | if (!MemberName.getCXXNameType()->isDependentType() && |
| 2199 | !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType())) |
| 2200 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch) |
| 2201 | << BaseType << MemberName.getCXXNameType() |
| 2202 | << BaseExpr->getSourceRange() << SourceRange(MemberLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2203 | |
| 2204 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2205 | // the form |
| 2206 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2207 | // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name |
| 2208 | // |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2209 | // shall designate the same scalar type. |
| 2210 | // |
| 2211 | // FIXME: DPG can't see any way to trigger this particular clause, so it |
| 2212 | // isn't checked here. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2213 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2214 | // FIXME: We've lost the precise spelling of the type by going through |
| 2215 | // DeclarationName. Can we do better? |
| 2216 | return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2217 | OpKind == tok::arrow, |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2218 | OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2219 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2220 | SS? SS->getRange() : SourceRange(), |
| 2221 | MemberName.getCXXNameType(), |
| 2222 | MemberLoc)); |
| 2223 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2224 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2225 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2226 | // (*Obj).ivar. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2227 | if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || |
| 2228 | (OpKind == tok::period && BaseType->isObjCInterfaceType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2229 | const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2230 | const ObjCInterfaceType *IFaceT = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2231 | OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>(); |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2232 | if (IFaceT) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2233 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2234 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2235 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2236 | ObjCInterfaceDecl *ClassDeclared; |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2237 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2238 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2239 | if (IV) { |
| 2240 | // If the decl being referenced had an error, return an error for this |
| 2241 | // sub-expr without emitting another error, in order to avoid cascading |
| 2242 | // error cases. |
| 2243 | if (IV->isInvalidDecl()) |
| 2244 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2245 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2246 | // Check whether we can reference this field. |
| 2247 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2248 | return ExprError(); |
| 2249 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2250 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2251 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2252 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2253 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2254 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2255 | // Case of a c-function declared inside an objc implementation. |
| 2256 | // FIXME: For a c-style function nested inside an objc implementation |
| 2257 | // class, there is no implementation context available, so we pass |
| 2258 | // down the context as argument to this routine. Ideally, this context |
| 2259 | // need be passed down in the AST node and somehow calculated from the |
| 2260 | // AST for a function decl. |
| 2261 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2262 | if (ObjCImplementationDecl *IMPD = |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2263 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2264 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2265 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2266 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2267 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2268 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2269 | |
| 2270 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2271 | if (ClassDeclared != IDecl || |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2272 | ClassOfMethodDecl != ClassDeclared) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2273 | Diag(MemberLoc, diag::error_private_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2274 | << IV->getDeclName(); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2275 | } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2276 | // @protected |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2277 | Diag(MemberLoc, diag::error_protected_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2278 | << IV->getDeclName(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2279 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2280 | |
| 2281 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2282 | MemberLoc, BaseExpr, |
| 2283 | OpKind == tok::arrow)); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2284 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2285 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2286 | << IDecl->getDeclName() << MemberName |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2287 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2288 | } |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2289 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2290 | // Handle properties on 'id' and qualified "id". |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2291 | if (OpKind == tok::period && (BaseType->isObjCIdType() || |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2292 | BaseType->isObjCQualifiedIdType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2293 | const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2294 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2295 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2296 | // Check protocols on qualified interfaces. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2297 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2298 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2299 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2300 | // Check the use of this declaration |
| 2301 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2302 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2303 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2304 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2305 | MemberLoc, BaseExpr)); |
| 2306 | } |
| 2307 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2308 | // Check the use of this method. |
| 2309 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2310 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2311 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2312 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2313 | OMD->getResultType(), |
| 2314 | OMD, OpLoc, MemberLoc, |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2315 | NULL, 0)); |
| 2316 | } |
| 2317 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2318 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2319 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2320 | << MemberName << BaseType); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2321 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2322 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2323 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2324 | const ObjCObjectPointerType *OPT; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2325 | if (OpKind == tok::period && |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2326 | (OPT = BaseType->getAsObjCInterfacePointerType())) { |
| 2327 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2328 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2329 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2330 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2331 | // Search for a declared property first. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2332 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2333 | // Check whether we can reference this property. |
| 2334 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2335 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2336 | QualType ResTy = PD->getType(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2337 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2338 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2339 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2340 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2341 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2342 | MemberLoc, BaseExpr)); |
| 2343 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2344 | // Check protocols on qualified interfaces. |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2345 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2346 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2347 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2348 | // Check whether we can reference this property. |
| 2349 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2350 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2351 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2352 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2353 | MemberLoc, BaseExpr)); |
| 2354 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2355 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2356 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2357 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2358 | // Check whether we can reference this property. |
| 2359 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2360 | return ExprError(); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2361 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2362 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2363 | MemberLoc, BaseExpr)); |
| 2364 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2365 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2366 | // selector is implemented. |
| 2367 | |
| 2368 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2369 | // shared with the code in ActOnInstanceMessage. |
| 2370 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2371 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2372 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2373 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2374 | // If this reference is in an @implementation, check for 'private' methods. |
| 2375 | if (!Getter) |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2376 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2377 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2378 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2379 | if (!Getter) |
| 2380 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2381 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2382 | // Check if we can reference this property. |
| 2383 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2384 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2385 | } |
| 2386 | // If we found a getter then this may be a valid dot-reference, we |
| 2387 | // will look for the matching setter, in case it is needed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2388 | Selector SetterSel = |
| 2389 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2390 | PP.getSelectorTable(), Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2391 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2392 | if (!Setter) { |
| 2393 | // If this reference is in an @implementation, also check for 'private' |
| 2394 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2395 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2396 | } |
| 2397 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2398 | if (!Setter) |
| 2399 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2400 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2401 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2402 | return ExprError(); |
| 2403 | |
| 2404 | if (Getter || Setter) { |
| 2405 | QualType PType; |
| 2406 | |
| 2407 | if (Getter) |
| 2408 | PType = Getter->getResultType(); |
Fariborz Jahanian | 154440e | 2009-08-18 20:50:23 +0000 | [diff] [blame] | 2409 | else |
| 2410 | // Get the expression type from Setter's incoming parameter. |
| 2411 | PType = (*(Setter->param_end() -1))->getType(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2412 | // FIXME: we must check that the setter has property type. |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 2413 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2414 | Setter, MemberLoc, BaseExpr)); |
| 2415 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2416 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2417 | << MemberName << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2418 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2419 | |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2420 | // Handle the following exceptional case (*Obj).isa. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2421 | if (OpKind == tok::period && |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2422 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2423 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2424 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
| 2425 | Context.getObjCIdType())); |
| 2426 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2427 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2428 | if (BaseType->isExtVectorType()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2429 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2430 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2431 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2432 | return ExprError(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2433 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2434 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2435 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2436 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2437 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2438 | << BaseType << BaseExpr->getSourceRange(); |
| 2439 | |
| 2440 | // If the user is trying to apply -> or . to a function or function |
| 2441 | // pointer, it's probably because they forgot parentheses to call |
| 2442 | // the function. Suggest the addition of those parentheses. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2443 | if (BaseType == Context.OverloadTy || |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2444 | BaseType->isFunctionType() || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2445 | (BaseType->isPointerType() && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2446 | BaseType->getAs<PointerType>()->isFunctionType())) { |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2447 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2448 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2449 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2450 | } |
| 2451 | |
| 2452 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2453 | } |
| 2454 | |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2455 | Sema::OwningExprResult Sema::ActOnMemberAccessExpr(Scope *S, ExprArg Base, |
| 2456 | SourceLocation OpLoc, |
| 2457 | tok::TokenKind OpKind, |
| 2458 | const CXXScopeSpec &SS, |
| 2459 | UnqualifiedId &Member, |
| 2460 | DeclPtrTy ObjCImpDecl, |
| 2461 | bool HasTrailingLParen) { |
| 2462 | if (Member.getKind() == UnqualifiedId::IK_TemplateId) { |
| 2463 | TemplateName Template |
| 2464 | = TemplateName::getFromVoidPointer(Member.TemplateId->Template); |
| 2465 | |
| 2466 | // FIXME: We're going to end up looking up the template based on its name, |
| 2467 | // twice! |
| 2468 | DeclarationName Name; |
| 2469 | if (TemplateDecl *ActualTemplate = Template.getAsTemplateDecl()) |
| 2470 | Name = ActualTemplate->getDeclName(); |
| 2471 | else if (OverloadedFunctionDecl *Ovl = Template.getAsOverloadedFunctionDecl()) |
| 2472 | Name = Ovl->getDeclName(); |
Douglas Gregor | ca1bdd7 | 2009-11-04 00:56:37 +0000 | [diff] [blame] | 2473 | else { |
| 2474 | DependentTemplateName *DTN = Template.getAsDependentTemplateName(); |
| 2475 | if (DTN->isIdentifier()) |
| 2476 | Name = DTN->getIdentifier(); |
| 2477 | else |
| 2478 | Name = Context.DeclarationNames.getCXXOperatorName(DTN->getOperator()); |
| 2479 | } |
Douglas Gregor | 2d1c214 | 2009-11-03 19:44:04 +0000 | [diff] [blame] | 2480 | |
| 2481 | // Translate the parser's template argument list in our AST format. |
| 2482 | ASTTemplateArgsPtr TemplateArgsPtr(*this, |
| 2483 | Member.TemplateId->getTemplateArgs(), |
| 2484 | Member.TemplateId->getTemplateArgIsType(), |
| 2485 | Member.TemplateId->NumArgs); |
| 2486 | |
| 2487 | llvm::SmallVector<TemplateArgumentLoc, 16> TemplateArgs; |
| 2488 | translateTemplateArguments(TemplateArgsPtr, |
| 2489 | Member.TemplateId->getTemplateArgLocations(), |
| 2490 | TemplateArgs); |
| 2491 | TemplateArgsPtr.release(); |
| 2492 | |
| 2493 | // Do we have the save the actual template name? We might need it... |
| 2494 | return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, |
| 2495 | Member.TemplateId->TemplateNameLoc, |
| 2496 | Name, true, Member.TemplateId->LAngleLoc, |
| 2497 | TemplateArgs.data(), TemplateArgs.size(), |
| 2498 | Member.TemplateId->RAngleLoc, DeclPtrTy(), |
| 2499 | &SS); |
| 2500 | } |
| 2501 | |
| 2502 | // FIXME: We lose a lot of source information by mapping directly to the |
| 2503 | // DeclarationName. |
| 2504 | OwningExprResult Result |
| 2505 | = BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, |
| 2506 | Member.getSourceRange().getBegin(), |
| 2507 | GetNameFromUnqualifiedId(Member), |
| 2508 | ObjCImpDecl, &SS); |
| 2509 | |
| 2510 | if (Result.isInvalid() || HasTrailingLParen || |
| 2511 | Member.getKind() != UnqualifiedId::IK_DestructorName) |
| 2512 | return move(Result); |
| 2513 | |
| 2514 | // The only way a reference to a destructor can be used is to |
| 2515 | // immediately call them. Since the next token is not a '(', produce a |
| 2516 | // diagnostic and build the call now. |
| 2517 | Expr *E = (Expr *)Result.get(); |
| 2518 | SourceLocation ExpectedLParenLoc |
| 2519 | = PP.getLocForEndOfToken(Member.getSourceRange().getEnd()); |
| 2520 | Diag(E->getLocStart(), diag::err_dtor_expr_without_call) |
| 2521 | << isa<CXXPseudoDestructorExpr>(E) |
| 2522 | << CodeModificationHint::CreateInsertion(ExpectedLParenLoc, "()"); |
| 2523 | |
| 2524 | return ActOnCallExpr(0, move(Result), ExpectedLParenLoc, |
| 2525 | MultiExprArg(*this, 0, 0), 0, ExpectedLParenLoc); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2526 | } |
| 2527 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2528 | Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 2529 | FunctionDecl *FD, |
| 2530 | ParmVarDecl *Param) { |
| 2531 | if (Param->hasUnparsedDefaultArg()) { |
| 2532 | Diag (CallLoc, |
| 2533 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2534 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2535 | Diag(UnparsedDefaultArgLocs[Param], |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2536 | diag::note_default_argument_declared_here); |
| 2537 | } else { |
| 2538 | if (Param->hasUninstantiatedDefaultArg()) { |
| 2539 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
| 2540 | |
| 2541 | // Instantiate the expression. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2542 | MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2543 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2544 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 2545 | ArgList.getInnermost().getFlatArgumentList(), |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2546 | ArgList.getInnermost().flat_size()); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2547 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2548 | OwningExprResult Result = SubstExpr(UninstExpr, ArgList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2549 | if (Result.isInvalid()) |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2550 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2551 | |
| 2552 | if (SetParamDefaultArgument(Param, move(Result), |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2553 | /*FIXME:EqualLoc*/ |
| 2554 | UninstExpr->getSourceRange().getBegin())) |
| 2555 | return ExprError(); |
| 2556 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2557 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2558 | Expr *DefaultExpr = Param->getDefaultArg(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2559 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2560 | // If the default expression creates temporaries, we need to |
| 2561 | // push them to the current stack of expression temporaries so they'll |
| 2562 | // be properly destroyed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2563 | if (CXXExprWithTemporaries *E |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2564 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2565 | assert(!E->shouldDestroyTemporaries() && |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2566 | "Can't destroy temporaries in a default argument expr!"); |
| 2567 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2568 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2569 | } |
| 2570 | } |
| 2571 | |
| 2572 | // We already type-checked the argument, so we know it works. |
| 2573 | return Owned(CXXDefaultArgExpr::Create(Context, Param)); |
| 2574 | } |
| 2575 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2576 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2577 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2578 | /// function prototype Proto. Call is the call expression itself, and |
| 2579 | /// Fn is the function expression. For a C++ member function, this |
| 2580 | /// routine does not attempt to convert the object argument. Returns |
| 2581 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2582 | bool |
| 2583 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2584 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2585 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2586 | Expr **Args, unsigned NumArgs, |
| 2587 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2588 | // 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] | 2589 | // assignment, to the types of the corresponding parameter, ... |
| 2590 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2591 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2592 | bool Invalid = false; |
| 2593 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2594 | // If too few arguments are available (and we don't have default |
| 2595 | // arguments for the remaining parameters), don't make the call. |
| 2596 | if (NumArgs < NumArgsInProto) { |
| 2597 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2598 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2599 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2600 | // Use default arguments for missing arguments |
| 2601 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2602 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2603 | } |
| 2604 | |
| 2605 | // If too many are passed and not variadic, error on the extras and drop |
| 2606 | // them. |
| 2607 | if (NumArgs > NumArgsInProto) { |
| 2608 | if (!Proto->isVariadic()) { |
| 2609 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2610 | diag::err_typecheck_call_too_many_args) |
| 2611 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2612 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2613 | Args[NumArgs-1]->getLocEnd()); |
| 2614 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2615 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2616 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2617 | } |
| 2618 | NumArgsToCheck = NumArgsInProto; |
| 2619 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2620 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2621 | // Continue to check argument types (even if we have too few/many args). |
| 2622 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2623 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2624 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2625 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2626 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2627 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2628 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2629 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2630 | ProtoArgType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2631 | PDiag(diag::err_call_incomplete_argument) |
| 2632 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2633 | return true; |
| 2634 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2635 | // Pass the argument. |
| 2636 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2637 | return true; |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2638 | } else { |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 2639 | ParmVarDecl *Param = FDecl->getParamDecl(i); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2640 | |
| 2641 | OwningExprResult ArgExpr = |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2642 | BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(), |
| 2643 | FDecl, Param); |
| 2644 | if (ArgExpr.isInvalid()) |
| 2645 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2646 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2647 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2648 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2649 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2650 | Call->setArg(i, Arg); |
| 2651 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2652 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2653 | // If this is a variadic call, handle args passed through "...". |
| 2654 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2655 | VariadicCallType CallType = VariadicFunction; |
| 2656 | if (Fn->getType()->isBlockPointerType()) |
| 2657 | CallType = VariadicBlock; // Block |
| 2658 | else if (isa<MemberExpr>(Fn)) |
| 2659 | CallType = VariadicMethod; |
| 2660 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2661 | // Promote the arguments (C99 6.5.2.2p7). |
| 2662 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2663 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2664 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2665 | Call->setArg(i, Arg); |
| 2666 | } |
| 2667 | } |
| 2668 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2669 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2670 | } |
| 2671 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2672 | /// \brief "Deconstruct" the function argument of a call expression to find |
| 2673 | /// the underlying declaration (if any), the name of the called function, |
| 2674 | /// whether argument-dependent lookup is available, whether it has explicit |
| 2675 | /// template arguments, etc. |
| 2676 | void Sema::DeconstructCallFunction(Expr *FnExpr, |
| 2677 | NamedDecl *&Function, |
| 2678 | DeclarationName &Name, |
| 2679 | NestedNameSpecifier *&Qualifier, |
| 2680 | SourceRange &QualifierRange, |
| 2681 | bool &ArgumentDependentLookup, |
| 2682 | bool &HasExplicitTemplateArguments, |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2683 | const TemplateArgumentLoc *&ExplicitTemplateArgs, |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2684 | unsigned &NumExplicitTemplateArgs) { |
| 2685 | // Set defaults for all of the output parameters. |
| 2686 | Function = 0; |
| 2687 | Name = DeclarationName(); |
| 2688 | Qualifier = 0; |
| 2689 | QualifierRange = SourceRange(); |
| 2690 | ArgumentDependentLookup = getLangOptions().CPlusPlus; |
| 2691 | HasExplicitTemplateArguments = false; |
| 2692 | |
| 2693 | // If we're directly calling a function, get the appropriate declaration. |
| 2694 | // Also, in C++, keep track of whether we should perform argument-dependent |
| 2695 | // lookup and whether there were any explicitly-specified template arguments. |
| 2696 | while (true) { |
| 2697 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2698 | FnExpr = IcExpr->getSubExpr(); |
| 2699 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
| 2700 | // Parentheses around a function disable ADL |
| 2701 | // (C++0x [basic.lookup.argdep]p1). |
| 2702 | ArgumentDependentLookup = false; |
| 2703 | FnExpr = PExpr->getSubExpr(); |
| 2704 | } else if (isa<UnaryOperator>(FnExpr) && |
| 2705 | cast<UnaryOperator>(FnExpr)->getOpcode() |
| 2706 | == UnaryOperator::AddrOf) { |
| 2707 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2708 | } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { |
| 2709 | Function = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 2710 | if ((Qualifier = DRExpr->getQualifier())) { |
| 2711 | ArgumentDependentLookup = false; |
| 2712 | QualifierRange = DRExpr->getQualifierRange(); |
| 2713 | } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2714 | break; |
| 2715 | } else if (UnresolvedFunctionNameExpr *DepName |
| 2716 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2717 | Name = DepName->getName(); |
| 2718 | break; |
| 2719 | } else if (TemplateIdRefExpr *TemplateIdRef |
| 2720 | = dyn_cast<TemplateIdRefExpr>(FnExpr)) { |
| 2721 | Function = TemplateIdRef->getTemplateName().getAsTemplateDecl(); |
| 2722 | if (!Function) |
| 2723 | Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); |
| 2724 | HasExplicitTemplateArguments = true; |
| 2725 | ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs(); |
| 2726 | NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs(); |
| 2727 | |
| 2728 | // C++ [temp.arg.explicit]p6: |
| 2729 | // [Note: For simple function names, argument dependent lookup (3.4.2) |
| 2730 | // applies even when the function name is not visible within the |
| 2731 | // scope of the call. This is because the call still has the syntactic |
| 2732 | // form of a function call (3.4.1). But when a function template with |
| 2733 | // explicit template arguments is used, the call does not have the |
| 2734 | // correct syntactic form unless there is a function template with |
| 2735 | // that name visible at the point of the call. If no such name is |
| 2736 | // visible, the call is not syntactically well-formed and |
| 2737 | // argument-dependent lookup does not apply. If some such name is |
| 2738 | // visible, argument dependent lookup applies and additional function |
| 2739 | // templates may be found in other namespaces. |
| 2740 | // |
| 2741 | // The summary of this paragraph is that, if we get to this point and the |
| 2742 | // template-id was not a qualified name, then argument-dependent lookup |
| 2743 | // is still possible. |
| 2744 | if ((Qualifier = TemplateIdRef->getQualifier())) { |
| 2745 | ArgumentDependentLookup = false; |
| 2746 | QualifierRange = TemplateIdRef->getQualifierRange(); |
| 2747 | } |
| 2748 | break; |
| 2749 | } else { |
| 2750 | // Any kind of name that does not refer to a declaration (or |
| 2751 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2752 | ArgumentDependentLookup = false; |
| 2753 | break; |
| 2754 | } |
| 2755 | } |
| 2756 | } |
| 2757 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2758 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2759 | /// This provides the location of the left/right parens and a list of comma |
| 2760 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2761 | Action::OwningExprResult |
| 2762 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2763 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2764 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2765 | unsigned NumArgs = args.size(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2766 | |
| 2767 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 2768 | fn = MaybeConvertParenListExprToParenExpr(S, move(fn)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2769 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2770 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2771 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2772 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2773 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2774 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2775 | DeclarationName UnqualifiedName; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2776 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2777 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2778 | // If this is a pseudo-destructor expression, build the call immediately. |
| 2779 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 2780 | if (NumArgs > 0) { |
| 2781 | // Pseudo-destructor calls should not have any arguments. |
| 2782 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
| 2783 | << CodeModificationHint::CreateRemoval( |
| 2784 | SourceRange(Args[0]->getLocStart(), |
| 2785 | Args[NumArgs-1]->getLocEnd())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2786 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2787 | for (unsigned I = 0; I != NumArgs; ++I) |
| 2788 | Args[I]->Destroy(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2789 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2790 | NumArgs = 0; |
| 2791 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2792 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2793 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
| 2794 | RParenLoc)); |
| 2795 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2796 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2797 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2798 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2799 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2800 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2801 | bool Dependent = false; |
| 2802 | if (Fn->isTypeDependent()) |
| 2803 | Dependent = true; |
| 2804 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2805 | Dependent = true; |
| 2806 | |
| 2807 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2808 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2809 | Context.DependentTy, RParenLoc)); |
| 2810 | |
| 2811 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2812 | if (Fn->getType()->isRecordType()) |
| 2813 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2814 | CommaLocs, RParenLoc)); |
| 2815 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2816 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2817 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2818 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2819 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2820 | isa<CXXMethodDecl>(MemDecl) || |
| 2821 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2822 | isa<CXXMethodDecl>( |
| 2823 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2824 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2825 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2826 | } |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2827 | |
| 2828 | // Determine whether this is a call to a pointer-to-member function. |
| 2829 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) { |
| 2830 | if (BO->getOpcode() == BinaryOperator::PtrMemD || |
| 2831 | BO->getOpcode() == BinaryOperator::PtrMemI) { |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2832 | if (const FunctionProtoType *FPT = |
| 2833 | dyn_cast<FunctionProtoType>(BO->getType())) { |
| 2834 | QualType ResultTy = FPT->getResultType().getNonReferenceType(); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2835 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2836 | ExprOwningPtr<CXXMemberCallExpr> |
| 2837 | TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args, |
| 2838 | NumArgs, ResultTy, |
| 2839 | RParenLoc)); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2840 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2841 | if (CheckCallReturnType(FPT->getResultType(), |
| 2842 | BO->getRHS()->getSourceRange().getBegin(), |
| 2843 | TheCall.get(), 0)) |
| 2844 | return ExprError(); |
Anders Carlsson | 8d6d90d | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 2845 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2846 | if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs, |
| 2847 | RParenLoc)) |
| 2848 | return ExprError(); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2849 | |
Fariborz Jahanian | 5de2450 | 2009-10-28 16:49:46 +0000 | [diff] [blame] | 2850 | return Owned(MaybeBindToTemporary(TheCall.release()).release()); |
| 2851 | } |
| 2852 | return ExprError(Diag(Fn->getLocStart(), |
| 2853 | diag::err_typecheck_call_not_function) |
| 2854 | << Fn->getType() << Fn->getSourceRange()); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2855 | } |
| 2856 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2857 | } |
| 2858 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2859 | // If we're directly calling a function, get the appropriate declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2860 | // Also, in C++, keep track of whether we should perform argument-dependent |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2861 | // lookup and whether there were any explicitly-specified template arguments. |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2862 | bool ADL = true; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2863 | bool HasExplicitTemplateArgs = 0; |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2864 | const TemplateArgumentLoc *ExplicitTemplateArgs = 0; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2865 | unsigned NumExplicitTemplateArgs = 0; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2866 | NestedNameSpecifier *Qualifier = 0; |
| 2867 | SourceRange QualifierRange; |
| 2868 | DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange, |
| 2869 | ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs, |
| 2870 | NumExplicitTemplateArgs); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2871 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2872 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2873 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2874 | if (NDecl) { |
| 2875 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2876 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl))) |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2877 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2878 | else |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2879 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2880 | Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2881 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2882 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2883 | if (Ovl || FunctionTemplate || |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2884 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2885 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 2886 | if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2887 | ADL = false; |
| 2888 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2889 | // We don't perform ADL in C. |
| 2890 | if (!getLangOptions().CPlusPlus) |
| 2891 | ADL = false; |
| 2892 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2893 | if (Ovl || FunctionTemplate || ADL) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2894 | FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2895 | HasExplicitTemplateArgs, |
| 2896 | ExplicitTemplateArgs, |
| 2897 | NumExplicitTemplateArgs, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2898 | LParenLoc, Args, NumArgs, CommaLocs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2899 | RParenLoc, ADL); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2900 | if (!FDecl) |
| 2901 | return ExprError(); |
| 2902 | |
Douglas Gregor | 097bfb1 | 2009-10-23 22:18:25 +0000 | [diff] [blame] | 2903 | Fn = FixOverloadedFunctionReference(Fn, FDecl); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2904 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2905 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2906 | |
| 2907 | // Promote the function operand. |
| 2908 | UsualUnaryConversions(Fn); |
| 2909 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2910 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2911 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2912 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2913 | Args, NumArgs, |
| 2914 | Context.BoolTy, |
| 2915 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2916 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2917 | const FunctionType *FuncT; |
| 2918 | if (!Fn->getType()->isBlockPointerType()) { |
| 2919 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2920 | // have type pointer to function". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2921 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2922 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2923 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2924 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2925 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2926 | } else { // This is a block call. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2927 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2928 | getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2929 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2930 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2931 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2932 | << Fn->getType() << Fn->getSourceRange()); |
| 2933 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2934 | // Check for a valid return type |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 2935 | if (CheckCallReturnType(FuncT->getResultType(), |
| 2936 | Fn->getSourceRange().getBegin(), TheCall.get(), |
| 2937 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2938 | return ExprError(); |
| 2939 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2940 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2941 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2942 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2943 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2944 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2945 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2946 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2947 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2948 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2949 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2950 | if (FDecl) { |
| 2951 | // Check if we have too few/too many template arguments, based |
| 2952 | // on our knowledge of the function definition. |
| 2953 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2954 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2955 | const FunctionProtoType *Proto = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2956 | Def->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2957 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2958 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2959 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2960 | } |
| 2961 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2962 | } |
| 2963 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2964 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2965 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2966 | Expr *Arg = Args[i]; |
| 2967 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2968 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2969 | Arg->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2970 | PDiag(diag::err_call_incomplete_argument) |
| 2971 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2972 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2973 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2974 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2975 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2976 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2977 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 2978 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2979 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 2980 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2981 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2982 | // Check for sentinels |
| 2983 | if (NDecl) |
| 2984 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2985 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2986 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 2987 | if (FDecl) { |
| 2988 | if (CheckFunctionCall(FDecl, TheCall.get())) |
| 2989 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2990 | |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 2991 | if (unsigned BuiltinID = FDecl->getBuiltinID()) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 2992 | return CheckBuiltinFunctionCall(BuiltinID, TheCall.take()); |
| 2993 | } else if (NDecl) { |
| 2994 | if (CheckBlockCall(NDecl, TheCall.get())) |
| 2995 | return ExprError(); |
| 2996 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 2997 | |
Anders Carlsson | ec74c59 | 2009-08-16 03:06:32 +0000 | [diff] [blame] | 2998 | return MaybeBindToTemporary(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2999 | } |
| 3000 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3001 | Action::OwningExprResult |
| 3002 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 3003 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3004 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3005 | //FIXME: Preserve type source info. |
| 3006 | QualType literalType = GetTypeFromParser(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 3007 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3008 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3009 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 3010 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3011 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 3012 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3013 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 3014 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 3015 | } else if (!literalType->isDependentType() && |
| 3016 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3017 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3018 | << SourceRange(LParenLoc, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3019 | literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3020 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3021 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3022 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 3023 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3024 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3025 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 3026 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3027 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3028 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3029 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3030 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3031 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3032 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3033 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3034 | } |
| 3035 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3036 | Action::OwningExprResult |
| 3037 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3038 | SourceLocation RBraceLoc) { |
| 3039 | unsigned NumInit = initlist.size(); |
| 3040 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3041 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3042 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3043 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3044 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3045 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 3046 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3047 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3048 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3049 | } |
| 3050 | |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3051 | static CastExpr::CastKind getScalarCastKind(ASTContext &Context, |
| 3052 | QualType SrcTy, QualType DestTy) { |
| 3053 | if (Context.getCanonicalType(SrcTy).getUnqualifiedType() == |
| 3054 | Context.getCanonicalType(DestTy).getUnqualifiedType()) |
| 3055 | return CastExpr::CK_NoOp; |
| 3056 | |
| 3057 | if (SrcTy->hasPointerRepresentation()) { |
| 3058 | if (DestTy->hasPointerRepresentation()) |
| 3059 | return CastExpr::CK_BitCast; |
| 3060 | if (DestTy->isIntegerType()) |
| 3061 | return CastExpr::CK_PointerToIntegral; |
| 3062 | } |
| 3063 | |
| 3064 | if (SrcTy->isIntegerType()) { |
| 3065 | if (DestTy->isIntegerType()) |
| 3066 | return CastExpr::CK_IntegralCast; |
| 3067 | if (DestTy->hasPointerRepresentation()) |
| 3068 | return CastExpr::CK_IntegralToPointer; |
| 3069 | if (DestTy->isRealFloatingType()) |
| 3070 | return CastExpr::CK_IntegralToFloating; |
| 3071 | } |
| 3072 | |
| 3073 | if (SrcTy->isRealFloatingType()) { |
| 3074 | if (DestTy->isRealFloatingType()) |
| 3075 | return CastExpr::CK_FloatingCast; |
| 3076 | if (DestTy->isIntegerType()) |
| 3077 | return CastExpr::CK_FloatingToIntegral; |
| 3078 | } |
| 3079 | |
| 3080 | // FIXME: Assert here. |
| 3081 | // assert(false && "Unhandled cast combination!"); |
| 3082 | return CastExpr::CK_Unknown; |
| 3083 | } |
| 3084 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3085 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3086 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3087 | CastExpr::CastKind& Kind, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3088 | CXXMethodDecl *& ConversionDecl, |
| 3089 | bool FunctionalStyle) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3090 | if (getLangOptions().CPlusPlus) |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3091 | return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle, |
| 3092 | ConversionDecl); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3093 | |
Eli Friedman | 199ea95 | 2009-08-15 19:02:19 +0000 | [diff] [blame] | 3094 | DefaultFunctionArrayConversion(castExpr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3095 | |
| 3096 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 3097 | // type needs to be scalar. |
| 3098 | if (castType->isVoidType()) { |
| 3099 | // Cast to void allows any expr type. |
Anders Carlsson | ebeaf20 | 2009-10-16 02:35:04 +0000 | [diff] [blame] | 3100 | Kind = CastExpr::CK_ToVoid; |
| 3101 | return false; |
| 3102 | } |
| 3103 | |
| 3104 | if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3105 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 3106 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 3107 | (castType->isStructureType() || castType->isUnionType())) { |
| 3108 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3109 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3110 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 3111 | << castType << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3112 | Kind = CastExpr::CK_NoOp; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3113 | return false; |
| 3114 | } |
| 3115 | |
| 3116 | if (castType->isUnionType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3117 | // GCC cast to union extension |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3118 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3119 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3120 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3121 | Field != FieldEnd; ++Field) { |
| 3122 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 3123 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 3124 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 3125 | << castExpr->getSourceRange(); |
| 3126 | break; |
| 3127 | } |
| 3128 | } |
| 3129 | if (Field == FieldEnd) |
| 3130 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 3131 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3132 | Kind = CastExpr::CK_ToUnion; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3133 | return false; |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3134 | } |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3135 | |
| 3136 | // Reject any other conversions to non-scalar types. |
| 3137 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
| 3138 | << castType << castExpr->getSourceRange(); |
| 3139 | } |
| 3140 | |
| 3141 | if (!castExpr->getType()->isScalarType() && |
| 3142 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3143 | return Diag(castExpr->getLocStart(), |
| 3144 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3145 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3146 | } |
| 3147 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3148 | if (castType->isExtVectorType()) |
| 3149 | return CheckExtVectorCast(TyR, castType, castExpr, Kind); |
| 3150 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3151 | if (castType->isVectorType()) |
| 3152 | return CheckVectorCast(TyR, castType, castExpr->getType(), Kind); |
| 3153 | if (castExpr->getType()->isVectorType()) |
| 3154 | return CheckVectorCast(TyR, castExpr->getType(), castType, Kind); |
| 3155 | |
| 3156 | if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3157 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3158 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3159 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3160 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
| 3161 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3162 | if (!castType->isArithmeticType()) { |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3163 | QualType castExprType = castExpr->getType(); |
| 3164 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3165 | return Diag(castExpr->getLocStart(), |
| 3166 | diag::err_cast_pointer_from_non_pointer_int) |
| 3167 | << castExprType << castExpr->getSourceRange(); |
| 3168 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3169 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3170 | return Diag(castExpr->getLocStart(), |
| 3171 | diag::err_cast_pointer_to_non_pointer_int) |
| 3172 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3173 | } |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3174 | |
| 3175 | Kind = getScalarCastKind(Context, castExpr->getType(), castType); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3176 | return false; |
| 3177 | } |
| 3178 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3179 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
| 3180 | CastExpr::CastKind &Kind) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3181 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3182 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3183 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3184 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3185 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3186 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3187 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3188 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3189 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3190 | } else |
| 3191 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3192 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3193 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3194 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3195 | Kind = CastExpr::CK_BitCast; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3196 | return false; |
| 3197 | } |
| 3198 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3199 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr, |
| 3200 | CastExpr::CastKind &Kind) { |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3201 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3202 | |
| 3203 | QualType SrcTy = CastExpr->getType(); |
| 3204 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3205 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3206 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3207 | if (SrcTy->isVectorType()) { |
| 3208 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3209 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3210 | << DestTy << SrcTy << R; |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3211 | Kind = CastExpr::CK_BitCast; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3212 | return false; |
| 3213 | } |
| 3214 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3215 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3216 | // conversion will take place first from scalar to elt type, and then |
| 3217 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3218 | if (SrcTy->isPointerType()) |
| 3219 | return Diag(R.getBegin(), |
| 3220 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3221 | << DestTy << SrcTy << R; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3222 | |
| 3223 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
| 3224 | ImpCastExprToType(CastExpr, DestElemTy, |
| 3225 | getScalarCastKind(Context, SrcTy, DestElemTy)); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3226 | |
| 3227 | Kind = CastExpr::CK_VectorSplat; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3228 | return false; |
| 3229 | } |
| 3230 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3231 | Action::OwningExprResult |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3232 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3233 | SourceLocation RParenLoc, ExprArg Op) { |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3234 | CastExpr::CastKind Kind = CastExpr::CK_Unknown; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3235 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3236 | assert((Ty != 0) && (Op.get() != 0) && |
| 3237 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3238 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3239 | Expr *castExpr = (Expr *)Op.get(); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3240 | //FIXME: Preserve type source info. |
| 3241 | QualType castType = GetTypeFromParser(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3242 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3243 | // If the Expr being casted is a ParenListExpr, handle it specially. |
| 3244 | if (isa<ParenListExpr>(castExpr)) |
| 3245 | return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3246 | CXXMethodDecl *Method = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3247 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3248 | Kind, Method)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3249 | return ExprError(); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3250 | |
| 3251 | if (Method) { |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3252 | OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3253 | Method, move(Op)); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3254 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3255 | if (CastArg.isInvalid()) |
| 3256 | return ExprError(); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3257 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3258 | castExpr = CastArg.takeAs<Expr>(); |
| 3259 | } else { |
| 3260 | Op.release(); |
Fariborz Jahanian | 3197659 | 2009-08-29 19:15:16 +0000 | [diff] [blame] | 3261 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3262 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3263 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3264 | Kind, castExpr, castType, |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3265 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3266 | } |
| 3267 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3268 | /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence |
| 3269 | /// of comma binary operators. |
| 3270 | Action::OwningExprResult |
| 3271 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) { |
| 3272 | Expr *expr = EA.takeAs<Expr>(); |
| 3273 | ParenListExpr *E = dyn_cast<ParenListExpr>(expr); |
| 3274 | if (!E) |
| 3275 | return Owned(expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3276 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3277 | OwningExprResult Result(*this, E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3278 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3279 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
| 3280 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result), |
| 3281 | Owned(E->getExpr(i))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3282 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3283 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result)); |
| 3284 | } |
| 3285 | |
| 3286 | Action::OwningExprResult |
| 3287 | Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 3288 | SourceLocation RParenLoc, ExprArg Op, |
| 3289 | QualType Ty) { |
| 3290 | ParenListExpr *PE = (ParenListExpr *)Op.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3291 | |
| 3292 | // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')' |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3293 | // then handle it as such. |
| 3294 | if (getLangOptions().AltiVec && Ty->isVectorType()) { |
| 3295 | if (PE->getNumExprs() == 0) { |
| 3296 | Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 3297 | return ExprError(); |
| 3298 | } |
| 3299 | |
| 3300 | llvm::SmallVector<Expr *, 8> initExprs; |
| 3301 | for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i) |
| 3302 | initExprs.push_back(PE->getExpr(i)); |
| 3303 | |
| 3304 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 3305 | // braces instead of the original commas. |
| 3306 | Op.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3307 | InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0], |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3308 | initExprs.size(), RParenLoc); |
| 3309 | E->setType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3310 | return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc, |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3311 | Owned(E)); |
| 3312 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3313 | // 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] | 3314 | // sequence of BinOp comma operators. |
| 3315 | Op = MaybeConvertParenListExprToParenExpr(S, move(Op)); |
| 3316 | return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op)); |
| 3317 | } |
| 3318 | } |
| 3319 | |
| 3320 | Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 3321 | SourceLocation R, |
| 3322 | MultiExprArg Val) { |
| 3323 | unsigned nexprs = Val.size(); |
| 3324 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
| 3325 | assert((exprs != 0) && "ActOnParenListExpr() missing expr list"); |
| 3326 | Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
| 3327 | return Owned(expr); |
| 3328 | } |
| 3329 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3330 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3331 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3332 | /// C99 6.5.15 |
| 3333 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3334 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3335 | // C++ is sufficiently different to merit its own checker. |
| 3336 | if (getLangOptions().CPlusPlus) |
| 3337 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3338 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 3339 | CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional); |
| 3340 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3341 | UsualUnaryConversions(Cond); |
| 3342 | UsualUnaryConversions(LHS); |
| 3343 | UsualUnaryConversions(RHS); |
| 3344 | QualType CondTy = Cond->getType(); |
| 3345 | QualType LHSTy = LHS->getType(); |
| 3346 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3347 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3348 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3349 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3350 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3351 | << CondTy; |
| 3352 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3353 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3354 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3355 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3356 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
| 3357 | return CheckVectorOperands(QuestionLoc, LHS, RHS); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3358 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3359 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3360 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3361 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3362 | UsualArithmeticConversions(LHS, RHS); |
| 3363 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3364 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3365 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3366 | // If both operands are the same structure or union type, the result is that |
| 3367 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3368 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3369 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3370 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3371 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3372 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3373 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3374 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3375 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3376 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3377 | // 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] | 3378 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3379 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3380 | if (!LHSTy->isVoidType()) |
| 3381 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3382 | << RHS->getSourceRange(); |
| 3383 | if (!RHSTy->isVoidType()) |
| 3384 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3385 | << LHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3386 | ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid); |
| 3387 | ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3388 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3389 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3390 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3391 | // the type of the other operand." |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3392 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3393 | RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3394 | // promote the null to a pointer. |
| 3395 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3396 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3397 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3398 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3399 | LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3400 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3401 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3402 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3403 | // Handle things like Class and struct objc_class*. Here we case the result |
| 3404 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 3405 | // redefinition type if an attempt is made to access its fields. |
| 3406 | if (LHSTy->isObjCClassType() && |
| 3407 | (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3408 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3409 | return LHSTy; |
| 3410 | } |
| 3411 | if (RHSTy->isObjCClassType() && |
| 3412 | (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3413 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3414 | return RHSTy; |
| 3415 | } |
| 3416 | // And the same for struct objc_object* / id |
| 3417 | if (LHSTy->isObjCIdType() && |
| 3418 | (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3419 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3420 | return LHSTy; |
| 3421 | } |
| 3422 | if (RHSTy->isObjCIdType() && |
| 3423 | (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3424 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3425 | return RHSTy; |
| 3426 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3427 | // Handle block pointer types. |
| 3428 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3429 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3430 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3431 | QualType destType = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3432 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
| 3433 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3434 | return destType; |
| 3435 | } |
| 3436 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3437 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3438 | return QualType(); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3439 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3440 | // We have 2 block pointer types. |
| 3441 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3442 | // Two identical block pointer types are always compatible. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3443 | return LHSTy; |
| 3444 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3445 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3446 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3447 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3448 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3449 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3450 | rhptee.getUnqualifiedType())) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3451 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3452 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3453 | // In this situation, we assume void* type. No especially good |
| 3454 | // reason, but this is what gcc does, and we do have to pick |
| 3455 | // to get a consistent AST. |
| 3456 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3457 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3458 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3459 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3460 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3461 | // The block pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3462 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3463 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3464 | return LHSTy; |
| 3465 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3466 | // Check constraints for Objective-C object pointers types. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3467 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3468 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3469 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3470 | // Two identical object pointer types are always compatible. |
| 3471 | return LHSTy; |
| 3472 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3473 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>(); |
| 3474 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3475 | QualType compositeType = LHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3476 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3477 | // If both operands are interfaces and either operand can be |
| 3478 | // assigned to the other, use that type as the composite |
| 3479 | // type. This allows |
| 3480 | // xxx ? (A*) a : (B*) b |
| 3481 | // where B is a subclass of A. |
| 3482 | // |
| 3483 | // Additionally, as for assignment, if either type is 'id' |
| 3484 | // allow silent coercion. Finally, if the types are |
| 3485 | // incompatible then make sure to use 'id' as the composite |
| 3486 | // type so the result is acceptable for sending messages to. |
| 3487 | |
| 3488 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3489 | // It could return the composite type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3490 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3491 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3492 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3493 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3494 | } else if ((LHSTy->isObjCQualifiedIdType() || |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3495 | RHSTy->isObjCQualifiedIdType()) && |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3496 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3497 | // Need to handle "id<xx>" explicitly. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3498 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3499 | // id. Currently localizing to here until clear this should be |
| 3500 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 3501 | compositeType = Context.getObjCIdType(); |
| 3502 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3503 | compositeType = Context.getObjCIdType(); |
Fariborz Jahanian | db07b3f | 2009-10-27 23:02:38 +0000 | [diff] [blame] | 3504 | } else if (!(compositeType = |
| 3505 | Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) |
| 3506 | ; |
| 3507 | else { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3508 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3509 | << LHSTy << RHSTy |
| 3510 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3511 | QualType incompatTy = Context.getObjCIdType(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3512 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3513 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3514 | return incompatTy; |
| 3515 | } |
| 3516 | // The object pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3517 | ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast); |
| 3518 | ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3519 | return compositeType; |
| 3520 | } |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3521 | // Check Objective-C object pointer types and 'void *' |
| 3522 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3523 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3524 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3525 | QualType destPointee |
| 3526 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3527 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3528 | // Add qualifiers if necessary. |
| 3529 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3530 | // Promote to void*. |
| 3531 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3532 | return destType; |
| 3533 | } |
| 3534 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3535 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3536 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3537 | QualType destPointee |
| 3538 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3539 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3540 | // Add qualifiers if necessary. |
| 3541 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
| 3542 | // Promote to void*. |
| 3543 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3544 | return destType; |
| 3545 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3546 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3547 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3548 | // get the "pointed to" types |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3549 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3550 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3551 | |
| 3552 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3553 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3554 | // Figure out necessary qualifiers (C99 6.5.15p6) |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3555 | QualType destPointee |
| 3556 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3557 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3558 | // Add qualifiers if necessary. |
| 3559 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3560 | // Promote to void*. |
| 3561 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3562 | return destType; |
| 3563 | } |
| 3564 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3565 | QualType destPointee |
| 3566 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3567 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3568 | // Add qualifiers if necessary. |
| 3569 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3570 | // Promote to void*. |
| 3571 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3572 | return destType; |
| 3573 | } |
| 3574 | |
| 3575 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3576 | // Two identical pointer types are always compatible. |
| 3577 | return LHSTy; |
| 3578 | } |
| 3579 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3580 | rhptee.getUnqualifiedType())) { |
| 3581 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3582 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3583 | // In this situation, we assume void* type. No especially good |
| 3584 | // reason, but this is what gcc does, and we do have to pick |
| 3585 | // to get a consistent AST. |
| 3586 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3587 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3588 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3589 | return incompatTy; |
| 3590 | } |
| 3591 | // The pointer types are compatible. |
| 3592 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3593 | // differently qualified versions of compatible types, the result type is |
| 3594 | // a pointer to an appropriately qualified version of the *composite* |
| 3595 | // type. |
| 3596 | // FIXME: Need to calculate the composite type. |
| 3597 | // FIXME: Need to add qualifiers |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3598 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3599 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3600 | return LHSTy; |
| 3601 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3602 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3603 | // GCC compatibility: soften pointer/integer mismatch. |
| 3604 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3605 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3606 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3607 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3608 | return RHSTy; |
| 3609 | } |
| 3610 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3611 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3612 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3613 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3614 | return LHSTy; |
| 3615 | } |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3616 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3617 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3618 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3619 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3620 | return QualType(); |
| 3621 | } |
| 3622 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3623 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3624 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3625 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3626 | SourceLocation ColonLoc, |
| 3627 | ExprArg Cond, ExprArg LHS, |
| 3628 | ExprArg RHS) { |
| 3629 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3630 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3631 | |
| 3632 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3633 | // was the condition. |
| 3634 | bool isLHSNull = LHSExpr == 0; |
| 3635 | if (isLHSNull) |
| 3636 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3637 | |
| 3638 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3639 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3640 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3641 | return ExprError(); |
| 3642 | |
| 3643 | Cond.release(); |
| 3644 | LHS.release(); |
| 3645 | RHS.release(); |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3646 | return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3647 | isLHSNull ? 0 : LHSExpr, |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3648 | ColonLoc, RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3649 | } |
| 3650 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3651 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3652 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3653 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3654 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3655 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3656 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3657 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3658 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3659 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3660 | if ((lhsType->isObjCClassType() && |
| 3661 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3662 | (rhsType->isObjCClassType() && |
| 3663 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3664 | return Compatible; |
| 3665 | } |
| 3666 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3667 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3668 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 3669 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3670 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3671 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3672 | lhptee = Context.getCanonicalType(lhptee); |
| 3673 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3674 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3675 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3676 | |
| 3677 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3678 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3679 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3680 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3681 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3682 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3683 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3684 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3685 | // 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] | 3686 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3687 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3688 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3689 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3690 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3691 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3692 | assert(rhptee->isFunctionType()); |
| 3693 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3694 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3695 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3696 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3697 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3698 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3699 | |
| 3700 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3701 | assert(lhptee->isFunctionType()); |
| 3702 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3703 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3704 | // 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] | 3705 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3706 | lhptee = lhptee.getUnqualifiedType(); |
| 3707 | rhptee = rhptee.getUnqualifiedType(); |
| 3708 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3709 | // Check if the pointee types are compatible ignoring the sign. |
| 3710 | // We explicitly check for char so that we catch "char" vs |
| 3711 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3712 | if (lhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3713 | lhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3714 | else if (lhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3715 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3716 | |
| 3717 | if (rhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3718 | rhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3719 | else if (rhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3720 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3721 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3722 | if (lhptee == rhptee) { |
| 3723 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3724 | // takes priority over sign incompatibility because the sign |
| 3725 | // warning can be disabled. |
| 3726 | if (ConvTy != Compatible) |
| 3727 | return ConvTy; |
| 3728 | return IncompatiblePointerSign; |
| 3729 | } |
| 3730 | // General pointer incompatibility takes priority over qualifiers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3731 | return IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3732 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3733 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3734 | } |
| 3735 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3736 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3737 | /// block pointer types are compatible or whether a block and normal pointer |
| 3738 | /// are compatible. It is more restrict than comparing two function pointer |
| 3739 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3740 | Sema::AssignConvertType |
| 3741 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3742 | QualType rhsType) { |
| 3743 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3744 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3745 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3746 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 3747 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3748 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3749 | // make sure we operate on the canonical type |
| 3750 | lhptee = Context.getCanonicalType(lhptee); |
| 3751 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3752 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3753 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3754 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3755 | // For blocks we enforce that qualifiers are identical. |
| 3756 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3757 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3758 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3759 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3760 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3761 | return ConvTy; |
| 3762 | } |
| 3763 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3764 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3765 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3766 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3767 | /// |
| 3768 | /// int a, *pint; |
| 3769 | /// short *pshort; |
| 3770 | /// struct foo *pfoo; |
| 3771 | /// |
| 3772 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3773 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3774 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3775 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3776 | /// |
| 3777 | /// 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] | 3778 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3779 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3780 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3781 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3782 | // Get canonical types. We're not formatting these types, just comparing |
| 3783 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3784 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3785 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3786 | |
| 3787 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3788 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3789 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3790 | if ((lhsType->isObjCClassType() && |
| 3791 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3792 | (rhsType->isObjCClassType() && |
| 3793 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3794 | return Compatible; |
| 3795 | } |
| 3796 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3797 | // If the left-hand side is a reference type, then we are in a |
| 3798 | // (rare!) case where we've allowed the use of references in C, |
| 3799 | // e.g., as a parameter type in a built-in function. In this case, |
| 3800 | // just make sure that the type referenced is compatible with the |
| 3801 | // right-hand side type. The caller is responsible for adjusting |
| 3802 | // lhsType so that the resulting expression does not have reference |
| 3803 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3804 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3805 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3806 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3807 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3808 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3809 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3810 | // to the same ExtVector type. |
| 3811 | if (lhsType->isExtVectorType()) { |
| 3812 | if (rhsType->isExtVectorType()) |
| 3813 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3814 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3815 | return Compatible; |
| 3816 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3817 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3818 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3819 | // 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] | 3820 | // 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] | 3821 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3822 | if (getLangOptions().LaxVectorConversions && |
| 3823 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3824 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3825 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3826 | } |
| 3827 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3828 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3829 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3830 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3831 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3832 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3833 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3834 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3835 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3836 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3837 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3838 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3839 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3840 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3841 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3842 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3843 | return Compatible; |
| 3844 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3845 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3846 | if (rhsType->getAs<BlockPointerType>()) { |
| 3847 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3848 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3849 | |
| 3850 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3851 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3852 | return Compatible; |
| 3853 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3854 | return Incompatible; |
| 3855 | } |
| 3856 | |
| 3857 | if (isa<BlockPointerType>(lhsType)) { |
| 3858 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3859 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3860 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3861 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3862 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3863 | return Compatible; |
| 3864 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3865 | if (rhsType->isBlockPointerType()) |
| 3866 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3867 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3868 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3869 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3870 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3871 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3872 | return Incompatible; |
| 3873 | } |
| 3874 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3875 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 3876 | if (rhsType->isIntegerType()) |
| 3877 | return IntToPointer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3878 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3879 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3880 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3881 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 3882 | return Compatible; |
| 3883 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3884 | } |
| 3885 | if (rhsType->isObjCObjectPointerType()) { |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 3886 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 3887 | return Compatible; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3888 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 3889 | return Compatible; |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3890 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 3891 | return IncompatibleObjCQualifiedId; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3892 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3893 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3894 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3895 | if (RHSPT->getPointeeType()->isVoidType()) |
| 3896 | return Compatible; |
| 3897 | } |
| 3898 | // Treat block pointers as objects. |
| 3899 | if (rhsType->isBlockPointerType()) |
| 3900 | return Compatible; |
| 3901 | return Incompatible; |
| 3902 | } |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3903 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3904 | // 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] | 3905 | if (lhsType == Context.BoolTy) |
| 3906 | return Compatible; |
| 3907 | |
| 3908 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3909 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3910 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3911 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3912 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3913 | |
| 3914 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3915 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3916 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3917 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3918 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3919 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 3920 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 3921 | if (lhsType == Context.BoolTy) |
| 3922 | return Compatible; |
| 3923 | |
| 3924 | if (lhsType->isIntegerType()) |
| 3925 | return PointerToInt; |
| 3926 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3927 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3928 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3929 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3930 | return Compatible; |
| 3931 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3932 | } |
| 3933 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3934 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3935 | return Compatible; |
| 3936 | return Incompatible; |
| 3937 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3938 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3939 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3940 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3941 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3942 | } |
| 3943 | return Incompatible; |
| 3944 | } |
| 3945 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3946 | /// \brief Constructs a transparent union from an expression that is |
| 3947 | /// used to initialize the transparent union. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3948 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3949 | QualType UnionType, FieldDecl *Field) { |
| 3950 | // Build an initializer list that designates the appropriate member |
| 3951 | // of the transparent union. |
| 3952 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3953 | &E, 1, |
| 3954 | SourceLocation()); |
| 3955 | Initializer->setType(UnionType); |
| 3956 | Initializer->setInitializedFieldInUnion(Field); |
| 3957 | |
| 3958 | // Build a compound literal constructing a value of the transparent |
| 3959 | // union type from this initializer list. |
| 3960 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3961 | false); |
| 3962 | } |
| 3963 | |
| 3964 | Sema::AssignConvertType |
| 3965 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3966 | QualType FromType = rExpr->getType(); |
| 3967 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3968 | // 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] | 3969 | // transparent_union GCC extension. |
| 3970 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3971 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3972 | return Incompatible; |
| 3973 | |
| 3974 | // The field to initialize within the transparent union. |
| 3975 | RecordDecl *UD = UT->getDecl(); |
| 3976 | FieldDecl *InitField = 0; |
| 3977 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3978 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 3979 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3980 | it != itend; ++it) { |
| 3981 | if (it->getType()->isPointerType()) { |
| 3982 | // If the transparent union contains a pointer type, we allow: |
| 3983 | // 1) void pointer |
| 3984 | // 2) null pointer constant |
| 3985 | if (FromType->isPointerType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3986 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3987 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3988 | InitField = *it; |
| 3989 | break; |
| 3990 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3991 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3992 | if (rExpr->isNullPointerConstant(Context, |
| 3993 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3994 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3995 | InitField = *it; |
| 3996 | break; |
| 3997 | } |
| 3998 | } |
| 3999 | |
| 4000 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 4001 | == Compatible) { |
| 4002 | InitField = *it; |
| 4003 | break; |
| 4004 | } |
| 4005 | } |
| 4006 | |
| 4007 | if (!InitField) |
| 4008 | return Incompatible; |
| 4009 | |
| 4010 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 4011 | return Compatible; |
| 4012 | } |
| 4013 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4014 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4015 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4016 | if (getLangOptions().CPlusPlus) { |
| 4017 | if (!lhsType->isRecordType()) { |
| 4018 | // C++ 5.17p3: If the left operand is not of class type, the |
| 4019 | // expression is implicitly converted (C++ 4) to the |
| 4020 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 4021 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 4022 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4023 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 4024 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4025 | } |
| 4026 | |
| 4027 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 4028 | // structures. |
| 4029 | } |
| 4030 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4031 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 4032 | // a null pointer constant. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4033 | if ((lhsType->isPointerType() || |
| 4034 | lhsType->isObjCObjectPointerType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4035 | lhsType->isBlockPointerType()) |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4036 | && rExpr->isNullPointerConstant(Context, |
| 4037 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4038 | ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4039 | return Compatible; |
| 4040 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4041 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4042 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4043 | // conversion of functions/arrays. If the conversion were done for all |
Douglas Gregor | 02a24ee | 2009-11-03 16:56:39 +0000 | [diff] [blame] | 4044 | // DeclExpr's (created by ActOnIdExpression), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4045 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4046 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4047 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4048 | if (!lhsType->isReferenceType()) |
| 4049 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4050 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4051 | Sema::AssignConvertType result = |
| 4052 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4053 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4054 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 4055 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4056 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 4057 | // so that we can use references in built-in functions even in C. |
| 4058 | // The getNonReferenceType() call makes sure that the resulting expression |
| 4059 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4060 | if (result != Incompatible && rExpr->getType() != lhsType) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4061 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType(), |
| 4062 | CastExpr::CK_Unknown); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4063 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4064 | } |
| 4065 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4066 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4067 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4068 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4069 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4070 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4071 | } |
| 4072 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4073 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4074 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4075 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4076 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4077 | QualType lhsType = |
| 4078 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 4079 | QualType rhsType = |
| 4080 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4081 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4082 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4083 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4084 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4085 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4086 | // Handle the case of a vector & extvector type of the same size and element |
| 4087 | // 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] | 4088 | if (getLangOptions().LaxVectorConversions) { |
| 4089 | // FIXME: Should we warn here? |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4090 | if (const VectorType *LV = lhsType->getAs<VectorType>()) { |
| 4091 | if (const VectorType *RV = rhsType->getAs<VectorType>()) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4092 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4093 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4094 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4095 | } |
| 4096 | } |
| 4097 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4098 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4099 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 4100 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 4101 | bool swapped = false; |
| 4102 | if (rhsType->isExtVectorType()) { |
| 4103 | swapped = true; |
| 4104 | std::swap(rex, lex); |
| 4105 | std::swap(rhsType, lhsType); |
| 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 | // Handle the case of an ext vector and scalar. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4109 | if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4110 | QualType EltTy = LV->getElementType(); |
| 4111 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 4112 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4113 | ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4114 | if (swapped) std::swap(rex, lex); |
| 4115 | return lhsType; |
| 4116 | } |
| 4117 | } |
| 4118 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 4119 | rhsType->isRealFloatingType()) { |
| 4120 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4121 | ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4122 | if (swapped) std::swap(rex, lex); |
| 4123 | return lhsType; |
| 4124 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4125 | } |
| 4126 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4127 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4128 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4129 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4130 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4131 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4132 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4133 | } |
| 4134 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4135 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4136 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 4137 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4138 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4139 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4140 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4141 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4142 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4143 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4144 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4145 | } |
| 4146 | |
| 4147 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4148 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 4149 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4150 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 4151 | return CheckVectorOperands(Loc, lex, rex); |
| 4152 | return InvalidOperands(Loc, lex, rex); |
| 4153 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4154 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4155 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4156 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4157 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4158 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4159 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4160 | } |
| 4161 | |
| 4162 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4163 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4164 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4165 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4166 | if (CompLHSTy) *CompLHSTy = compType; |
| 4167 | return compType; |
| 4168 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4169 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4170 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4171 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4172 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4173 | if (lex->getType()->isArithmeticType() && |
| 4174 | rex->getType()->isArithmeticType()) { |
| 4175 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4176 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4177 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4178 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4179 | // Put any potential pointer into PExp |
| 4180 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4181 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4182 | std::swap(PExp, IExp); |
| 4183 | |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4184 | if (PExp->getType()->isAnyPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4185 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4186 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4187 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4188 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4189 | // Check for arithmetic on pointers to incomplete types. |
| 4190 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4191 | if (getLangOptions().CPlusPlus) { |
| 4192 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4193 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4194 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4195 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4196 | |
| 4197 | // GNU extension: arithmetic on pointer to void |
| 4198 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4199 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4200 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4201 | if (getLangOptions().CPlusPlus) { |
| 4202 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 4203 | << lex->getType() << lex->getSourceRange(); |
| 4204 | return QualType(); |
| 4205 | } |
| 4206 | |
| 4207 | // GNU extension: arithmetic on pointer to function |
| 4208 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4209 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4210 | } else { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4211 | // Check if we require a complete type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4212 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4213 | !PExp->getType()->isDependentType()) || |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4214 | PExp->getType()->isObjCObjectPointerType()) && |
| 4215 | RequireCompleteType(Loc, PointeeTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4216 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 4217 | << PExp->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4218 | << PExp->getType())) |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4219 | return QualType(); |
| 4220 | } |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4221 | // Diagnose bad cases where we step over interface counts. |
| 4222 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4223 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4224 | << PointeeTy << PExp->getSourceRange(); |
| 4225 | return QualType(); |
| 4226 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4227 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4228 | if (CompLHSTy) { |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4229 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4230 | if (LHSTy.isNull()) { |
| 4231 | LHSTy = lex->getType(); |
| 4232 | if (LHSTy->isPromotableIntegerType()) |
| 4233 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4234 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4235 | *CompLHSTy = LHSTy; |
| 4236 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4237 | return PExp->getType(); |
| 4238 | } |
| 4239 | } |
| 4240 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4241 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4242 | } |
| 4243 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4244 | // C99 6.5.6 |
| 4245 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4246 | SourceLocation Loc, QualType* CompLHSTy) { |
| 4247 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4248 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4249 | if (CompLHSTy) *CompLHSTy = compType; |
| 4250 | return compType; |
| 4251 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4252 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4253 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4254 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4255 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4256 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4257 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4258 | if (lex->getType()->isArithmeticType() |
| 4259 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4260 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4261 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4262 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4263 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4264 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4265 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 4266 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4267 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4268 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4269 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4270 | bool ComplainAboutVoid = false; |
| 4271 | Expr *ComplainAboutFunc = 0; |
| 4272 | if (lpointee->isVoidType()) { |
| 4273 | if (getLangOptions().CPlusPlus) { |
| 4274 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4275 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4276 | return QualType(); |
| 4277 | } |
| 4278 | |
| 4279 | // GNU C extension: arithmetic on pointer to void |
| 4280 | ComplainAboutVoid = true; |
| 4281 | } else if (lpointee->isFunctionType()) { |
| 4282 | if (getLangOptions().CPlusPlus) { |
| 4283 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4284 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4285 | return QualType(); |
| 4286 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4287 | |
| 4288 | // GNU C extension: arithmetic on pointer to function |
| 4289 | ComplainAboutFunc = lex; |
| 4290 | } else if (!lpointee->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4291 | RequireCompleteType(Loc, lpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4292 | PDiag(diag::err_typecheck_sub_ptr_object) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4293 | << lex->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4294 | << lex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4295 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4296 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4297 | // Diagnose bad cases where we step over interface counts. |
| 4298 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4299 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4300 | << lpointee << lex->getSourceRange(); |
| 4301 | return QualType(); |
| 4302 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4303 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4304 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4305 | if (rex->getType()->isIntegerType()) { |
| 4306 | if (ComplainAboutVoid) |
| 4307 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4308 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4309 | if (ComplainAboutFunc) |
| 4310 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4311 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4312 | << ComplainAboutFunc->getSourceRange(); |
| 4313 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4314 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4315 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4316 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4317 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4318 | // Handle pointer-pointer subtractions. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4319 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4320 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4321 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4322 | // RHS must be a completely-type object type. |
| 4323 | // Handle the GNU void* extension. |
| 4324 | if (rpointee->isVoidType()) { |
| 4325 | if (getLangOptions().CPlusPlus) { |
| 4326 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4327 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4328 | return QualType(); |
| 4329 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4330 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4331 | ComplainAboutVoid = true; |
| 4332 | } else if (rpointee->isFunctionType()) { |
| 4333 | if (getLangOptions().CPlusPlus) { |
| 4334 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4335 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4336 | return QualType(); |
| 4337 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4338 | |
| 4339 | // GNU extension: arithmetic on pointer to function |
| 4340 | if (!ComplainAboutFunc) |
| 4341 | ComplainAboutFunc = rex; |
| 4342 | } else if (!rpointee->isDependentType() && |
| 4343 | RequireCompleteType(Loc, rpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4344 | PDiag(diag::err_typecheck_sub_ptr_object) |
| 4345 | << rex->getSourceRange() |
| 4346 | << rex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4347 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4348 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4349 | if (getLangOptions().CPlusPlus) { |
| 4350 | // Pointee types must be the same: C++ [expr.add] |
| 4351 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4352 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4353 | << lex->getType() << rex->getType() |
| 4354 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4355 | return QualType(); |
| 4356 | } |
| 4357 | } else { |
| 4358 | // Pointee types must be compatible C99 6.5.6p3 |
| 4359 | if (!Context.typesAreCompatible( |
| 4360 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4361 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4362 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4363 | << lex->getType() << rex->getType() |
| 4364 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4365 | return QualType(); |
| 4366 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4367 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4368 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4369 | if (ComplainAboutVoid) |
| 4370 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4371 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4372 | if (ComplainAboutFunc) |
| 4373 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4374 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4375 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4376 | |
| 4377 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4378 | return Context.getPointerDiffType(); |
| 4379 | } |
| 4380 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4381 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4382 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4383 | } |
| 4384 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4385 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4386 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4387 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4388 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4389 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4390 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4391 | |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 4392 | // Vector shifts promote their scalar inputs to vector type. |
| 4393 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 4394 | return CheckVectorOperands(Loc, lex, rex); |
| 4395 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4396 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4397 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4398 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4399 | if (LHSTy.isNull()) { |
| 4400 | LHSTy = lex->getType(); |
| 4401 | if (LHSTy->isPromotableIntegerType()) |
| 4402 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4403 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4404 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4405 | ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4406 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4407 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4408 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4409 | // Sanity-check shift operands |
| 4410 | llvm::APSInt Right; |
| 4411 | // Check right/shifter operand |
Daniel Dunbar | 3f180c6 | 2009-09-17 06:31:27 +0000 | [diff] [blame] | 4412 | if (!rex->isValueDependent() && |
| 4413 | rex->isIntegerConstantExpr(Right, Context)) { |
Ryan Flynn | 8045c73 | 2009-08-08 19:18:23 +0000 | [diff] [blame] | 4414 | if (Right.isNegative()) |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4415 | Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange(); |
| 4416 | else { |
| 4417 | llvm::APInt LeftBits(Right.getBitWidth(), |
| 4418 | Context.getTypeSize(lex->getType())); |
| 4419 | if (Right.uge(LeftBits)) |
| 4420 | Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange(); |
| 4421 | } |
| 4422 | } |
| 4423 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4424 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4425 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4426 | } |
| 4427 | |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4428 | /// Implements -Wsign-compare. |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4429 | void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc, |
| 4430 | const PartialDiagnostic &PD) { |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4431 | QualType lt = lex->getType(), rt = rex->getType(); |
| 4432 | |
| 4433 | // Only warn if both operands are integral. |
| 4434 | if (!lt->isIntegerType() || !rt->isIntegerType()) |
| 4435 | return; |
| 4436 | |
Sebastian Redl | 732429c | 2009-11-05 21:09:23 +0000 | [diff] [blame^] | 4437 | // If either expression is value-dependent, don't warn. We'll get another |
| 4438 | // chance at instantiation time. |
| 4439 | if (lex->isValueDependent() || rex->isValueDependent()) |
| 4440 | return; |
| 4441 | |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4442 | // The rule is that the signed operand becomes unsigned, so isolate the |
| 4443 | // signed operand. |
| 4444 | Expr *signedOperand; |
| 4445 | if (lt->isSignedIntegerType()) { |
| 4446 | if (rt->isSignedIntegerType()) return; |
| 4447 | signedOperand = lex; |
| 4448 | } else { |
| 4449 | if (!rt->isSignedIntegerType()) return; |
| 4450 | signedOperand = rex; |
| 4451 | } |
| 4452 | |
| 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 | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4463 | Diag(OpLoc, PD) |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4464 | << lex->getType() << rex->getType() |
| 4465 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4466 | } |
| 4467 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4468 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4469 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4470 | unsigned OpaqueOpc, bool isRelational) { |
| 4471 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 4472 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4473 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4474 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4475 | |
John McCall | b13c87f | 2009-11-05 09:23:39 +0000 | [diff] [blame] | 4476 | CheckSignCompare(lex, rex, Loc, diag::warn_mixed_sign_comparison); |
John McCall | 45aa455 | 2009-11-05 00:40:04 +0000 | [diff] [blame] | 4477 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4478 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 4479 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 4480 | UsualArithmeticConversions(lex, rex); |
| 4481 | else { |
| 4482 | UsualUnaryConversions(lex); |
| 4483 | UsualUnaryConversions(rex); |
| 4484 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4485 | QualType lType = lex->getType(); |
| 4486 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4487 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4488 | if (!lType->isFloatingType() |
| 4489 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4490 | // For non-floating point types, check for self-comparisons of the form |
| 4491 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4492 | // often indicate logic errors in the program. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4493 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 4494 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4495 | Expr *LHSStripped = lex->IgnoreParens(); |
| 4496 | Expr *RHSStripped = rex->IgnoreParens(); |
| 4497 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 4498 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 4499 | if (DRL->getDecl() == DRR->getDecl() && |
| 4500 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4501 | Diag(Loc, diag::warn_selfcomparison); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4502 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4503 | if (isa<CastExpr>(LHSStripped)) |
| 4504 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 4505 | if (isa<CastExpr>(RHSStripped)) |
| 4506 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4507 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4508 | // Warn about comparisons against a string constant (unless the other |
| 4509 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4510 | Expr *literalString = 0; |
| 4511 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4512 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4513 | !RHSStripped->isNullPointerConstant(Context, |
| 4514 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4515 | literalString = lex; |
| 4516 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 4517 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 4518 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4519 | !LHSStripped->isNullPointerConstant(Context, |
| 4520 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4521 | literalString = rex; |
| 4522 | literalStringStripped = RHSStripped; |
| 4523 | } |
| 4524 | |
| 4525 | if (literalString) { |
| 4526 | std::string resultComparison; |
| 4527 | switch (Opc) { |
| 4528 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4529 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4530 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4531 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4532 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4533 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4534 | default: assert(false && "Invalid comparison operator"); |
| 4535 | } |
| 4536 | Diag(Loc, diag::warn_stringcompare) |
| 4537 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4538 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4539 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4540 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4541 | "strcmp(") |
| 4542 | << CodeModificationHint::CreateInsertion( |
| 4543 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4544 | resultComparison); |
| 4545 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4546 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4547 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4548 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4549 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4550 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4551 | if (isRelational) { |
| 4552 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4553 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4554 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4555 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4556 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4557 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4558 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4559 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4560 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4561 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4562 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4563 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4564 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4565 | bool LHSIsNull = lex->isNullPointerConstant(Context, |
| 4566 | Expr::NPC_ValueDependentIsNull); |
| 4567 | bool RHSIsNull = rex->isNullPointerConstant(Context, |
| 4568 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4569 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4570 | // All of the following pointer related warnings are GCC extensions, except |
| 4571 | // when handling null pointer constants. One day, we can consider making them |
| 4572 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4573 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4574 | QualType LCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4575 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4576 | QualType RCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4577 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4578 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4579 | if (getLangOptions().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4580 | if (LCanPointeeTy == RCanPointeeTy) |
| 4581 | return ResultTy; |
| 4582 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4583 | // C++ [expr.rel]p2: |
| 4584 | // [...] Pointer conversions (4.10) and qualification |
| 4585 | // conversions (4.4) are performed on pointer operands (or on |
| 4586 | // a pointer operand and a null pointer constant) to bring |
| 4587 | // them to their composite pointer type. [...] |
| 4588 | // |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4589 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4590 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4591 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4592 | if (T.isNull()) { |
| 4593 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4594 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4595 | return QualType(); |
| 4596 | } |
| 4597 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4598 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4599 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4600 | return ResultTy; |
| 4601 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4602 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 4603 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 4604 | RCanPointeeTy.getUnqualifiedType())) { |
| 4605 | // Valid unless a relational comparison of function pointers |
| 4606 | if (isRelational && LCanPointeeTy->isFunctionType()) { |
| 4607 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4608 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4609 | } |
| 4610 | } else if (!isRelational && |
| 4611 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 4612 | // Valid unless comparison between non-null pointer and function pointer |
| 4613 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 4614 | && !LHSIsNull && !RHSIsNull) { |
| 4615 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 4616 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4617 | } |
| 4618 | } else { |
| 4619 | // Invalid |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4620 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4621 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4622 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4623 | if (LCanPointeeTy != RCanPointeeTy) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4624 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4625 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4626 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4627 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4628 | if (getLangOptions().CPlusPlus) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4629 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4630 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4631 | if (RHSIsNull && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4632 | (lType->isPointerType() || |
| 4633 | (!isRelational && lType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4634 | ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4635 | return ResultTy; |
| 4636 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4637 | if (LHSIsNull && |
| 4638 | (rType->isPointerType() || |
| 4639 | (!isRelational && rType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4640 | ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4641 | return ResultTy; |
| 4642 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4643 | |
| 4644 | // Comparison of member pointers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4645 | if (!isRelational && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4646 | lType->isMemberPointerType() && rType->isMemberPointerType()) { |
| 4647 | // C++ [expr.eq]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4648 | // In addition, pointers to members can be compared, or a pointer to |
| 4649 | // member and a null pointer constant. Pointer to member conversions |
| 4650 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 4651 | // them to a common type. If one operand is a null pointer constant, |
| 4652 | // the common type is the type of the other operand. Otherwise, the |
| 4653 | // common type is a pointer to member type similar (4.4) to the type |
| 4654 | // of one of the operands, with a cv-qualification signature (4.4) |
| 4655 | // that is the union of the cv-qualification signatures of the operand |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4656 | // types. |
| 4657 | QualType T = FindCompositePointerType(lex, rex); |
| 4658 | if (T.isNull()) { |
| 4659 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4660 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4661 | return QualType(); |
| 4662 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4663 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4664 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4665 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4666 | return ResultTy; |
| 4667 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4668 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4669 | // Comparison of nullptr_t with itself. |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4670 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4671 | return ResultTy; |
| 4672 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4673 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4674 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4675 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4676 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 4677 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4678 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4679 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4680 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4681 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4682 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4683 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4684 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4685 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4686 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4687 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4688 | if (!isRelational |
| 4689 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4690 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4691 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4692 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4693 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4694 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4695 | ->getPointeeType()->isVoidType()))) |
| 4696 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4697 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +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 | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4701 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4702 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4703 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4704 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4705 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 4706 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4707 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4708 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4709 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4710 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4711 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4712 | if (!LPtrToVoid && !RPtrToVoid && |
| 4713 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4714 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4715 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4716 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4717 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4718 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4719 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4720 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4721 | if (!Context.areComparableObjCPointerTypes(lType, rType)) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4722 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4723 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4724 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4725 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4726 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4727 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4728 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4729 | unsigned DiagID = 0; |
| 4730 | if (RHSIsNull) { |
| 4731 | if (isRelational) |
| 4732 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4733 | } else if (isRelational) |
| 4734 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4735 | else |
| 4736 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4737 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4738 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4739 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4740 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4741 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4742 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4743 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4744 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4745 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4746 | unsigned DiagID = 0; |
| 4747 | if (LHSIsNull) { |
| 4748 | if (isRelational) |
| 4749 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4750 | } else if (isRelational) |
| 4751 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4752 | else |
| 4753 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4754 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4755 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4756 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4757 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4758 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4759 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4760 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4761 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4762 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4763 | if (!isRelational && RHSIsNull |
| 4764 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4765 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4766 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4767 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4768 | if (!isRelational && LHSIsNull |
| 4769 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4770 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4771 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4772 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4773 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4774 | } |
| 4775 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4776 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4777 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4778 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4779 | /// types. |
| 4780 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4781 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4782 | bool isRelational) { |
| 4783 | // Check to make sure we're operating on vectors of the same type and width, |
| 4784 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4785 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4786 | if (vType.isNull()) |
| 4787 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4788 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4789 | QualType lType = lex->getType(); |
| 4790 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4791 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4792 | // For non-floating point types, check for self-comparisons of the form |
| 4793 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4794 | // often indicate logic errors in the program. |
| 4795 | if (!lType->isFloatingType()) { |
| 4796 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4797 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4798 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4799 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4800 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4801 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4802 | // Check for comparisons of floating point operands using != and ==. |
| 4803 | if (!isRelational && lType->isFloatingType()) { |
| 4804 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4805 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4806 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4807 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4808 | // Return the type for the comparison, which is the same as vector type for |
| 4809 | // integer vectors, or an integer type of identical size and number of |
| 4810 | // elements for floating point vectors. |
| 4811 | if (lType->isIntegerType()) |
| 4812 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4813 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4814 | const VectorType *VTy = lType->getAs<VectorType>(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4815 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4816 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4817 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4818 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4819 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4820 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4821 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4822 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4823 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4824 | } |
| 4825 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4826 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4827 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4828 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4829 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4830 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4831 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4832 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4833 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4834 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4835 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4836 | } |
| 4837 | |
| 4838 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4839 | Expr *&lex, Expr *&rex, SourceLocation Loc) { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4840 | UsualUnaryConversions(lex); |
| 4841 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4842 | |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 4843 | if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType()) |
| 4844 | return InvalidOperands(Loc, lex, rex); |
| 4845 | |
| 4846 | if (Context.getLangOptions().CPlusPlus) { |
| 4847 | // C++ [expr.log.and]p2 |
| 4848 | // C++ [expr.log.or]p2 |
| 4849 | return Context.BoolTy; |
| 4850 | } |
| 4851 | |
| 4852 | return Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4853 | } |
| 4854 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4855 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4856 | /// is a read-only property; return true if so. A readonly property expression |
| 4857 | /// depends on various declarations and thus must be treated specially. |
| 4858 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4859 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4860 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4861 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4862 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4863 | QualType BaseType = PropExpr->getBase()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4864 | if (const ObjCObjectPointerType *OPT = |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4865 | BaseType->getAsObjCInterfacePointerType()) |
| 4866 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 4867 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4868 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4869 | } |
| 4870 | } |
| 4871 | return false; |
| 4872 | } |
| 4873 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4874 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4875 | /// emit an error and return true. If so, return false. |
| 4876 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4877 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4878 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4879 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4880 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4881 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4882 | if (IsLV == Expr::MLV_Valid) |
| 4883 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4884 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4885 | unsigned Diag = 0; |
| 4886 | bool NeedType = false; |
| 4887 | switch (IsLV) { // C99 6.5.16p2 |
| 4888 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4889 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4890 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4891 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4892 | NeedType = true; |
| 4893 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4894 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4895 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4896 | NeedType = true; |
| 4897 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4898 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4899 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4900 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4901 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4902 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4903 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4904 | case Expr::MLV_IncompleteType: |
| 4905 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4906 | return S.RequireCompleteType(Loc, E->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 4907 | PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
| 4908 | << E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4909 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4910 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4911 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4912 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4913 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4914 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4915 | case Expr::MLV_ReadonlyProperty: |
| 4916 | Diag = diag::error_readonly_property_assignment; |
| 4917 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4918 | case Expr::MLV_NoSetterProperty: |
| 4919 | Diag = diag::error_nosetter_property_assignment; |
| 4920 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4921 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4922 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4923 | SourceRange Assign; |
| 4924 | if (Loc != OrigLoc) |
| 4925 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4926 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4927 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4928 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4929 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4930 | return true; |
| 4931 | } |
| 4932 | |
| 4933 | |
| 4934 | |
| 4935 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4936 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4937 | SourceLocation Loc, |
| 4938 | QualType CompoundType) { |
| 4939 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4940 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4941 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4942 | |
| 4943 | QualType LHSType = LHS->getType(); |
| 4944 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4945 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4946 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4947 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4948 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4949 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4950 | // Special case of NSObject attributes on c-style pointer types. |
| 4951 | if (ConvTy == IncompatiblePointer && |
| 4952 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4953 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4954 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4955 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4956 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4957 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4958 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4959 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4960 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4961 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4962 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4963 | RHSCheck = ICE->getSubExpr(); |
| 4964 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4965 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4966 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4967 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4968 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4969 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4970 | // And there is a space or other character before the subexpr of the |
| 4971 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4972 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4973 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4974 | Diag(Loc, diag::warn_not_compound_assign) |
| 4975 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4976 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4977 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4978 | } |
| 4979 | } else { |
| 4980 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4981 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4982 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4983 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4984 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4985 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4986 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4987 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4988 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4989 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4990 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4991 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4992 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4993 | // 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] | 4994 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4995 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4996 | } |
| 4997 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4998 | // C99 6.5.17 |
| 4999 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 5000 | // 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] | 5001 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5002 | |
| 5003 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 5004 | // incomplete in C++). |
| 5005 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 5006 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5007 | } |
| 5008 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 5009 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 5010 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5011 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 5012 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5013 | if (Op->isTypeDependent()) |
| 5014 | return Context.DependentTy; |
| 5015 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5016 | QualType ResType = Op->getType(); |
| 5017 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5018 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5019 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 5020 | // Decrement of bool is not allowed. |
| 5021 | if (!isInc) { |
| 5022 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 5023 | return QualType(); |
| 5024 | } |
| 5025 | // Increment of bool sets it to true, but is deprecated. |
| 5026 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 5027 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5028 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5029 | } else if (ResType->isAnyPointerType()) { |
| 5030 | QualType PointeeTy = ResType->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5031 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5032 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5033 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5034 | if (getLangOptions().CPlusPlus) { |
| 5035 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 5036 | << Op->getSourceRange(); |
| 5037 | return QualType(); |
| 5038 | } |
| 5039 | |
| 5040 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5041 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5042 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5043 | if (getLangOptions().CPlusPlus) { |
| 5044 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 5045 | << Op->getType() << Op->getSourceRange(); |
| 5046 | return QualType(); |
| 5047 | } |
| 5048 | |
| 5049 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5050 | << ResType << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5051 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5052 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5053 | << Op->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5054 | << ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5055 | return QualType(); |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 5056 | // Diagnose bad cases where we step over interface counts. |
| 5057 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 5058 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 5059 | << PointeeTy << Op->getSourceRange(); |
| 5060 | return QualType(); |
| 5061 | } |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5062 | } else if (ResType->isComplexType()) { |
| 5063 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 5064 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5065 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5066 | } else { |
| 5067 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5068 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5069 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5070 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5071 | // 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] | 5072 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5073 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5074 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5075 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5076 | } |
| 5077 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5078 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5079 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5080 | /// where the declaration is needed for type checking. We only need to |
| 5081 | /// handle cases when the expression references a function designator |
| 5082 | /// or is an lvalue. Here are some examples: |
| 5083 | /// - &(x) => x |
| 5084 | /// - &*****f => f for f a function designator. |
| 5085 | /// - &s.xx => s |
| 5086 | /// - &s.zz[1].yy -> s, if zz is an array |
| 5087 | /// - *(x + 1) -> x, if x is an array |
| 5088 | /// - &"123"[2] -> 0 |
| 5089 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5090 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5091 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5092 | case Stmt::DeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5093 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5094 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5095 | // If this is an arrow operator, the address is an offset from |
| 5096 | // the base's value, so the object the base refers to is |
| 5097 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5098 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5099 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5100 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5101 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5102 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5103 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 5104 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5105 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 5106 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 5107 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 5108 | return getPrimaryDecl(ICE->getSubExpr()); |
| 5109 | } |
| 5110 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5111 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5112 | case Stmt::UnaryOperatorClass: { |
| 5113 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5114 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5115 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5116 | case UnaryOperator::Real: |
| 5117 | case UnaryOperator::Imag: |
| 5118 | case UnaryOperator::Extension: |
| 5119 | return getPrimaryDecl(UO->getSubExpr()); |
| 5120 | default: |
| 5121 | return 0; |
| 5122 | } |
| 5123 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5124 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5125 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5126 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5127 | // If the result of an implicit cast is an l-value, we care about |
| 5128 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5129 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5130 | default: |
| 5131 | return 0; |
| 5132 | } |
| 5133 | } |
| 5134 | |
| 5135 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5136 | /// 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] | 5137 | /// 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] | 5138 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5139 | /// 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] | 5140 | /// 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] | 5141 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5142 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5143 | // Make sure to ignore parentheses in subsequent checks |
| 5144 | op = op->IgnoreParens(); |
| 5145 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 5146 | if (op->isTypeDependent()) |
| 5147 | return Context.DependentTy; |
| 5148 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5149 | if (getLangOptions().C99) { |
| 5150 | // Implement C99-only parts of addressof rules. |
| 5151 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 5152 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 5153 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 5154 | // (assuming the deref expression is valid). |
| 5155 | return uOp->getSubExpr()->getType(); |
| 5156 | } |
| 5157 | // Technically, there should be a check for array subscript |
| 5158 | // expressions here, but the result of one is always an lvalue anyway. |
| 5159 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5160 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 5161 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 5162 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5163 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 5164 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5165 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5166 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5167 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5168 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 5169 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5170 | return QualType(); |
| 5171 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 5172 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5173 | // The operand cannot be a bit-field |
| 5174 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5175 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 5176 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5177 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 5178 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5179 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5180 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5181 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5182 | return QualType(); |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 5183 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 5184 | // cannot take address of a property expression. |
| 5185 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5186 | << "property expression" << op->getSourceRange(); |
| 5187 | return QualType(); |
Anders Carlsson | 1d524c3 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 5188 | } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) { |
| 5189 | // FIXME: Can LHS ever be null here? |
Anders Carlsson | 474e102 | 2009-09-15 16:03:44 +0000 | [diff] [blame] | 5190 | if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull()) |
| 5191 | return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5192 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5193 | // 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] | 5194 | // with the register storage-class specifier. |
| 5195 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 5196 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5197 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5198 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5199 | return QualType(); |
| 5200 | } |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 5201 | } else if (isa<OverloadedFunctionDecl>(dcl) || |
| 5202 | isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5203 | return Context.OverloadTy; |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5204 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 5205 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5206 | // Could be a pointer to member, though, if there is an explicit |
| 5207 | // scope qualifier for the class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5208 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5209 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5210 | if (Ctx && Ctx->isRecord()) { |
| 5211 | if (FD->getType()->isReferenceType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5212 | Diag(OpLoc, |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5213 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 5214 | << FD->getDeclName() << FD->getType(); |
| 5215 | return QualType(); |
| 5216 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5217 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5218 | return Context.getMemberPointerType(op->getType(), |
| 5219 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5220 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5221 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5222 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 5223 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5224 | // As above. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5225 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() && |
| 5226 | MD->isInstance()) |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5227 | return Context.getMemberPointerType(op->getType(), |
| 5228 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 5229 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5230 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5231 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5232 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5233 | if (lval == Expr::LV_IncompleteVoidType) { |
| 5234 | // Taking the address of a void variable is technically illegal, but we |
| 5235 | // allow it in cases which are otherwise valid. |
| 5236 | // Example: "extern void x; void* y = &x;". |
| 5237 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 5238 | } |
| 5239 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5240 | // If the operand has type "type", the result has type "pointer to type". |
| 5241 | return Context.getPointerType(op->getType()); |
| 5242 | } |
| 5243 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5244 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5245 | if (Op->isTypeDependent()) |
| 5246 | return Context.DependentTy; |
| 5247 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5248 | UsualUnaryConversions(Op); |
| 5249 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5250 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5251 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 5252 | // incomplete type or void. It would be possible to warn about dereferencing |
| 5253 | // a void pointer, but it's completely well-defined, and such a warning is |
| 5254 | // unlikely to catch any mistakes. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5255 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5256 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5257 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5258 | if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>()) |
Fariborz Jahanian | 16b1037 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 5259 | return OPT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5260 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5261 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5262 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5263 | return QualType(); |
| 5264 | } |
| 5265 | |
| 5266 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 5267 | tok::TokenKind Kind) { |
| 5268 | BinaryOperator::Opcode Opc; |
| 5269 | switch (Kind) { |
| 5270 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5271 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 5272 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5273 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 5274 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 5275 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 5276 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 5277 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 5278 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 5279 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 5280 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 5281 | case tok::less: Opc = BinaryOperator::LT; break; |
| 5282 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 5283 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 5284 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 5285 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 5286 | case tok::amp: Opc = BinaryOperator::And; break; |
| 5287 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 5288 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 5289 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 5290 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 5291 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 5292 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 5293 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 5294 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 5295 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 5296 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 5297 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 5298 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 5299 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 5300 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 5301 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 5302 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 5303 | } |
| 5304 | return Opc; |
| 5305 | } |
| 5306 | |
| 5307 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 5308 | tok::TokenKind Kind) { |
| 5309 | UnaryOperator::Opcode Opc; |
| 5310 | switch (Kind) { |
| 5311 | default: assert(0 && "Unknown unary op!"); |
| 5312 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 5313 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 5314 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 5315 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 5316 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 5317 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 5318 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 5319 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5320 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 5321 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 5322 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 5323 | } |
| 5324 | return Opc; |
| 5325 | } |
| 5326 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5327 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 5328 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 5329 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5330 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 5331 | unsigned Op, |
| 5332 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5333 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5334 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5335 | // The following two variables are used for compound assignment operators |
| 5336 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 5337 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5338 | |
| 5339 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5340 | case BinaryOperator::Assign: |
| 5341 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 5342 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5343 | case BinaryOperator::PtrMemD: |
| 5344 | case BinaryOperator::PtrMemI: |
| 5345 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 5346 | Opc == BinaryOperator::PtrMemI); |
| 5347 | break; |
| 5348 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5349 | case BinaryOperator::Div: |
| 5350 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 5351 | break; |
| 5352 | case BinaryOperator::Rem: |
| 5353 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 5354 | break; |
| 5355 | case BinaryOperator::Add: |
| 5356 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 5357 | break; |
| 5358 | case BinaryOperator::Sub: |
| 5359 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 5360 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5361 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5362 | case BinaryOperator::Shr: |
| 5363 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 5364 | break; |
| 5365 | case BinaryOperator::LE: |
| 5366 | case BinaryOperator::LT: |
| 5367 | case BinaryOperator::GE: |
| 5368 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5369 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5370 | break; |
| 5371 | case BinaryOperator::EQ: |
| 5372 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5373 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5374 | break; |
| 5375 | case BinaryOperator::And: |
| 5376 | case BinaryOperator::Xor: |
| 5377 | case BinaryOperator::Or: |
| 5378 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 5379 | break; |
| 5380 | case BinaryOperator::LAnd: |
| 5381 | case BinaryOperator::LOr: |
| 5382 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 5383 | break; |
| 5384 | case BinaryOperator::MulAssign: |
| 5385 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5386 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 5387 | CompLHSTy = CompResultTy; |
| 5388 | if (!CompResultTy.isNull()) |
| 5389 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5390 | break; |
| 5391 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5392 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 5393 | CompLHSTy = CompResultTy; |
| 5394 | if (!CompResultTy.isNull()) |
| 5395 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5396 | break; |
| 5397 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5398 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5399 | if (!CompResultTy.isNull()) |
| 5400 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5401 | break; |
| 5402 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5403 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5404 | if (!CompResultTy.isNull()) |
| 5405 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5406 | break; |
| 5407 | case BinaryOperator::ShlAssign: |
| 5408 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5409 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 5410 | CompLHSTy = CompResultTy; |
| 5411 | if (!CompResultTy.isNull()) |
| 5412 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5413 | break; |
| 5414 | case BinaryOperator::AndAssign: |
| 5415 | case BinaryOperator::XorAssign: |
| 5416 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5417 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 5418 | CompLHSTy = CompResultTy; |
| 5419 | if (!CompResultTy.isNull()) |
| 5420 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5421 | break; |
| 5422 | case BinaryOperator::Comma: |
| 5423 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 5424 | break; |
| 5425 | } |
| 5426 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5427 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5428 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5429 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 5430 | else |
| 5431 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5432 | CompLHSTy, CompResultTy, |
| 5433 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5434 | } |
| 5435 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5436 | /// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps |
| 5437 | /// ParenRange in parentheses. |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5438 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
| 5439 | const PartialDiagnostic &PD, |
| 5440 | SourceRange ParenRange) |
| 5441 | { |
| 5442 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 5443 | if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { |
| 5444 | // We can't display the parentheses, so just dig the |
| 5445 | // warning/error and return. |
| 5446 | Self.Diag(Loc, PD); |
| 5447 | return; |
| 5448 | } |
| 5449 | |
| 5450 | Self.Diag(Loc, PD) |
| 5451 | << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 5452 | << CodeModificationHint::CreateInsertion(EndLoc, ")"); |
| 5453 | } |
| 5454 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5455 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 5456 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 5457 | /// comparison operators have higher precedence. The most typical example of |
| 5458 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5459 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5460 | SourceLocation OpLoc,Expr *lhs,Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5461 | typedef BinaryOperator BinOp; |
| 5462 | BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1), |
| 5463 | rhsopc = static_cast<BinOp::Opcode>(-1); |
| 5464 | if (BinOp *BO = dyn_cast<BinOp>(lhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5465 | lhsopc = BO->getOpcode(); |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5466 | if (BinOp *BO = dyn_cast<BinOp>(rhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5467 | rhsopc = BO->getOpcode(); |
| 5468 | |
| 5469 | // Subs are not binary operators. |
| 5470 | if (lhsopc == -1 && rhsopc == -1) |
| 5471 | return; |
| 5472 | |
| 5473 | // Bitwise operations are sometimes used as eager logical ops. |
| 5474 | // Don't diagnose this. |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5475 | if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) && |
| 5476 | (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc))) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5477 | return; |
| 5478 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5479 | if (BinOp::isComparisonOp(lhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5480 | SuggestParentheses(Self, OpLoc, |
| 5481 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5482 | << SourceRange(lhs->getLocStart(), OpLoc) |
| 5483 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc), |
| 5484 | SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd())); |
| 5485 | else if (BinOp::isComparisonOp(rhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5486 | SuggestParentheses(Self, OpLoc, |
| 5487 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5488 | << SourceRange(OpLoc, rhs->getLocEnd()) |
| 5489 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc), |
| 5490 | SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart())); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5491 | } |
| 5492 | |
| 5493 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
| 5494 | /// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3". |
| 5495 | /// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does. |
| 5496 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5497 | SourceLocation OpLoc, Expr *lhs, Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame] | 5498 | if (BinaryOperator::isBitwiseOp(Opc)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5499 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs); |
| 5500 | } |
| 5501 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5502 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5503 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 5504 | tok::TokenKind Kind, |
| 5505 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5506 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5507 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5508 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5509 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 5510 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5511 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5512 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
| 5513 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs); |
| 5514 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5515 | return BuildBinOp(S, TokLoc, Opc, lhs, rhs); |
| 5516 | } |
| 5517 | |
| 5518 | Action::OwningExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc, |
| 5519 | BinaryOperator::Opcode Opc, |
| 5520 | Expr *lhs, Expr *rhs) { |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5521 | if (getLangOptions().CPlusPlus && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5522 | (lhs->getType()->isOverloadableType() || |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5523 | rhs->getType()->isOverloadableType())) { |
| 5524 | // Find all of the overloaded operators visible from this |
| 5525 | // point. We perform both an operator-name lookup from the local |
| 5526 | // scope and an argument-dependent lookup based on the types of |
| 5527 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 5528 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5529 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 5530 | if (OverOp != OO_None) { |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5531 | if (S) |
| 5532 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 5533 | Functions); |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5534 | Expr *Args[2] = { lhs, rhs }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5535 | DeclarationName OpName |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5536 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5537 | ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 5538 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5539 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5540 | // Build the (potentially-overloaded, potentially-dependent) |
| 5541 | // binary operation. |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5542 | return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5543 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5544 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5545 | // Build a built-in binary operation. |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5546 | return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5547 | } |
| 5548 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5549 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5550 | unsigned OpcIn, |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5551 | ExprArg InputArg) { |
| 5552 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5553 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5554 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5555 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5556 | QualType resultType; |
| 5557 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5558 | case UnaryOperator::OffsetOf: |
| 5559 | assert(false && "Invalid unary operator"); |
| 5560 | break; |
| 5561 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5562 | case UnaryOperator::PreInc: |
| 5563 | case UnaryOperator::PreDec: |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5564 | case UnaryOperator::PostInc: |
| 5565 | case UnaryOperator::PostDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5566 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5567 | Opc == UnaryOperator::PreInc || |
| 5568 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5569 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5570 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5571 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 5572 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5573 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 5574 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5575 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 5576 | break; |
| 5577 | case UnaryOperator::Plus: |
| 5578 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5579 | UsualUnaryConversions(Input); |
| 5580 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5581 | if (resultType->isDependentType()) |
| 5582 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5583 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 5584 | break; |
| 5585 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 5586 | resultType->isEnumeralType()) |
| 5587 | break; |
| 5588 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 5589 | Opc == UnaryOperator::Plus && |
| 5590 | resultType->isPointerType()) |
| 5591 | break; |
| 5592 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5593 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5594 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5595 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5596 | UsualUnaryConversions(Input); |
| 5597 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5598 | if (resultType->isDependentType()) |
| 5599 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5600 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 5601 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 5602 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5603 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5604 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5605 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5606 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5607 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5608 | break; |
| 5609 | case UnaryOperator::LNot: // logical negation |
| 5610 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5611 | DefaultFunctionArrayConversion(Input); |
| 5612 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5613 | if (resultType->isDependentType()) |
| 5614 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5615 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5616 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5617 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5618 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5619 | // In C++, it's bool. C++ 5.3.1p8 |
| 5620 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5621 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5622 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5623 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 5624 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5625 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5626 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5627 | resultType = Input->getType(); |
| 5628 | break; |
| 5629 | } |
| 5630 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5631 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5632 | |
| 5633 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5634 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5635 | } |
| 5636 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5637 | Action::OwningExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5638 | UnaryOperator::Opcode Opc, |
| 5639 | ExprArg input) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5640 | Expr *Input = (Expr*)input.get(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5641 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 5642 | // Find all of the overloaded operators visible from this |
| 5643 | // point. We perform both an operator-name lookup from the local |
| 5644 | // scope and an argument-dependent lookup based on the types of |
| 5645 | // the arguments. |
| 5646 | FunctionSet Functions; |
| 5647 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 5648 | if (OverOp != OO_None) { |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5649 | if (S) |
| 5650 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 5651 | Functions); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5652 | DeclarationName OpName |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5653 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5654 | ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5655 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5656 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5657 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 5658 | } |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5659 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5660 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 5661 | } |
| 5662 | |
Douglas Gregor | 6ca7cfb | 2009-11-05 00:51:44 +0000 | [diff] [blame] | 5663 | // Unary Operators. 'Tok' is the token for the operator. |
| 5664 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5665 | tok::TokenKind Op, ExprArg input) { |
| 5666 | return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), move(input)); |
| 5667 | } |
| 5668 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 5669 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5670 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 5671 | SourceLocation LabLoc, |
| 5672 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5673 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 5674 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5675 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 5676 | // If we haven't seen this label yet, create a forward reference. It |
| 5677 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5678 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5679 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5680 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5681 | // 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] | 5682 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5683 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5684 | } |
| 5685 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5686 | Sema::OwningExprResult |
| 5687 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5688 | SourceLocation RPLoc) { // "({..})" |
| 5689 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5690 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5691 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5692 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5693 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5694 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5695 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5696 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5697 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5698 | // example, it is not possible to goto into a stmt expression apparently. |
| 5699 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5700 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5701 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5702 | // as the type of the stmtexpr. |
| 5703 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5704 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5705 | if (!Compound->body_empty()) { |
| 5706 | Stmt *LastStmt = Compound->body_back(); |
| 5707 | // If LastStmt is a label, skip down through into the body. |
| 5708 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5709 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5710 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5711 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5712 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5713 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5714 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5715 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5716 | // expressions are not lvalues. |
| 5717 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5718 | substmt.release(); |
| 5719 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5720 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5721 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5722 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5723 | SourceLocation BuiltinLoc, |
| 5724 | SourceLocation TypeLoc, |
| 5725 | TypeTy *argty, |
| 5726 | OffsetOfComponent *CompPtr, |
| 5727 | unsigned NumComponents, |
| 5728 | SourceLocation RPLoc) { |
| 5729 | // FIXME: This function leaks all expressions in the offset components on |
| 5730 | // error. |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5731 | // FIXME: Preserve type source info. |
| 5732 | QualType ArgTy = GetTypeFromParser(argty); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5733 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5734 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5735 | bool Dependent = ArgTy->isDependentType(); |
| 5736 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5737 | // We must have at least one component that refers to the type, and the first |
| 5738 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5739 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5740 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5741 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5742 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5743 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5744 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5745 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5746 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5747 | // the offsetof designators. |
| 5748 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5749 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5750 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5751 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5752 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5753 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5754 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5755 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5756 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5757 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5758 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5759 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5760 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5761 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5762 | bool DidWarnAboutNonPOD = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5763 | |
John McCall | d00f200 | 2009-11-04 03:03:43 +0000 | [diff] [blame] | 5764 | if (RequireCompleteType(TypeLoc, Res->getType(), |
| 5765 | diag::err_offsetof_incomplete_type)) |
| 5766 | return ExprError(); |
| 5767 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5768 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5769 | // leaks like a sieve. |
| 5770 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5771 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5772 | if (OC.isBrackets) { |
| 5773 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5774 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5775 | if (!AT) { |
| 5776 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5777 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5778 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5779 | } |
| 5780 | |
| 5781 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5782 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5783 | // Promote the array so it looks more like a normal array subscript |
| 5784 | // expression. |
| 5785 | DefaultFunctionArrayConversion(Res); |
| 5786 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5787 | // C99 6.5.2.1p1 |
| 5788 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5789 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5790 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5791 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5792 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5793 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5794 | |
| 5795 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5796 | OC.LocEnd); |
| 5797 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5798 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5799 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5800 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5801 | if (!RC) { |
| 5802 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5803 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5804 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5805 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5806 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5807 | // Get the decl corresponding to this. |
| 5808 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5809 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5810 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5811 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5812 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5813 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5814 | DidWarnAboutNonPOD = true; |
| 5815 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5816 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5817 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5818 | LookupResult R; |
| 5819 | LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName); |
| 5820 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5821 | FieldDecl *MemberDecl |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5822 | = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context)); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5823 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5824 | if (!MemberDecl) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 5825 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 5826 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5827 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5828 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5829 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5830 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5831 | Res = BuildAnonymousStructUnionMemberReference( |
| 5832 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5833 | } else { |
| 5834 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5835 | // doesn't matter here. |
| 5836 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5837 | MemberDecl->getType().getNonReferenceType()); |
| 5838 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5839 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5840 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5841 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5842 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5843 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5844 | } |
| 5845 | |
| 5846 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5847 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5848 | TypeTy *arg1,TypeTy *arg2, |
| 5849 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5850 | // FIXME: Preserve type source info. |
| 5851 | QualType argT1 = GetTypeFromParser(arg1); |
| 5852 | QualType argT2 = GetTypeFromParser(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5853 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5854 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5855 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5856 | if (getLangOptions().CPlusPlus) { |
| 5857 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5858 | << SourceRange(BuiltinLoc, RPLoc); |
| 5859 | return ExprError(); |
| 5860 | } |
| 5861 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5862 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5863 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5864 | } |
| 5865 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5866 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5867 | ExprArg cond, |
| 5868 | ExprArg expr1, ExprArg expr2, |
| 5869 | SourceLocation RPLoc) { |
| 5870 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5871 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5872 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5873 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5874 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5875 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5876 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5877 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5878 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5879 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5880 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5881 | } else { |
| 5882 | // The conditional expression is required to be a constant expression. |
| 5883 | llvm::APSInt condEval(32); |
| 5884 | SourceLocation ExpLoc; |
| 5885 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5886 | return ExprError(Diag(ExpLoc, |
| 5887 | diag::err_typecheck_choose_expr_requires_constant) |
| 5888 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5889 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5890 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5891 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5892 | ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent() |
| 5893 | : RHSExpr->isValueDependent(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5894 | } |
| 5895 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5896 | cond.release(); expr1.release(); expr2.release(); |
| 5897 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5898 | resType, RPLoc, |
| 5899 | resType->isDependentType(), |
| 5900 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5901 | } |
| 5902 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5903 | //===----------------------------------------------------------------------===// |
| 5904 | // Clang Extensions. |
| 5905 | //===----------------------------------------------------------------------===// |
| 5906 | |
| 5907 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5908 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5909 | // Analyze block parameters. |
| 5910 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5911 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5912 | // Add BSI to CurBlock. |
| 5913 | BSI->PrevBlockInfo = CurBlock; |
| 5914 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5915 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5916 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5917 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5918 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | 1d2154c | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 5919 | BSI->hasPrototype = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5920 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5921 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5922 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5923 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5924 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5925 | } |
| 5926 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5927 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5928 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5929 | |
| 5930 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5931 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5932 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5933 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5934 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5935 | if (T->isArrayType()) { |
| 5936 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5937 | diag::err_block_returns_array); |
| 5938 | return; |
| 5939 | } |
| 5940 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5941 | // The parameter list is optional, if there was none, assume (). |
| 5942 | if (!T->isFunctionType()) |
| 5943 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5944 | |
| 5945 | CurBlock->hasPrototype = true; |
| 5946 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5947 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5948 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5949 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5950 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5951 | // FIXME: remove the attribute. |
| 5952 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5953 | QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5954 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5955 | // Do not allow returning a objc interface by-value. |
| 5956 | if (RetTy->isObjCInterfaceType()) { |
| 5957 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5958 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5959 | return; |
| 5960 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5961 | return; |
| 5962 | } |
| 5963 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5964 | // Analyze arguments to block. |
| 5965 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5966 | "Not a function declarator!"); |
| 5967 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5968 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5969 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5970 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5971 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5972 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5973 | // no arguments, not a function that takes a single void argument. |
| 5974 | if (FTI.hasPrototype && |
| 5975 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5976 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5977 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5978 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5979 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5980 | } else if (FTI.hasPrototype) { |
| 5981 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5982 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5983 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5984 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5985 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5986 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5987 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5988 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5989 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5990 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5991 | // If this has an identifier, add it to the scope stack. |
| 5992 | if ((*AI)->getIdentifier()) |
| 5993 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5994 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5995 | // Check for a valid sentinel attribute on this block. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5996 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5997 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5998 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5999 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 6000 | // FIXME: remove the attribute. |
| 6001 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6002 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6003 | // Analyze the return type. |
| 6004 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 6005 | QualType RetTy = T->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6006 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 6007 | // Do not allow returning a objc interface by-value. |
| 6008 | if (RetTy->isObjCInterfaceType()) { |
| 6009 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 6010 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 6011 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6012 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6013 | } |
| 6014 | |
| 6015 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 6016 | /// is invoked to pop the information about the block from the action impl. |
| 6017 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 6018 | // Ensure that CurBlock is deleted. |
| 6019 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6020 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6021 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 6022 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6023 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 6024 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6025 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6026 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6027 | } |
| 6028 | |
| 6029 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 6030 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6031 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 6032 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 6033 | // If blocks are disabled, emit an error. |
| 6034 | if (!LangOpts.Blocks) |
| 6035 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6036 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6037 | // Ensure that CurBlock is deleted. |
| 6038 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6039 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6040 | PopDeclContext(); |
| 6041 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6042 | // Pop off CurBlock, handle nested blocks. |
| 6043 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6044 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6045 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6046 | if (!BSI->ReturnType.isNull()) |
| 6047 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6048 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6049 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 6050 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 6051 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6052 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6053 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6054 | QualType BlockTy; |
| 6055 | if (!BSI->hasPrototype) |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6056 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 6057 | NoReturn); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6058 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6059 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6060 | BSI->isVariadic, 0, false, false, 0, 0, |
| 6061 | NoReturn); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6062 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6063 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6064 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6065 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6066 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6067 | // If needed, diagnose invalid gotos and switches in the block. |
| 6068 | if (CurFunctionNeedsScopeChecking) |
| 6069 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 6070 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6071 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 6072 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6073 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6074 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 6075 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6076 | } |
| 6077 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6078 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 6079 | ExprArg expr, TypeTy *type, |
| 6080 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6081 | QualType T = GetTypeFromParser(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6082 | Expr *E = static_cast<Expr*>(expr.get()); |
| 6083 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6084 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6085 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6086 | |
| 6087 | // Get the va_list type |
| 6088 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6089 | if (VaListType->isArrayType()) { |
| 6090 | // Deal with implicit array decay; for example, on x86-64, |
| 6091 | // va_list is an array, but it's supposed to decay to |
| 6092 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6093 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6094 | // Make sure the input expression also decays appropriately. |
| 6095 | UsualUnaryConversions(E); |
| 6096 | } else { |
| 6097 | // Otherwise, the va_list argument must be an l-value because |
| 6098 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6099 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6100 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6101 | return ExprError(); |
| 6102 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6103 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6104 | if (!E->isTypeDependent() && |
| 6105 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6106 | return ExprError(Diag(E->getLocStart(), |
| 6107 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6108 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 6109 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6110 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6111 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6112 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6113 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6114 | expr.release(); |
| 6115 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 6116 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6117 | } |
| 6118 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6119 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6120 | // The type of __null will be int or long, depending on the size of |
| 6121 | // pointers on the target. |
| 6122 | QualType Ty; |
| 6123 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 6124 | Ty = Context.IntTy; |
| 6125 | else |
| 6126 | Ty = Context.LongTy; |
| 6127 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6128 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6129 | } |
| 6130 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6131 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 6132 | SourceLocation Loc, |
| 6133 | QualType DstType, QualType SrcType, |
| 6134 | Expr *SrcExpr, const char *Flavor) { |
| 6135 | // Decode the result (notice that AST's are still created for extensions). |
| 6136 | bool isInvalid = false; |
| 6137 | unsigned DiagKind; |
| 6138 | switch (ConvTy) { |
| 6139 | default: assert(0 && "Unknown conversion type"); |
| 6140 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6141 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6142 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 6143 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6144 | case IntToPointer: |
| 6145 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 6146 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6147 | case IncompatiblePointer: |
| 6148 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 6149 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 6150 | case IncompatiblePointerSign: |
| 6151 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 6152 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6153 | case FunctionVoidPointer: |
| 6154 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 6155 | break; |
| 6156 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 6157 | // If the qualifiers lost were because we were applying the |
| 6158 | // (deprecated) C++ conversion from a string literal to a char* |
| 6159 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 6160 | // Ideally, this check would be performed in |
| 6161 | // CheckPointerTypesForAssignment. However, that would require a |
| 6162 | // bit of refactoring (so that the second argument is an |
| 6163 | // expression, rather than a type), which should be done as part |
| 6164 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 6165 | // C++ semantics. |
| 6166 | if (getLangOptions().CPlusPlus && |
| 6167 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 6168 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6169 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 6170 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6171 | case IntToBlockPointer: |
| 6172 | DiagKind = diag::err_int_to_block_pointer; |
| 6173 | break; |
| 6174 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 6175 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6176 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6177 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6178 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6179 | // it can give a more specific diagnostic. |
| 6180 | DiagKind = diag::warn_incompatible_qualified_id; |
| 6181 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 6182 | case IncompatibleVectors: |
| 6183 | DiagKind = diag::warn_incompatible_vectors; |
| 6184 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6185 | case Incompatible: |
| 6186 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 6187 | isInvalid = true; |
| 6188 | break; |
| 6189 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6190 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 6191 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 6192 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6193 | return isInvalid; |
| 6194 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6195 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 6196 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6197 | llvm::APSInt ICEResult; |
| 6198 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 6199 | if (Result) |
| 6200 | *Result = ICEResult; |
| 6201 | return false; |
| 6202 | } |
| 6203 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6204 | Expr::EvalResult EvalResult; |
| 6205 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6206 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6207 | EvalResult.HasSideEffects) { |
| 6208 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 6209 | |
| 6210 | if (EvalResult.Diag) { |
| 6211 | // We only show the note if it's not the usual "invalid subexpression" |
| 6212 | // or if it's actually in a subexpression. |
| 6213 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 6214 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 6215 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 6216 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6217 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6218 | return true; |
| 6219 | } |
| 6220 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6221 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 6222 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6223 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6224 | if (EvalResult.Diag && |
| 6225 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 6226 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6227 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6228 | if (Result) |
| 6229 | *Result = EvalResult.Val.getInt(); |
| 6230 | return false; |
| 6231 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6232 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6233 | Sema::ExpressionEvaluationContext |
| 6234 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6235 | // Introduce a new set of potentially referenced declarations to the stack. |
| 6236 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 6237 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6238 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6239 | std::swap(ExprEvalContext, NewContext); |
| 6240 | return NewContext; |
| 6241 | } |
| 6242 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6243 | void |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6244 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 6245 | ExpressionEvaluationContext NewContext) { |
| 6246 | ExprEvalContext = NewContext; |
| 6247 | |
| 6248 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 6249 | // Mark any remaining declarations in the current position of the stack |
| 6250 | // as "referenced". If they were not meant to be referenced, semantic |
| 6251 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 6252 | PotentiallyReferencedDecls RemainingDecls; |
| 6253 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 6254 | PotentiallyReferencedDeclStack.pop_back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6255 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6256 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 6257 | IEnd = RemainingDecls.end(); |
| 6258 | I != IEnd; ++I) |
| 6259 | MarkDeclarationReferenced(I->first, I->second); |
| 6260 | } |
| 6261 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6262 | |
| 6263 | /// \brief Note that the given declaration was referenced in the source code. |
| 6264 | /// |
| 6265 | /// This routine should be invoke whenever a given declaration is referenced |
| 6266 | /// in the source code, and where that reference occurred. If this declaration |
| 6267 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 6268 | /// C99 6.9p3), then the declaration will be marked as used. |
| 6269 | /// |
| 6270 | /// \param Loc the location where the declaration was referenced. |
| 6271 | /// |
| 6272 | /// \param D the declaration that has been referenced by the source code. |
| 6273 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 6274 | assert(D && "No declaration?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6275 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6276 | if (D->isUsed()) |
| 6277 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6278 | |
Douglas Gregor | b5352cf | 2009-10-08 21:35:42 +0000 | [diff] [blame] | 6279 | // Mark a parameter or variable declaration "used", regardless of whether we're in a |
| 6280 | // template or not. The reason for this is that unevaluated expressions |
| 6281 | // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and |
| 6282 | // -Wunused-parameters) |
| 6283 | if (isa<ParmVarDecl>(D) || |
| 6284 | (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6285 | D->setUsed(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6286 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6287 | // Do not mark anything as "used" within a dependent context; wait for |
| 6288 | // an instantiation. |
| 6289 | if (CurContext->isDependentContext()) |
| 6290 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6291 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6292 | switch (ExprEvalContext) { |
| 6293 | case Unevaluated: |
| 6294 | // We are in an expression that is not potentially evaluated; do nothing. |
| 6295 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6296 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6297 | case PotentiallyEvaluated: |
| 6298 | // We are in a potentially-evaluated expression, so this declaration is |
| 6299 | // "used"; handle this below. |
| 6300 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6301 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6302 | case PotentiallyPotentiallyEvaluated: |
| 6303 | // We are in an expression that may be potentially evaluated; queue this |
| 6304 | // declaration reference until we know whether the expression is |
| 6305 | // potentially evaluated. |
| 6306 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 6307 | return; |
| 6308 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6309 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6310 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 6311 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6312 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 6313 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 6314 | if (!Constructor->isUsed()) |
| 6315 | DefineImplicitDefaultConstructor(Loc, Constructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6316 | } else if (Constructor->isImplicit() && |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 6317 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6318 | if (!Constructor->isUsed()) |
| 6319 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 6320 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 6321 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 6322 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 6323 | DefineImplicitDestructor(Loc, Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6324 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 6325 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 6326 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 6327 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 6328 | if (!MethodDecl->isUsed()) |
| 6329 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 6330 | } |
| 6331 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 6332 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6333 | // Implicit instantiation of function templates and member functions of |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 6334 | // class templates. |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6335 | if (!Function->getBody() && Function->isImplicitlyInstantiable()) { |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6336 | bool AlreadyInstantiated = false; |
| 6337 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 6338 | = Function->getTemplateSpecializationInfo()) { |
| 6339 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 6340 | SpecInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6341 | else if (SpecInfo->getTemplateSpecializationKind() |
| 6342 | == TSK_ImplicitInstantiation) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6343 | AlreadyInstantiated = true; |
| 6344 | } else if (MemberSpecializationInfo *MSInfo |
| 6345 | = Function->getMemberSpecializationInfo()) { |
| 6346 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
| 6347 | MSInfo->setPointOfInstantiation(Loc); |
Douglas Gregor | 3b846b6 | 2009-10-27 20:53:28 +0000 | [diff] [blame] | 6348 | else if (MSInfo->getTemplateSpecializationKind() |
| 6349 | == TSK_ImplicitInstantiation) |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6350 | AlreadyInstantiated = true; |
| 6351 | } |
| 6352 | |
| 6353 | if (!AlreadyInstantiated) |
| 6354 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
| 6355 | } |
| 6356 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6357 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6358 | Function->setUsed(true); |
| 6359 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6360 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6361 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6362 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6363 | // Implicit instantiation of static data members of class templates. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6364 | if (Var->isStaticDataMember() && |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6365 | Var->getInstantiatedFromStaticDataMember()) { |
| 6366 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 6367 | assert(MSInfo && "Missing member specialization information?"); |
| 6368 | if (MSInfo->getPointOfInstantiation().isInvalid() && |
| 6369 | MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { |
| 6370 | MSInfo->setPointOfInstantiation(Loc); |
| 6371 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 6372 | } |
| 6373 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6374 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6375 | // FIXME: keep track of references to static data? |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6376 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6377 | D->setUsed(true); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6378 | return; |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 6379 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6380 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 6381 | |
| 6382 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 6383 | CallExpr *CE, FunctionDecl *FD) { |
| 6384 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 6385 | return false; |
| 6386 | |
| 6387 | PartialDiagnostic Note = |
| 6388 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 6389 | << FD->getDeclName() : PDiag(); |
| 6390 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
| 6391 | |
| 6392 | if (RequireCompleteType(Loc, ReturnType, |
| 6393 | FD ? |
| 6394 | PDiag(diag::err_call_function_incomplete_return) |
| 6395 | << CE->getSourceRange() << FD->getDeclName() : |
| 6396 | PDiag(diag::err_call_incomplete_return) |
| 6397 | << CE->getSourceRange(), |
| 6398 | std::make_pair(NoteLoc, Note))) |
| 6399 | return true; |
| 6400 | |
| 6401 | return false; |
| 6402 | } |
| 6403 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6404 | // Diagnose the common s/=/==/ typo. Note that adding parentheses |
| 6405 | // will prevent this condition from triggering, which is what we want. |
| 6406 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 6407 | SourceLocation Loc; |
| 6408 | |
| 6409 | if (isa<BinaryOperator>(E)) { |
| 6410 | BinaryOperator *Op = cast<BinaryOperator>(E); |
| 6411 | if (Op->getOpcode() != BinaryOperator::Assign) |
| 6412 | return; |
| 6413 | |
| 6414 | Loc = Op->getOperatorLoc(); |
| 6415 | } else if (isa<CXXOperatorCallExpr>(E)) { |
| 6416 | CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E); |
| 6417 | if (Op->getOperator() != OO_Equal) |
| 6418 | return; |
| 6419 | |
| 6420 | Loc = Op->getOperatorLoc(); |
| 6421 | } else { |
| 6422 | // Not an assignment. |
| 6423 | return; |
| 6424 | } |
| 6425 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6426 | SourceLocation Open = E->getSourceRange().getBegin(); |
John McCall | 2d15215 | 2009-10-12 22:25:59 +0000 | [diff] [blame] | 6427 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6428 | |
| 6429 | Diag(Loc, diag::warn_condition_is_assignment) |
| 6430 | << E->getSourceRange() |
| 6431 | << CodeModificationHint::CreateInsertion(Open, "(") |
| 6432 | << CodeModificationHint::CreateInsertion(Close, ")"); |
| 6433 | } |
| 6434 | |
| 6435 | bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) { |
| 6436 | DiagnoseAssignmentAsCondition(E); |
| 6437 | |
| 6438 | if (!E->isTypeDependent()) { |
| 6439 | DefaultFunctionArrayConversion(E); |
| 6440 | |
| 6441 | QualType T = E->getType(); |
| 6442 | |
| 6443 | if (getLangOptions().CPlusPlus) { |
| 6444 | if (CheckCXXBooleanCondition(E)) // C++ 6.4p4 |
| 6445 | return true; |
| 6446 | } else if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 6447 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 6448 | << T << E->getSourceRange(); |
| 6449 | return true; |
| 6450 | } |
| 6451 | } |
| 6452 | |
| 6453 | return false; |
| 6454 | } |