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 | /// |
| 46 | bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc, |
| 47 | bool IgnoreDeprecated) { |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 48 | // See if the decl is deprecated. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 49 | if (D->getAttr<DeprecatedAttr>()) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 50 | // Implementing deprecated stuff requires referencing deprecated |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 51 | // stuff. Don't warn if we are implementing a deprecated construct. |
| 52 | bool isSilenced = IgnoreDeprecated; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 53 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 54 | if (NamedDecl *ND = getCurFunctionOrMethodDecl()) { |
| 55 | // If this reference happens *in* a deprecated function or method, don't |
| 56 | // warn. |
Chris Lattner | 5233826 | 2009-10-25 22:31:57 +0000 | [diff] [blame] | 57 | isSilenced |= ND->getAttr<DeprecatedAttr>() != 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 58 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 59 | // If this is an Objective-C method implementation, check to see if the |
| 60 | // method was deprecated on the declaration, not the definition. |
| 61 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) { |
| 62 | // The semantic decl context of a ObjCMethodDecl is the |
| 63 | // ObjCImplementationDecl. |
| 64 | if (ObjCImplementationDecl *Impl |
| 65 | = dyn_cast<ObjCImplementationDecl>(MD->getParent())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 66 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 67 | MD = Impl->getClassInterface()->getMethod(MD->getSelector(), |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 68 | MD->isInstanceMethod()); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 69 | isSilenced |= MD && MD->getAttr<DeprecatedAttr>(); |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 73 | |
Chris Lattner | f15970c | 2009-02-16 19:35:30 +0000 | [diff] [blame] | 74 | if (!isSilenced) |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 75 | Diag(Loc, diag::warn_deprecated) << D->getDeclName(); |
| 76 | } |
| 77 | |
Chris Lattner | ffb9368 | 2009-10-25 17:21:40 +0000 | [diff] [blame] | 78 | // See if the decl is unavailable |
| 79 | if (D->getAttr<UnavailableAttr>()) { |
| 80 | Diag(Loc, diag::warn_unavailable) << D->getDeclName(); |
| 81 | Diag(D->getLocation(), diag::note_unavailable_here) << 0; |
| 82 | } |
| 83 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 84 | // See if this is a deleted function. |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 85 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 86 | if (FD->isDeleted()) { |
| 87 | Diag(Loc, diag::err_deleted_function_use); |
| 88 | Diag(D->getLocation(), diag::note_unavailable_here) << true; |
| 89 | return true; |
| 90 | } |
Douglas Gregor | 25d944a | 2009-02-24 04:26:15 +0000 | [diff] [blame] | 91 | } |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 92 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 93 | return false; |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 94 | } |
| 95 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 96 | /// DiagnoseSentinelCalls - This routine checks on method dispatch calls |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 97 | /// (and other functions in future), which have been declared with sentinel |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 98 | /// attribute. It warns if call does not have the sentinel argument. |
| 99 | /// |
| 100 | void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 101 | Expr **Args, unsigned NumArgs) { |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 102 | const SentinelAttr *attr = D->getAttr<SentinelAttr>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 103 | if (!attr) |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 104 | return; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 105 | int sentinelPos = attr->getSentinel(); |
| 106 | int nullPos = attr->getNullPos(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 108 | // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common |
| 109 | // 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] | 110 | unsigned int i = 0; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 111 | bool warnNotEnoughArgs = false; |
| 112 | int isMethod = 0; |
| 113 | if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 114 | // skip over named parameters. |
| 115 | ObjCMethodDecl::param_iterator P, E = MD->param_end(); |
| 116 | for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 117 | if (nullPos) |
| 118 | --nullPos; |
| 119 | else |
| 120 | ++i; |
| 121 | } |
| 122 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
| 123 | isMethod = 1; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 124 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 125 | // skip over named parameters. |
| 126 | ObjCMethodDecl::param_iterator P, E = FD->param_end(); |
| 127 | for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) { |
| 128 | if (nullPos) |
| 129 | --nullPos; |
| 130 | else |
| 131 | ++i; |
| 132 | } |
| 133 | warnNotEnoughArgs = (P != E || i >= NumArgs); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 134 | } else if (VarDecl *V = dyn_cast<VarDecl>(D)) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 135 | // block or function pointer call. |
| 136 | QualType Ty = V->getType(); |
| 137 | if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 138 | const FunctionType *FT = Ty->isFunctionPointerType() |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 139 | ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>() |
| 140 | : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>(); |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 141 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) { |
| 142 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 143 | unsigned k; |
| 144 | for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) { |
| 145 | if (nullPos) |
| 146 | --nullPos; |
| 147 | else |
| 148 | ++i; |
| 149 | } |
| 150 | warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs); |
| 151 | } |
| 152 | if (Ty->isBlockPointerType()) |
| 153 | isMethod = 2; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 154 | } else |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 155 | return; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 156 | } else |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 157 | return; |
| 158 | |
| 159 | if (warnNotEnoughArgs) { |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 160 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 161 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
| 164 | int sentinel = i; |
| 165 | while (sentinelPos > 0 && i < NumArgs-1) { |
| 166 | --sentinelPos; |
| 167 | ++i; |
| 168 | } |
| 169 | if (sentinelPos > 0) { |
| 170 | Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName(); |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 171 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 172 | return; |
| 173 | } |
| 174 | while (i < NumArgs-1) { |
| 175 | ++i; |
| 176 | ++sentinel; |
| 177 | } |
| 178 | Expr *sentinelExpr = Args[sentinel]; |
| 179 | if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() || |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 180 | !sentinelExpr->isNullPointerConstant(Context, |
| 181 | Expr::NPC_ValueDependentIsNull))) { |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 182 | Diag(Loc, diag::warn_missing_sentinel) << isMethod; |
Fariborz Jahanian | 236673e | 2009-05-14 18:00:00 +0000 | [diff] [blame] | 183 | Diag(D->getLocation(), diag::note_sentinel_here) << isMethod; |
Fariborz Jahanian | 88f1ba0 | 2009-05-13 23:20:50 +0000 | [diff] [blame] | 184 | } |
| 185 | return; |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 186 | } |
| 187 | |
Douglas Gregor | 4b2d3f7 | 2009-02-26 21:00:50 +0000 | [diff] [blame] | 188 | SourceRange Sema::getExprRange(ExprTy *E) const { |
| 189 | Expr *Ex = (Expr *)E; |
| 190 | return Ex? Ex->getSourceRange() : SourceRange(); |
| 191 | } |
| 192 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 193 | //===----------------------------------------------------------------------===// |
| 194 | // Standard Promotions and Conversions |
| 195 | //===----------------------------------------------------------------------===// |
| 196 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 197 | /// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4). |
| 198 | void Sema::DefaultFunctionArrayConversion(Expr *&E) { |
| 199 | QualType Ty = E->getType(); |
| 200 | assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type"); |
| 201 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 202 | if (Ty->isFunctionType()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 203 | ImpCastExprToType(E, Context.getPointerType(Ty), |
Anders Carlsson | b633c4e | 2009-09-01 20:37:18 +0000 | [diff] [blame] | 204 | CastExpr::CK_FunctionToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 205 | else if (Ty->isArrayType()) { |
| 206 | // In C90 mode, arrays only promote to pointers if the array expression is |
| 207 | // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has |
| 208 | // type 'array of type' is converted to an expression that has type 'pointer |
| 209 | // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression |
| 210 | // that has type 'array of type' ...". The relevant change is "an lvalue" |
| 211 | // (C90) to "an expression" (C99). |
Argyrios Kyrtzidis | c39a3d7 | 2008-09-11 04:25:59 +0000 | [diff] [blame] | 212 | // |
| 213 | // C++ 4.2p1: |
| 214 | // An lvalue or rvalue of type "array of N T" or "array of unknown bound of |
| 215 | // T" can be converted to an rvalue of type "pointer to T". |
| 216 | // |
| 217 | if (getLangOptions().C99 || getLangOptions().CPlusPlus || |
| 218 | E->isLvalue(Context) == Expr::LV_Valid) |
Anders Carlsson | 112a0a8 | 2009-08-07 23:48:20 +0000 | [diff] [blame] | 219 | ImpCastExprToType(E, Context.getArrayDecayedType(Ty), |
| 220 | CastExpr::CK_ArrayToPointerDecay); |
Chris Lattner | 67d33d8 | 2008-07-25 21:33:13 +0000 | [diff] [blame] | 221 | } |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 222 | } |
| 223 | |
| 224 | /// UsualUnaryConversions - Performs various conversions that are common to most |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 225 | /// operators (C99 6.3). The conversions of array and function types are |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 226 | /// sometimes surpressed. For example, the array->pointer conversion doesn't |
| 227 | /// apply if the array is an argument to the sizeof or address (&) operators. |
| 228 | /// In these instances, this routine should *not* be called. |
| 229 | Expr *Sema::UsualUnaryConversions(Expr *&Expr) { |
| 230 | QualType Ty = Expr->getType(); |
| 231 | assert(!Ty.isNull() && "UsualUnaryConversions - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 232 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 233 | // C99 6.3.1.1p2: |
| 234 | // |
| 235 | // The following may be used in an expression wherever an int or |
| 236 | // unsigned int may be used: |
| 237 | // - an object or expression with an integer type whose integer |
| 238 | // conversion rank is less than or equal to the rank of int |
| 239 | // and unsigned int. |
| 240 | // - A bit-field of type _Bool, int, signed int, or unsigned int. |
| 241 | // |
| 242 | // If an int can represent all values of the original type, the |
| 243 | // value is converted to an int; otherwise, it is converted to an |
| 244 | // unsigned int. These are called the integer promotions. All |
| 245 | // other types are unchanged by the integer promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 246 | QualType PTy = Context.isPromotableBitField(Expr); |
| 247 | if (!PTy.isNull()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 248 | ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast); |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 249 | return Expr; |
| 250 | } |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 251 | if (Ty->isPromotableIntegerType()) { |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 252 | QualType PT = Context.getPromotedIntegerType(Ty); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 253 | ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast); |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 254 | return Expr; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Douglas Gregor | fc24e44 | 2009-05-01 20:41:21 +0000 | [diff] [blame] | 257 | DefaultFunctionArrayConversion(Expr); |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 258 | return Expr; |
| 259 | } |
| 260 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 261 | /// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 262 | /// 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] | 263 | /// double. All other argument types are converted by UsualUnaryConversions(). |
| 264 | void Sema::DefaultArgumentPromotion(Expr *&Expr) { |
| 265 | QualType Ty = Expr->getType(); |
| 266 | assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 267 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 268 | // If this is a 'float' (CVR qualified or typedef) promote to double. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 269 | if (const BuiltinType *BT = Ty->getAs<BuiltinType>()) |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 270 | if (BT->getKind() == BuiltinType::Float) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 271 | return ImpCastExprToType(Expr, Context.DoubleTy, |
| 272 | CastExpr::CK_FloatingCast); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 273 | |
Chris Lattner | 05faf17 | 2008-07-25 22:25:12 +0000 | [diff] [blame] | 274 | UsualUnaryConversions(Expr); |
| 275 | } |
| 276 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 277 | /// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but |
| 278 | /// will warn if the resulting type is not a POD type, and rejects ObjC |
| 279 | /// interfaces passed by value. This returns true if the argument type is |
| 280 | /// completely illegal. |
| 281 | bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 282 | DefaultArgumentPromotion(Expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 284 | if (Expr->getType()->isObjCInterfaceType()) { |
| 285 | Diag(Expr->getLocStart(), |
| 286 | diag::err_cannot_pass_objc_interface_to_vararg) |
| 287 | << Expr->getType() << CT; |
| 288 | return true; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 289 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 290 | |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 291 | if (!Expr->getType()->isPODType()) |
| 292 | Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg) |
| 293 | << Expr->getType() << CT; |
| 294 | |
| 295 | return false; |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 296 | } |
| 297 | |
| 298 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 299 | /// UsualArithmeticConversions - Performs various conversions that are common to |
| 300 | /// 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] | 301 | /// routine returns the first non-arithmetic type found. The client is |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 302 | /// responsible for emitting appropriate error diagnostics. |
| 303 | /// FIXME: verify the conversion rules for "complex int" are consistent with |
| 304 | /// GCC. |
| 305 | QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr, |
| 306 | bool isCompAssign) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 307 | if (!isCompAssign) |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 308 | UsualUnaryConversions(lhsExpr); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 309 | |
| 310 | UsualUnaryConversions(rhsExpr); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 311 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 312 | // For conversion purposes, we ignore any qualifiers. |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 313 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 314 | QualType lhs = |
| 315 | Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 316 | QualType rhs = |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 317 | Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType(); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 318 | |
| 319 | // If both types are identical, no conversion is needed. |
| 320 | if (lhs == rhs) |
| 321 | return lhs; |
| 322 | |
| 323 | // If either side is a non-arithmetic type (e.g. a pointer), we are done. |
| 324 | // The caller can deal with this (e.g. pointer + int). |
| 325 | if (!lhs->isArithmeticType() || !rhs->isArithmeticType()) |
| 326 | return lhs; |
| 327 | |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 328 | // Perform bitfield promotions. |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 329 | QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 330 | if (!LHSBitfieldPromoteTy.isNull()) |
| 331 | lhs = LHSBitfieldPromoteTy; |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 332 | QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 333 | if (!RHSBitfieldPromoteTy.isNull()) |
| 334 | rhs = RHSBitfieldPromoteTy; |
| 335 | |
Eli Friedman | a95d757 | 2009-08-19 07:44:53 +0000 | [diff] [blame] | 336 | QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 337 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 338 | ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown); |
| 339 | ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 340 | return destType; |
| 341 | } |
| 342 | |
Chris Lattner | e7a2e91 | 2008-07-25 21:10:04 +0000 | [diff] [blame] | 343 | //===----------------------------------------------------------------------===// |
| 344 | // Semantic Analysis for various Expression Types |
| 345 | //===----------------------------------------------------------------------===// |
| 346 | |
| 347 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 348 | /// ActOnStringLiteral - The specified tokens were lexed as pasted string |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 349 | /// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string |
| 350 | /// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from |
| 351 | /// multiple tokens. However, the common case is that StringToks points to one |
| 352 | /// string. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 353 | /// |
| 354 | Action::OwningExprResult |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 355 | Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 356 | assert(NumStringToks && "Must have at least one string!"); |
| 357 | |
Chris Lattner | bbee00b | 2009-01-16 18:51:42 +0000 | [diff] [blame] | 358 | StringLiteralParser Literal(StringToks, NumStringToks, PP); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 359 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 360 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 361 | |
| 362 | llvm::SmallVector<SourceLocation, 4> StringTokLocs; |
| 363 | for (unsigned i = 0; i != NumStringToks; ++i) |
| 364 | StringTokLocs.push_back(StringToks[i].getLocation()); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 365 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 366 | QualType StrTy = Context.CharTy; |
Argyrios Kyrtzidis | 55f4b02 | 2008-08-09 17:20:01 +0000 | [diff] [blame] | 367 | if (Literal.AnyWide) StrTy = Context.getWCharType(); |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 368 | if (Literal.Pascal) StrTy = Context.UnsignedCharTy; |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 369 | |
| 370 | // A C++ string literal has a const-qualified element type (C++ 2.13.4p1). |
| 371 | if (getLangOptions().CPlusPlus) |
| 372 | StrTy.addConst(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 373 | |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 374 | // Get an array type for the string, according to C99 6.4.5. This includes |
| 375 | // the nul terminator character as well as the string length for pascal |
| 376 | // strings. |
| 377 | StrTy = Context.getConstantArrayType(StrTy, |
Chris Lattner | dbb1ecc | 2009-02-26 23:01:51 +0000 | [diff] [blame] | 378 | llvm::APInt(32, Literal.GetNumStringChars()+1), |
Chris Lattner | a7ad98f | 2008-02-11 00:02:17 +0000 | [diff] [blame] | 379 | ArrayType::Normal, 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 381 | // Pass &StringTokLocs[0], StringTokLocs.size() to factory! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 382 | return Owned(StringLiteral::Create(Context, Literal.GetString(), |
Chris Lattner | 2085fd6 | 2009-02-18 06:40:38 +0000 | [diff] [blame] | 383 | Literal.GetStringLength(), |
| 384 | Literal.AnyWide, StrTy, |
| 385 | &StringTokLocs[0], |
| 386 | StringTokLocs.size())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 387 | } |
| 388 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 389 | /// ShouldSnapshotBlockValueReference - Return true if a reference inside of |
| 390 | /// CurBlock to VD should cause it to be snapshotted (as we do for auto |
| 391 | /// variables defined outside the block) or false if this is not needed (e.g. |
| 392 | /// for values inside the block or for globals). |
| 393 | /// |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 394 | /// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records |
| 395 | /// up-to-date. |
| 396 | /// |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 397 | static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock, |
| 398 | ValueDecl *VD) { |
| 399 | // If the value is defined inside the block, we couldn't snapshot it even if |
| 400 | // we wanted to. |
| 401 | if (CurBlock->TheDecl == VD->getDeclContext()) |
| 402 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 403 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 404 | // If this is an enum constant or function, it is constant, don't snapshot. |
| 405 | if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD)) |
| 406 | return false; |
| 407 | |
| 408 | // If this is a reference to an extern, static, or global variable, no need to |
| 409 | // snapshot it. |
| 410 | // FIXME: What about 'const' variables in C++? |
| 411 | if (const VarDecl *Var = dyn_cast<VarDecl>(VD)) |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 412 | if (!Var->hasLocalStorage()) |
| 413 | return false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 414 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 415 | // Blocks that have these can't be constant. |
| 416 | CurBlock->hasBlockDeclRefExprs = true; |
| 417 | |
| 418 | // If we have nested blocks, the decl may be declared in an outer block (in |
| 419 | // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may |
| 420 | // be defined outside all of the current blocks (in which case the blocks do |
| 421 | // all get the bit). Walk the nesting chain. |
| 422 | for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock; |
| 423 | NextBlock = NextBlock->PrevBlockInfo) { |
| 424 | // If we found the defining block for the variable, don't mark the block as |
| 425 | // having a reference outside it. |
| 426 | if (NextBlock->TheDecl == VD->getDeclContext()) |
| 427 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 428 | |
Chris Lattner | 17f3a6d | 2009-04-21 22:26:47 +0000 | [diff] [blame] | 429 | // Otherwise, the DeclRef from the inner block causes the outer one to need |
| 430 | // a snapshot as well. |
| 431 | NextBlock->hasBlockDeclRefExprs = true; |
| 432 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 433 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 434 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 435 | } |
| 436 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 437 | |
| 438 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 439 | /// ActOnIdentifierExpr - The parser read an identifier in expression context, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 440 | /// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this |
Steve Naroff | 0d755ad | 2008-03-19 23:46:26 +0000 | [diff] [blame] | 441 | /// identifier is used in a function call context. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 442 | /// SS is only used for a C++ qualified-id (foo::bar) to indicate the |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 443 | /// class or namespace that the identifier must be a member of. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 444 | Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc, |
| 445 | IdentifierInfo &II, |
| 446 | bool HasTrailingLParen, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 447 | const CXXScopeSpec *SS, |
| 448 | bool isAddressOfOperand) { |
| 449 | return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 450 | isAddressOfOperand); |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 451 | } |
| 452 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 453 | /// BuildDeclRefExpr - Build a DeclRefExpr. |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 454 | Sema::OwningExprResult |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 455 | Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc, |
| 456 | bool TypeDependent, bool ValueDependent, |
| 457 | const CXXScopeSpec *SS) { |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 458 | if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) { |
| 459 | Diag(Loc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 460 | diag::err_auto_variable_cannot_appear_in_own_initializer) |
Anders Carlsson | e2bb224 | 2009-06-26 19:16:07 +0000 | [diff] [blame] | 461 | << D->getDeclName(); |
| 462 | return ExprError(); |
| 463 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 464 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 465 | if (const VarDecl *VD = dyn_cast<VarDecl>(D)) { |
| 466 | if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 467 | if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) { |
| 468 | if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 469 | Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 470 | << D->getIdentifier() << FD->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 471 | Diag(D->getLocation(), diag::note_local_variable_declared_here) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 472 | << D->getIdentifier(); |
| 473 | return ExprError(); |
| 474 | } |
| 475 | } |
| 476 | } |
| 477 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 478 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 479 | MarkDeclarationReferenced(Loc, D); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 480 | |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 481 | return Owned(DeclRefExpr::Create(Context, |
| 482 | SS? (NestedNameSpecifier *)SS->getScopeRep() : 0, |
| 483 | SS? SS->getRange() : SourceRange(), |
| 484 | D, Loc, |
| 485 | Ty, TypeDependent, ValueDependent)); |
Douglas Gregor | 1a49af9 | 2009-01-06 05:10:23 +0000 | [diff] [blame] | 486 | } |
| 487 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 488 | /// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or |
| 489 | /// variable corresponding to the anonymous union or struct whose type |
| 490 | /// is Record. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 491 | static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context, |
| 492 | RecordDecl *Record) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 493 | assert(Record->isAnonymousStructOrUnion() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 494 | "Record must be an anonymous struct or union!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 495 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 496 | // FIXME: Once Decls are directly linked together, this will be an O(1) |
| 497 | // operation rather than a slow walk through DeclContext's vector (which |
| 498 | // itself will be eliminated). DeclGroups might make this even better. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 499 | DeclContext *Ctx = Record->getDeclContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 500 | for (DeclContext::decl_iterator D = Ctx->decls_begin(), |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 501 | DEnd = Ctx->decls_end(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 502 | D != DEnd; ++D) { |
| 503 | if (*D == Record) { |
| 504 | // The object for the anonymous struct/union directly |
| 505 | // follows its type in the list of declarations. |
| 506 | ++D; |
| 507 | assert(D != DEnd && "Missing object for anonymous record"); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 508 | assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed"); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 509 | return *D; |
| 510 | } |
| 511 | } |
| 512 | |
| 513 | assert(false && "Missing object for anonymous record"); |
| 514 | return 0; |
| 515 | } |
| 516 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 517 | /// \brief Given a field that represents a member of an anonymous |
| 518 | /// struct/union, build the path from that field's context to the |
| 519 | /// actual member. |
| 520 | /// |
| 521 | /// Construct the sequence of field member references we'll have to |
| 522 | /// perform to get to the field in the anonymous union/struct. The |
| 523 | /// list of members is built from the field outward, so traverse it |
| 524 | /// backwards to go from an object in the current context to the field |
| 525 | /// we found. |
| 526 | /// |
| 527 | /// \returns The variable from which the field access should begin, |
| 528 | /// for an anonymous struct/union that is not a member of another |
| 529 | /// class. Otherwise, returns NULL. |
| 530 | VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field, |
| 531 | llvm::SmallVectorImpl<FieldDecl *> &Path) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 532 | assert(Field->getDeclContext()->isRecord() && |
| 533 | cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion() |
| 534 | && "Field must be stored inside an anonymous struct or union"); |
| 535 | |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 536 | Path.push_back(Field); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 537 | VarDecl *BaseObject = 0; |
| 538 | DeclContext *Ctx = Field->getDeclContext(); |
| 539 | do { |
| 540 | RecordDecl *Record = cast<RecordDecl>(Ctx); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 541 | Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 542 | if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject)) |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 543 | Path.push_back(AnonField); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 544 | else { |
| 545 | BaseObject = cast<VarDecl>(AnonObject); |
| 546 | break; |
| 547 | } |
| 548 | Ctx = Ctx->getParent(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 549 | } while (Ctx->isRecord() && |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 550 | cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion()); |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 551 | |
| 552 | return BaseObject; |
| 553 | } |
| 554 | |
| 555 | Sema::OwningExprResult |
| 556 | Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc, |
| 557 | FieldDecl *Field, |
| 558 | Expr *BaseObjectExpr, |
| 559 | SourceLocation OpLoc) { |
| 560 | llvm::SmallVector<FieldDecl *, 4> AnonFields; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 561 | VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field, |
Douglas Gregor | ffb4b6e | 2009-04-15 06:41:24 +0000 | [diff] [blame] | 562 | AnonFields); |
| 563 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 564 | // Build the expression that refers to the base object, from |
| 565 | // which we will build a sequence of member references to each |
| 566 | // of the anonymous union objects and, eventually, the field we |
| 567 | // found via name lookup. |
| 568 | bool BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 569 | Qualifiers BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 570 | if (BaseObject) { |
| 571 | // BaseObject is an anonymous struct/union variable (and is, |
| 572 | // therefore, not part of another non-anonymous record). |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 573 | if (BaseObjectExpr) BaseObjectExpr->Destroy(Context); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 574 | MarkDeclarationReferenced(Loc, BaseObject); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 575 | BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 576 | SourceLocation()); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 577 | BaseQuals |
| 578 | = Context.getCanonicalType(BaseObject->getType()).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 579 | } else if (BaseObjectExpr) { |
| 580 | // The caller provided the base object expression. Determine |
| 581 | // whether its a pointer and whether it adds any qualifiers to the |
| 582 | // anonymous struct/union fields we're looking into. |
| 583 | QualType ObjectType = BaseObjectExpr->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 584 | if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 585 | BaseObjectIsPointer = true; |
| 586 | ObjectType = ObjectPtr->getPointeeType(); |
| 587 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 588 | BaseQuals |
| 589 | = Context.getCanonicalType(ObjectType).getQualifiers(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 590 | } else { |
| 591 | // We've found a member of an anonymous struct/union that is |
| 592 | // inside a non-anonymous struct/union, so in a well-formed |
| 593 | // program our base object expression is "this". |
| 594 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 595 | if (!MD->isStatic()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 596 | QualType AnonFieldType |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 597 | = Context.getTagDeclType( |
| 598 | cast<RecordDecl>(AnonFields.back()->getDeclContext())); |
| 599 | QualType ThisType = Context.getTagDeclType(MD->getParent()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 600 | if ((Context.getCanonicalType(AnonFieldType) |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 601 | == Context.getCanonicalType(ThisType)) || |
| 602 | IsDerivedFrom(ThisType, AnonFieldType)) { |
| 603 | // Our base object expression is "this". |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 604 | BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 605 | MD->getThisType(Context)); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 606 | BaseObjectIsPointer = true; |
| 607 | } |
| 608 | } else { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 609 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 610 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 611 | } |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 612 | BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 613 | } |
| 614 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 615 | if (!BaseObjectExpr) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 616 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 617 | << Field->getDeclName()); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 618 | } |
| 619 | |
| 620 | // Build the implicit member references to the field of the |
| 621 | // anonymous struct/union. |
| 622 | Expr *Result = BaseObjectExpr; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 623 | Qualifiers ResultQuals = BaseQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 624 | for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator |
| 625 | FI = AnonFields.rbegin(), FIEnd = AnonFields.rend(); |
| 626 | FI != FIEnd; ++FI) { |
| 627 | QualType MemberType = (*FI)->getType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 628 | Qualifiers MemberTypeQuals = |
| 629 | Context.getCanonicalType(MemberType).getQualifiers(); |
| 630 | |
| 631 | // CVR attributes from the base are picked up by members, |
| 632 | // except that 'mutable' members don't pick up 'const'. |
| 633 | if ((*FI)->isMutable()) |
| 634 | ResultQuals.removeConst(); |
| 635 | |
| 636 | // GC attributes are never picked up by members. |
| 637 | ResultQuals.removeObjCGCAttr(); |
| 638 | |
| 639 | // TR 18037 does not allow fields to be declared with address spaces. |
| 640 | assert(!MemberTypeQuals.hasAddressSpace()); |
| 641 | |
| 642 | Qualifiers NewQuals = ResultQuals + MemberTypeQuals; |
| 643 | if (NewQuals != MemberTypeQuals) |
| 644 | MemberType = Context.getQualifiedType(MemberType, NewQuals); |
| 645 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 646 | MarkDeclarationReferenced(Loc, *FI); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 647 | // FIXME: Might this end up being a qualified name? |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 648 | Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI, |
| 649 | OpLoc, MemberType); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 650 | BaseObjectIsPointer = false; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 651 | ResultQuals = NewQuals; |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 652 | } |
| 653 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 654 | return Owned(Result); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 655 | } |
| 656 | |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 657 | /// ActOnDeclarationNameExpr - The parser has read some kind of name |
| 658 | /// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine |
| 659 | /// performs lookup on that name and returns an expression that refers |
| 660 | /// to that name. This routine isn't directly called from the parser, |
| 661 | /// because the parser doesn't know about DeclarationName. Rather, |
| 662 | /// this routine is called by ActOnIdentifierExpr, |
| 663 | /// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr, |
| 664 | /// which form the DeclarationName from the corresponding syntactic |
| 665 | /// forms. |
| 666 | /// |
| 667 | /// HasTrailingLParen indicates whether this identifier is used in a |
| 668 | /// function call context. LookupCtx is only used for a C++ |
| 669 | /// qualified-id (foo::bar) to indicate the class or namespace that |
| 670 | /// the identifier must be a member of. |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 671 | /// |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 672 | /// isAddressOfOperand means that this expression is the direct operand |
| 673 | /// of an address-of operator. This matters because this is the only |
| 674 | /// situation where a qualified name referencing a non-static member may |
| 675 | /// appear outside a member function of this class. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 676 | Sema::OwningExprResult |
| 677 | Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc, |
| 678 | DeclarationName Name, bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | const CXXScopeSpec *SS, |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 680 | bool isAddressOfOperand) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 681 | // Could be enum-constant, value decl, instance variable, etc. |
Douglas Gregor | 4c921ae | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 682 | if (SS && SS->isInvalid()) |
| 683 | return ExprError(); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 684 | |
| 685 | // C++ [temp.dep.expr]p3: |
| 686 | // An id-expression is type-dependent if it contains: |
| 687 | // -- a nested-name-specifier that contains a class-name that |
| 688 | // names a dependent type. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 689 | // FIXME: Member of the current instantiation. |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 690 | if (SS && isDependentScopeSpecifier(*SS)) { |
Douglas Gregor | ab452ba | 2009-03-26 23:50:42 +0000 | [diff] [blame] | 691 | return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 692 | Loc, SS->getRange(), |
Anders Carlsson | 9b31df4 | 2009-07-09 00:05:08 +0000 | [diff] [blame] | 693 | static_cast<NestedNameSpecifier *>(SS->getScopeRep()), |
| 694 | isAddressOfOperand)); |
Douglas Gregor | 5953d8b | 2009-03-19 17:26:29 +0000 | [diff] [blame] | 695 | } |
| 696 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 697 | LookupResult Lookup; |
| 698 | LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 699 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 700 | if (Lookup.isAmbiguous()) { |
| 701 | DiagnoseAmbiguousLookup(Lookup, Name, Loc, |
| 702 | SS && SS->isSet() ? SS->getRange() |
| 703 | : SourceRange()); |
| 704 | return ExprError(); |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 705 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 706 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 707 | NamedDecl *D = Lookup.getAsSingleDecl(Context); |
Douglas Gregor | 5c37de7 | 2008-12-06 00:22:45 +0000 | [diff] [blame] | 708 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 709 | // If this reference is in an Objective-C method, then ivar lookup happens as |
| 710 | // well. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 711 | IdentifierInfo *II = Name.getAsIdentifierInfo(); |
| 712 | if (II && getCurMethodDecl()) { |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 713 | // There are two cases to handle here. 1) scoped lookup could have failed, |
| 714 | // 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] | 715 | // found a decl, but that decl is outside the current instance method (i.e. |
| 716 | // 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] | 717 | // this name, if the lookup sucedes, we replace it our current decl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 718 | if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) { |
Argyrios Kyrtzidis | 53d0ea5 | 2008-06-28 06:07:14 +0000 | [diff] [blame] | 719 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 720 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 721 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Chris Lattner | 553905d | 2009-02-16 17:19:12 +0000 | [diff] [blame] | 722 | // Check if referencing a field with __attribute__((deprecated)). |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 723 | if (DiagnoseUseOfDecl(IV, Loc)) |
| 724 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 725 | |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 726 | // If we're referencing an invalid decl, just return this as a silent |
| 727 | // error node. The error diagnostic was already emitted on the decl. |
| 728 | if (IV->isInvalidDecl()) |
| 729 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 730 | |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 731 | bool IsClsMethod = getCurMethodDecl()->isClassMethod(); |
| 732 | // If a class method attemps to use a free standing ivar, this is |
| 733 | // an error. |
| 734 | if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod()) |
| 735 | return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method) |
| 736 | << IV->getDeclName()); |
| 737 | // If a class method uses a global variable, even if an ivar with |
| 738 | // same name exists, use the global. |
| 739 | if (!IsClsMethod) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 740 | if (IV->getAccessControl() == ObjCIvarDecl::Private && |
| 741 | ClassDeclared != IFace) |
| 742 | Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName(); |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 743 | // FIXME: This should use a new expr for a direct reference, don't |
| 744 | // turn this into Self->ivar, just return a BareIVarExpr or something. |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 745 | IdentifierInfo &II = Context.Idents.get("self"); |
Argyrios Kyrtzidis | ecd1bae | 2009-07-18 08:49:37 +0000 | [diff] [blame] | 746 | OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(), |
| 747 | II, false); |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 748 | MarkDeclarationReferenced(Loc, IV); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 749 | return Owned(new (Context) |
| 750 | ObjCIvarRefExpr(IV, IV->getType(), Loc, |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 751 | SelfExpr.takeAs<Expr>(), true, true)); |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 752 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 753 | } |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 754 | } else if (getCurMethodDecl()->isInstanceMethod()) { |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 755 | // We should warn if a local variable hides an ivar. |
| 756 | ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 757 | ObjCInterfaceDecl *ClassDeclared; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 758 | if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) { |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 759 | if (IV->getAccessControl() != ObjCIvarDecl::Private || |
| 760 | IFace == ClassDeclared) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 761 | Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName(); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 762 | } |
Fariborz Jahanian | 077c1e7 | 2009-03-02 21:55:29 +0000 | [diff] [blame] | 763 | } |
Steve Naroff | 76de9d7 | 2008-08-10 19:10:41 +0000 | [diff] [blame] | 764 | // Needed to implement property "super.method" notation. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 765 | if (D == 0 && II->isStr("super")) { |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 766 | QualType T; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 767 | |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 768 | if (getCurMethodDecl()->isInstanceMethod()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 769 | T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType( |
| 770 | getCurMethodDecl()->getClassInterface())); |
Steve Naroff | dd53eb5 | 2009-03-05 20:12:00 +0000 | [diff] [blame] | 771 | else |
| 772 | T = Context.getObjCClassType(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 773 | return Owned(new (Context) ObjCSuperExpr(Loc, T)); |
Steve Naroff | e3e9add | 2008-06-02 23:03:37 +0000 | [diff] [blame] | 774 | } |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 775 | } |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 776 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 777 | // Determine whether this name might be a candidate for |
| 778 | // argument-dependent lookup. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 779 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 780 | HasTrailingLParen; |
| 781 | |
| 782 | if (ADL && D == 0) { |
Douglas Gregor | c71e28c | 2009-02-16 19:28:42 +0000 | [diff] [blame] | 783 | // We've seen something of the form |
| 784 | // |
| 785 | // identifier( |
| 786 | // |
| 787 | // and we did not find any entity by the name |
| 788 | // "identifier". However, this identifier is still subject to |
| 789 | // argument-dependent lookup, so keep track of the name. |
| 790 | return Owned(new (Context) UnresolvedFunctionNameExpr(Name, |
| 791 | Context.OverloadTy, |
| 792 | Loc)); |
| 793 | } |
| 794 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 795 | if (D == 0) { |
| 796 | // Otherwise, this could be an implicitly declared function reference (legal |
| 797 | // in C90, extension in C99). |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 798 | if (HasTrailingLParen && II && |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 799 | !getLangOptions().CPlusPlus) // Not in C++. |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 800 | D = ImplicitlyDefineFunction(Loc, *II, S); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 801 | else { |
| 802 | // If this name wasn't predeclared and if this is not a function call, |
| 803 | // diagnose the problem. |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 804 | if (SS && !SS->isEmpty()) |
| 805 | return ExprError(Diag(Loc, diag::err_no_member) |
| 806 | << Name << computeDeclContext(*SS, false) |
| 807 | << SS->getRange()); |
| 808 | else if (Name.getNameKind() == DeclarationName::CXXOperatorName || |
Douglas Gregor | 10c4262 | 2008-11-18 15:03:34 +0000 | [diff] [blame] | 809 | Name.getNameKind() == DeclarationName::CXXConversionFunctionName) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 810 | return ExprError(Diag(Loc, diag::err_undeclared_use) |
| 811 | << Name.getAsString()); |
Argyrios Kyrtzidis | ef6e647 | 2008-11-08 17:17:31 +0000 | [diff] [blame] | 812 | else |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 813 | return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 814 | } |
| 815 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 816 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 817 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
| 818 | // Warn about constructs like: |
| 819 | // if (void *X = foo()) { ... } else { X }. |
| 820 | // In the else block, the pointer is always false. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 821 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 822 | // FIXME: In a template instantiation, we don't have scope |
| 823 | // information to check this property. |
| 824 | if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) { |
| 825 | Scope *CheckS = S; |
| 826 | while (CheckS) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 827 | if (CheckS->isWithinElse() && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 828 | CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) { |
| 829 | if (Var->getType()->isBooleanType()) |
| 830 | ExprError(Diag(Loc, diag::warn_value_always_false) |
| 831 | << Var->getDeclName()); |
| 832 | else |
| 833 | ExprError(Diag(Loc, diag::warn_value_always_zero) |
| 834 | << Var->getDeclName()); |
| 835 | break; |
| 836 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 837 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 838 | // Move up one more control parent to check again. |
| 839 | CheckS = CheckS->getControlParent(); |
| 840 | if (CheckS) |
| 841 | CheckS = CheckS->getParent(); |
| 842 | } |
| 843 | } |
| 844 | } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) { |
| 845 | if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) { |
| 846 | // C99 DR 316 says that, if a function type comes from a |
| 847 | // function definition (without a prototype), that type is only |
| 848 | // used for checking compatibility. Therefore, when referencing |
| 849 | // the function, we pretend that we don't have the full function |
| 850 | // type. |
| 851 | if (DiagnoseUseOfDecl(Func, Loc)) |
| 852 | return ExprError(); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 853 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 854 | QualType T = Func->getType(); |
| 855 | QualType NoProtoType = T; |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 856 | if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>()) |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 857 | NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType()); |
| 858 | return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS); |
| 859 | } |
| 860 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 861 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 862 | return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand); |
| 863 | } |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 864 | /// \brief Cast member's object to its own class if necessary. |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 865 | bool |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 866 | Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) { |
| 867 | if (FieldDecl *FD = dyn_cast<FieldDecl>(Member)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 868 | if (CXXRecordDecl *RD = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 869 | dyn_cast<CXXRecordDecl>(FD->getDeclContext())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 870 | QualType DestType = |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 871 | Context.getCanonicalType(Context.getTypeDeclType(RD)); |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 872 | if (DestType->isDependentType() || From->getType()->isDependentType()) |
| 873 | return false; |
| 874 | QualType FromRecordType = From->getType(); |
| 875 | QualType DestRecordType = DestType; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 876 | if (FromRecordType->getAs<PointerType>()) { |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 877 | DestType = Context.getPointerType(DestType); |
| 878 | FromRecordType = FromRecordType->getPointeeType(); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 879 | } |
Fariborz Jahanian | 96e2fa9 | 2009-07-29 20:41:46 +0000 | [diff] [blame] | 880 | if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) && |
| 881 | CheckDerivedToBaseConversion(FromRecordType, |
| 882 | DestRecordType, |
| 883 | From->getSourceRange().getBegin(), |
| 884 | From->getSourceRange())) |
| 885 | return true; |
Anders Carlsson | 3503d04 | 2009-07-31 01:23:52 +0000 | [diff] [blame] | 886 | ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase, |
| 887 | /*isLvalue=*/true); |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 888 | } |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 889 | return false; |
Fariborz Jahanian | 98a541e | 2009-07-29 18:40:24 +0000 | [diff] [blame] | 890 | } |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 891 | |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 892 | /// \brief Build a MemberExpr AST node. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 893 | static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow, |
| 894 | const CXXScopeSpec *SS, NamedDecl *Member, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 895 | SourceLocation Loc, QualType Ty) { |
| 896 | if (SS && SS->isSet()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 897 | return MemberExpr::Create(C, Base, isArrow, |
Douglas Gregor | 83f6faf | 2009-08-31 23:41:50 +0000 | [diff] [blame] | 898 | (NestedNameSpecifier *)SS->getScopeRep(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 899 | SS->getRange(), Member, Loc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 900 | // FIXME: Explicit template argument lists |
| 901 | false, SourceLocation(), 0, 0, SourceLocation(), |
| 902 | Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 903 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 904 | return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty); |
| 905 | } |
| 906 | |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 907 | /// \brief Complete semantic analysis for a reference to the given declaration. |
| 908 | Sema::OwningExprResult |
| 909 | Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D, |
| 910 | bool HasTrailingLParen, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 911 | const CXXScopeSpec *SS, |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 912 | bool isAddressOfOperand) { |
| 913 | assert(D && "Cannot refer to a NULL declaration"); |
| 914 | DeclarationName Name = D->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 915 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 916 | // If this is an expression of the form &Class::member, don't build an |
| 917 | // implicit member ref, because we want a pointer to the member in general, |
| 918 | // not any specific instance's member. |
| 919 | if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 920 | DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 47b9a1c | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 921 | if (D && isa<CXXRecordDecl>(DC)) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 922 | QualType DType; |
| 923 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
| 924 | DType = FD->getType().getNonReferenceType(); |
| 925 | } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 926 | DType = Method->getType(); |
| 927 | } else if (isa<OverloadedFunctionDecl>(D)) { |
| 928 | DType = Context.OverloadTy; |
| 929 | } |
| 930 | // Could be an inner type. That's diagnosed below, so ignore it here. |
| 931 | if (!DType.isNull()) { |
| 932 | // The pointer is type- and value-dependent if it points into something |
| 933 | // dependent. |
Douglas Gregor | 00c4486 | 2009-05-29 14:49:33 +0000 | [diff] [blame] | 934 | bool Dependent = DC->isDependentContext(); |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 935 | return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS); |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 936 | } |
| 937 | } |
| 938 | } |
| 939 | |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 940 | // We may have found a field within an anonymous union or struct |
| 941 | // (C++ [class.union]). |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 942 | // FIXME: This needs to happen post-isImplicitMemberReference? |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 943 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) |
| 944 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
| 945 | return BuildAnonymousStructUnionMemberReference(Loc, FD); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 946 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 947 | // Cope with an implicit member access in a C++ non-static member function. |
| 948 | QualType ThisType, MemberType; |
| 949 | if (isImplicitMemberReference(SS, D, Loc, ThisType, MemberType)) { |
| 950 | Expr *This = new (Context) CXXThisExpr(SourceLocation(), ThisType); |
| 951 | MarkDeclarationReferenced(Loc, D); |
| 952 | if (PerformObjectMemberConversion(This, D)) |
| 953 | return ExprError(); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 954 | |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 955 | bool ShouldCheckUse = true; |
| 956 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) { |
| 957 | // Don't diagnose the use of a virtual member function unless it's |
| 958 | // explicitly qualified. |
| 959 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 960 | ShouldCheckUse = false; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 961 | } |
Douglas Gregor | e961afb | 2009-10-22 07:08:30 +0000 | [diff] [blame] | 962 | |
| 963 | if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc)) |
| 964 | return ExprError(); |
| 965 | return Owned(BuildMemberExpr(Context, This, true, SS, D, |
| 966 | Loc, MemberType)); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 967 | } |
| 968 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 969 | if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) { |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 970 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) { |
| 971 | if (MD->isStatic()) |
| 972 | // "invalid use of member 'x' in static member function" |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 973 | return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method) |
| 974 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 975 | } |
| 976 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 977 | // Any other ways we could have found the field in a well-formed |
| 978 | // program would have been turned into implicit member expressions |
| 979 | // above. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 980 | return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use) |
| 981 | << FD->getDeclName()); |
Argyrios Kyrtzidis | 0795232 | 2008-07-01 10:37:29 +0000 | [diff] [blame] | 982 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 983 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 984 | if (isa<TypedefDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 985 | return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name); |
Ted Kremenek | a526c5c | 2008-01-07 19:49:32 +0000 | [diff] [blame] | 986 | if (isa<ObjCInterfaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 987 | return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name); |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 988 | if (isa<NamespaceDecl>(D)) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 989 | return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 990 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 991 | // Make the DeclRefExpr or BlockDeclRefExpr for the decl. |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 992 | if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 993 | return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc, |
| 994 | false, false, SS); |
Douglas Gregor | c15cb38 | 2009-02-09 23:23:08 +0000 | [diff] [blame] | 995 | else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 996 | return BuildDeclRefExpr(Template, Context.OverloadTy, Loc, |
| 997 | false, false, SS); |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 998 | else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D)) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 999 | return BuildDeclRefExpr(UD, Context.DependentTy, Loc, |
| 1000 | /*TypeDependent=*/true, |
Anders Carlsson | 598da5b | 2009-08-29 01:06:32 +0000 | [diff] [blame] | 1001 | /*ValueDependent=*/true, SS); |
| 1002 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1003 | ValueDecl *VD = cast<ValueDecl>(D); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1004 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1005 | // Check whether this declaration can be used. Note that we suppress |
| 1006 | // this check when we're going to perform argument-dependent lookup |
| 1007 | // on this function name, because this might not be the function |
| 1008 | // that overload resolution actually selects. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1009 | bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) && |
Douglas Gregor | 751f9a4 | 2009-06-30 15:47:41 +0000 | [diff] [blame] | 1010 | HasTrailingLParen; |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1011 | if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc)) |
| 1012 | return ExprError(); |
| 1013 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1014 | // Only create DeclRefExpr's for valid Decl's. |
| 1015 | if (VD->isInvalidDecl()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1016 | return ExprError(); |
| 1017 | |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1018 | // If the identifier reference is inside a block, and it refers to a value |
| 1019 | // that is outside the block, create a BlockDeclRefExpr instead of a |
| 1020 | // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when |
| 1021 | // the block is formed. |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 1022 | // |
Chris Lattner | 639e2d3 | 2008-10-20 05:16:36 +0000 | [diff] [blame] | 1023 | // We do not do this for things like enum constants, global variables, etc, |
| 1024 | // as they do not get snapshotted. |
| 1025 | // |
| 1026 | if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) { |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1027 | MarkDeclarationReferenced(Loc, VD); |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1028 | QualType ExprTy = VD->getType().getNonReferenceType(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1029 | // The BlocksAttr indicates the variable is bound by-reference. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 1030 | if (VD->getAttr<BlocksAttr>()) |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1031 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true)); |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1032 | // This is to record that a 'const' was actually synthesize and added. |
| 1033 | bool constAdded = !ExprTy.isConstQualified(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1034 | // Variable will be bound by-copy, make it const within the closure. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1035 | |
Eli Friedman | 5fdeae1 | 2009-03-22 23:00:19 +0000 | [diff] [blame] | 1036 | ExprTy.addConst(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1037 | return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false, |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 1038 | constAdded)); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 1039 | } |
| 1040 | // If this reference is not in a block or if the referenced variable is |
| 1041 | // within the block, create a normal DeclRefExpr. |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1042 | |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1043 | bool TypeDependent = false; |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1044 | bool ValueDependent = false; |
| 1045 | if (getLangOptions().CPlusPlus) { |
| 1046 | // C++ [temp.dep.expr]p3: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1047 | // An id-expression is type-dependent if it contains: |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1048 | // - an identifier that was declared with a dependent type, |
| 1049 | if (VD->getType()->isDependentType()) |
| 1050 | TypeDependent = true; |
| 1051 | // - FIXME: a template-id that is dependent, |
| 1052 | // - a conversion-function-id that specifies a dependent type, |
| 1053 | else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName && |
| 1054 | Name.getCXXNameType()->isDependentType()) |
| 1055 | TypeDependent = true; |
| 1056 | // - a nested-name-specifier that contains a class-name that |
| 1057 | // names a dependent type. |
| 1058 | else if (SS && !SS->isEmpty()) { |
Douglas Gregor | e4e5b05 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 1059 | for (DeclContext *DC = computeDeclContext(*SS); |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1060 | DC; DC = DC->getParent()) { |
| 1061 | // FIXME: could stop early at namespace scope. |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 1062 | if (DC->isRecord()) { |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1063 | CXXRecordDecl *Record = cast<CXXRecordDecl>(DC); |
| 1064 | if (Context.getTypeDeclType(Record)->isDependentType()) { |
| 1065 | TypeDependent = true; |
| 1066 | break; |
| 1067 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1068 | } |
| 1069 | } |
| 1070 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1071 | |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1072 | // C++ [temp.dep.constexpr]p2: |
| 1073 | // |
| 1074 | // An identifier is value-dependent if it is: |
| 1075 | // - a name declared with a dependent type, |
| 1076 | if (TypeDependent) |
| 1077 | ValueDependent = true; |
| 1078 | // - the name of a non-type template parameter, |
| 1079 | else if (isa<NonTypeTemplateParmDecl>(VD)) |
| 1080 | ValueDependent = true; |
| 1081 | // - a constant with integral or enumeration type and is |
| 1082 | // initialized with an expression that is value-dependent |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1083 | else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1084 | if (Dcl->getType().getCVRQualifiers() == Qualifiers::Const && |
Eli Friedman | c149412 | 2009-06-11 01:11:20 +0000 | [diff] [blame] | 1085 | Dcl->getInit()) { |
| 1086 | ValueDependent = Dcl->getInit()->isValueDependent(); |
| 1087 | } |
| 1088 | } |
Douglas Gregor | 83f96f6 | 2008-12-10 20:57:37 +0000 | [diff] [blame] | 1089 | } |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 1090 | |
Anders Carlsson | e41590d | 2009-06-24 00:10:43 +0000 | [diff] [blame] | 1091 | return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, |
| 1092 | TypeDependent, ValueDependent, SS); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1093 | } |
| 1094 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1095 | Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, |
| 1096 | tok::TokenKind Kind) { |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1097 | PredefinedExpr::IdentType IT; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1098 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1099 | switch (Kind) { |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1100 | default: assert(0 && "Unknown simple primary expr!"); |
Chris Lattner | d9f6910 | 2008-08-10 01:53:14 +0000 | [diff] [blame] | 1101 | case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2] |
| 1102 | case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break; |
| 1103 | case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1104 | } |
Chris Lattner | 1423ea4 | 2008-01-12 18:39:25 +0000 | [diff] [blame] | 1105 | |
Chris Lattner | fa28b30 | 2008-01-12 08:14:25 +0000 | [diff] [blame] | 1106 | // Pre-defined identifiers are of type char[x], where x is the length of the |
| 1107 | // string. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1108 | |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1109 | Decl *currentDecl = getCurFunctionOrMethodDecl(); |
| 1110 | if (!currentDecl) { |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1111 | Diag(Loc, diag::ext_predef_outside_function); |
Anders Carlsson | 3a082d8 | 2009-09-08 18:24:21 +0000 | [diff] [blame] | 1112 | currentDecl = Context.getTranslationUnitDecl(); |
Chris Lattner | b0da923 | 2008-12-12 05:05:20 +0000 | [diff] [blame] | 1113 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1114 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1115 | QualType ResTy; |
| 1116 | if (cast<DeclContext>(currentDecl)->isDependentContext()) { |
| 1117 | ResTy = Context.DependentTy; |
| 1118 | } else { |
| 1119 | unsigned Length = |
| 1120 | PredefinedExpr::ComputeName(Context, IT, currentDecl).length(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1121 | |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1122 | llvm::APInt LengthI(32, Length + 1); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1123 | ResTy = Context.CharTy.withConst(); |
Anders Carlsson | 773f397 | 2009-09-11 01:22:35 +0000 | [diff] [blame] | 1124 | ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0); |
| 1125 | } |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1126 | return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1129 | Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1130 | llvm::SmallString<16> CharBuffer; |
| 1131 | CharBuffer.resize(Tok.getLength()); |
| 1132 | const char *ThisTokBegin = &CharBuffer[0]; |
| 1133 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1134 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1135 | CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
| 1136 | Tok.getLocation(), PP); |
| 1137 | if (Literal.hadError()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1138 | return ExprError(); |
Chris Lattner | fc62bfd | 2008-03-01 08:32:21 +0000 | [diff] [blame] | 1139 | |
| 1140 | QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy; |
| 1141 | |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1142 | return Owned(new (Context) CharacterLiteral(Literal.getValue(), |
| 1143 | Literal.isWide(), |
| 1144 | type, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1147 | Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) { |
| 1148 | // 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] | 1149 | // cannot have a trigraph, escaped newline, radix prefix, or type suffix. |
| 1150 | if (Tok.getLength() == 1) { |
Chris Lattner | 7216dc9 | 2009-01-26 22:36:52 +0000 | [diff] [blame] | 1151 | const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok); |
Chris Lattner | 0c21e84 | 2009-01-16 07:10:29 +0000 | [diff] [blame] | 1152 | unsigned IntSize = Context.Target.getIntWidth(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1153 | return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'), |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 1154 | Context.IntTy, Tok.getLocation())); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1155 | } |
Ted Kremenek | 2839660 | 2009-01-13 23:19:12 +0000 | [diff] [blame] | 1156 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1157 | llvm::SmallString<512> IntegerBuffer; |
Chris Lattner | 2a29904 | 2008-09-30 20:53:45 +0000 | [diff] [blame] | 1158 | // Add padding so that NumericLiteralParser can overread by one character. |
| 1159 | IntegerBuffer.resize(Tok.getLength()+1); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1160 | const char *ThisTokBegin = &IntegerBuffer[0]; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1161 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1162 | // Get the spelling of the token, which eliminates trigraphs, etc. |
| 1163 | unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1164 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1165 | NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength, |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1166 | Tok.getLocation(), PP); |
| 1167 | if (Literal.hadError) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1168 | return ExprError(); |
| 1169 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1170 | Expr *Res; |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1171 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1172 | if (Literal.isFloatingLiteral()) { |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1173 | QualType Ty; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1174 | if (Literal.isFloat) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1175 | Ty = Context.FloatTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1176 | else if (!Literal.isLong) |
Chris Lattner | 525a050 | 2007-09-22 18:29:59 +0000 | [diff] [blame] | 1177 | Ty = Context.DoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1178 | else |
Chris Lattner | 9e9b6dc | 2008-03-08 08:52:55 +0000 | [diff] [blame] | 1179 | Ty = Context.LongDoubleTy; |
Chris Lattner | b7cfe88 | 2008-06-30 18:32:54 +0000 | [diff] [blame] | 1180 | |
| 1181 | const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty); |
| 1182 | |
Ted Kremenek | 720c4ec | 2007-11-29 00:56:49 +0000 | [diff] [blame] | 1183 | // isExact will be set by GetFloatValue(). |
| 1184 | bool isExact = false; |
Chris Lattner | 001d64d | 2009-06-29 17:34:55 +0000 | [diff] [blame] | 1185 | llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact); |
| 1186 | Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation()); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1187 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1188 | } else if (!Literal.isIntegerLiteral()) { |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1189 | return ExprError(); |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1190 | } else { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1191 | QualType Ty; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1192 | |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1193 | // long long is a C99 feature. |
| 1194 | if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x && |
Neil Booth | 79859c3 | 2007-08-29 22:13:52 +0000 | [diff] [blame] | 1195 | Literal.isLongLong) |
Neil Booth | b944951 | 2007-08-29 22:00:19 +0000 | [diff] [blame] | 1196 | Diag(Tok.getLocation(), diag::ext_longlong); |
| 1197 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1198 | // Get the value in the widest-possible width. |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1199 | llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1200 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1201 | if (Literal.GetIntegerValue(ResultVal)) { |
| 1202 | // If this value didn't fit into uintmax_t, warn and force to ull. |
| 1203 | Diag(Tok.getLocation(), diag::warn_integer_too_large); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1204 | Ty = Context.UnsignedLongLongTy; |
| 1205 | assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 1206 | "long long is not intmax_t?"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1207 | } else { |
| 1208 | // If this value fits into a ULL, try to figure out what else it fits into |
| 1209 | // according to the rules of C99 6.4.4.1p5. |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1210 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1211 | // Octal, Hexadecimal, and integers with a U suffix are allowed to |
| 1212 | // be an unsigned int. |
| 1213 | bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10; |
| 1214 | |
| 1215 | // Check from smallest to largest, picking the smallest type we can. |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1216 | unsigned Width = 0; |
Chris Lattner | 97c5156 | 2007-08-23 21:58:08 +0000 | [diff] [blame] | 1217 | if (!Literal.isLong && !Literal.isLongLong) { |
| 1218 | // Are int/unsigned possibilities? |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1219 | unsigned IntSize = Context.Target.getIntWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1220 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1221 | // Does it fit in a unsigned int? |
| 1222 | if (ResultVal.isIntN(IntSize)) { |
| 1223 | // Does it fit in a signed int? |
| 1224 | if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1225 | Ty = Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1226 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1227 | Ty = Context.UnsignedIntTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1228 | Width = IntSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1229 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1230 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1231 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1232 | // Are long/unsigned long possibilities? |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1233 | if (Ty.isNull() && !Literal.isLongLong) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1234 | unsigned LongSize = Context.Target.getLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1235 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1236 | // Does it fit in a unsigned long? |
| 1237 | if (ResultVal.isIntN(LongSize)) { |
| 1238 | // Does it fit in a signed long? |
| 1239 | if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1240 | Ty = Context.LongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1241 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1242 | Ty = Context.UnsignedLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1243 | Width = LongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1244 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1245 | } |
| 1246 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1247 | // Finally, check long long if needed. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1248 | if (Ty.isNull()) { |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1249 | unsigned LongLongSize = Context.Target.getLongLongWidth(); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1250 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1251 | // Does it fit in a unsigned long long? |
| 1252 | if (ResultVal.isIntN(LongLongSize)) { |
| 1253 | // Does it fit in a signed long long? |
| 1254 | if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1255 | Ty = Context.LongLongTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1256 | else if (AllowUnsigned) |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1257 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1258 | Width = LongLongSize; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1259 | } |
| 1260 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1261 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1262 | // If we still couldn't decide a type, we probably have something that |
| 1263 | // 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] | 1264 | if (Ty.isNull()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1265 | Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1266 | Ty = Context.UnsignedLongLongTy; |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1267 | Width = Context.Target.getLongLongWidth(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1268 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1269 | |
Chris Lattner | 8cbcb0e | 2008-05-09 05:59:00 +0000 | [diff] [blame] | 1270 | if (ResultVal.getBitWidth() != Width) |
| 1271 | ResultVal.trunc(Width); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1272 | } |
Sebastian Redl | e91b3bc | 2009-01-20 22:23:13 +0000 | [diff] [blame] | 1273 | Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1274 | } |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1275 | |
Chris Lattner | 5d66145 | 2007-08-26 03:42:43 +0000 | [diff] [blame] | 1276 | // If this is an imaginary literal, create the ImaginaryLiteral wrapper. |
| 1277 | if (Literal.isImaginary) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1278 | Res = new (Context) ImaginaryLiteral(Res, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1279 | Context.getComplexType(Res->getType())); |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1280 | |
| 1281 | return Owned(Res); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1282 | } |
| 1283 | |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 1284 | Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L, |
| 1285 | SourceLocation R, ExprArg Val) { |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 1286 | Expr *E = Val.takeAs<Expr>(); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 1287 | assert((E != 0) && "ActOnParenExpr() missing expr"); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1288 | return Owned(new (Context) ParenExpr(L, R, E)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1289 | } |
| 1290 | |
| 1291 | /// The UsualUnaryConversions() function is *not* called by this routine. |
| 1292 | /// See C99 6.3.2.1p[2-4] for more details. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1293 | bool Sema::CheckSizeOfAlignOfOperand(QualType exprType, |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1294 | SourceLocation OpLoc, |
| 1295 | const SourceRange &ExprRange, |
| 1296 | bool isSizeof) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1297 | if (exprType->isDependentType()) |
| 1298 | return false; |
| 1299 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1300 | // C99 6.5.3.4p1: |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1301 | if (isa<FunctionType>(exprType)) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1302 | // alignof(function) is allowed as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1303 | if (isSizeof) |
| 1304 | Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange; |
| 1305 | return false; |
| 1306 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1307 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1308 | // Allow sizeof(void)/alignof(void) as an extension. |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1309 | if (exprType->isVoidType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1310 | Diag(OpLoc, diag::ext_sizeof_void_type) |
| 1311 | << (isSizeof ? "sizeof" : "__alignof") << ExprRange; |
Chris Lattner | 0107292 | 2009-01-24 19:46:37 +0000 | [diff] [blame] | 1312 | return false; |
| 1313 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1314 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1315 | if (RequireCompleteType(OpLoc, exprType, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1316 | isSizeof ? diag::err_sizeof_incomplete_type : |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1317 | PDiag(diag::err_alignof_incomplete_type) |
| 1318 | << ExprRange)) |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1319 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1320 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1321 | // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode. |
Fariborz Jahanian | ced1e28 | 2009-04-24 17:34:33 +0000 | [diff] [blame] | 1322 | if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) { |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1323 | Diag(OpLoc, diag::err_sizeof_nonfragile_interface) |
Chris Lattner | 5cb10d3 | 2009-04-24 22:30:50 +0000 | [diff] [blame] | 1324 | << exprType << isSizeof << ExprRange; |
| 1325 | return true; |
Chris Lattner | ca79092 | 2009-04-21 19:55:16 +0000 | [diff] [blame] | 1326 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1327 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1328 | return false; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1329 | } |
| 1330 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1331 | bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc, |
| 1332 | const SourceRange &ExprRange) { |
| 1333 | E = E->IgnoreParens(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1334 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1335 | // alignof decl is always ok. |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1336 | if (isa<DeclRefExpr>(E)) |
| 1337 | return false; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1338 | |
| 1339 | // Cannot know anything else if the expression is dependent. |
| 1340 | if (E->isTypeDependent()) |
| 1341 | return false; |
| 1342 | |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1343 | if (E->getBitField()) { |
| 1344 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange; |
| 1345 | return true; |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1346 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1347 | |
| 1348 | // Alignment of a field access is always okay, so long as it isn't a |
| 1349 | // bit-field. |
| 1350 | if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) |
Mike Stump | 8e1fab2 | 2009-07-22 18:58:19 +0000 | [diff] [blame] | 1351 | if (isa<FieldDecl>(ME->getMemberDecl())) |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1352 | return false; |
| 1353 | |
Chris Lattner | 31e21e0 | 2009-01-24 20:17:12 +0000 | [diff] [blame] | 1354 | return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false); |
| 1355 | } |
| 1356 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1357 | /// \brief Build a sizeof or alignof expression given a type operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1358 | Action::OwningExprResult |
| 1359 | Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1360 | bool isSizeOf, SourceRange R) { |
| 1361 | if (T.isNull()) |
| 1362 | return ExprError(); |
| 1363 | |
| 1364 | if (!T->isDependentType() && |
| 1365 | CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf)) |
| 1366 | return ExprError(); |
| 1367 | |
| 1368 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1369 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T, |
| 1370 | Context.getSizeType(), OpLoc, |
| 1371 | R.getEnd())); |
| 1372 | } |
| 1373 | |
| 1374 | /// \brief Build a sizeof or alignof expression given an expression |
| 1375 | /// operand. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1376 | Action::OwningExprResult |
| 1377 | Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc, |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1378 | bool isSizeOf, SourceRange R) { |
| 1379 | // Verify that the operand is valid. |
| 1380 | bool isInvalid = false; |
| 1381 | if (E->isTypeDependent()) { |
| 1382 | // Delay type-checking for type-dependent expressions. |
| 1383 | } else if (!isSizeOf) { |
| 1384 | isInvalid = CheckAlignOfExpr(E, OpLoc, R); |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 1385 | } else if (E->getBitField()) { // C99 6.5.3.4p1. |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1386 | Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0; |
| 1387 | isInvalid = true; |
| 1388 | } else { |
| 1389 | isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true); |
| 1390 | } |
| 1391 | |
| 1392 | if (isInvalid) |
| 1393 | return ExprError(); |
| 1394 | |
| 1395 | // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t. |
| 1396 | return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E, |
| 1397 | Context.getSizeType(), OpLoc, |
| 1398 | R.getEnd())); |
| 1399 | } |
| 1400 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1401 | /// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and |
| 1402 | /// the same for @c alignof and @c __alignof |
| 1403 | /// Note that the ArgRange is invalid if isType is false. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1404 | Action::OwningExprResult |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1405 | Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType, |
| 1406 | void *TyOrEx, const SourceRange &ArgRange) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1407 | // If error parsing type, ignore. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1408 | if (TyOrEx == 0) return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1409 | |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1410 | if (isType) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 1411 | // FIXME: Preserve type source info. |
| 1412 | QualType ArgTy = GetTypeFromParser(TyOrEx); |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1413 | return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1414 | } |
Sebastian Redl | 0518999 | 2008-11-11 17:56:53 +0000 | [diff] [blame] | 1415 | |
Douglas Gregor | ba49817 | 2009-03-13 21:01:28 +0000 | [diff] [blame] | 1416 | // Get the end location. |
| 1417 | Expr *ArgEx = (Expr *)TyOrEx; |
| 1418 | Action::OwningExprResult Result |
| 1419 | = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange()); |
| 1420 | |
| 1421 | if (Result.isInvalid()) |
| 1422 | DeleteExpr(ArgEx); |
| 1423 | |
| 1424 | return move(Result); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1427 | QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1428 | if (V->isTypeDependent()) |
| 1429 | return Context.DependentTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1430 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1431 | // These operators return the element type of a complex type. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1432 | if (const ComplexType *CT = V->getType()->getAs<ComplexType>()) |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1433 | return CT->getElementType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1434 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1435 | // Otherwise they pass through real integer and floating point types here. |
| 1436 | if (V->getType()->isArithmeticType()) |
| 1437 | return V->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1438 | |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1439 | // Reject anything else. |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 1440 | Diag(Loc, diag::err_realimag_invalid_type) << V->getType() |
| 1441 | << (isReal ? "__real" : "__imag"); |
Chris Lattner | cc26ed7 | 2007-08-26 05:39:26 +0000 | [diff] [blame] | 1442 | return QualType(); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 1443 | } |
| 1444 | |
| 1445 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1446 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1447 | Action::OwningExprResult |
| 1448 | Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc, |
| 1449 | tok::TokenKind Kind, ExprArg Input) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1450 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1451 | Input = MaybeConvertParenListExprToParenExpr(S, move(Input)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1452 | Expr *Arg = (Expr *)Input.get(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1453 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1454 | UnaryOperator::Opcode Opc; |
| 1455 | switch (Kind) { |
| 1456 | default: assert(0 && "Unknown unary op!"); |
| 1457 | case tok::plusplus: Opc = UnaryOperator::PostInc; break; |
| 1458 | case tok::minusminus: Opc = UnaryOperator::PostDec; break; |
| 1459 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1460 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1461 | if (getLangOptions().CPlusPlus && |
| 1462 | (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) { |
| 1463 | // Which overloaded operator? |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1464 | OverloadedOperatorKind OverOp = |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1465 | (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus; |
| 1466 | |
| 1467 | // C++ [over.inc]p1: |
| 1468 | // |
| 1469 | // [...] If the function is a member function with one |
| 1470 | // parameter (which shall be of type int) or a non-member |
| 1471 | // function with two parameters (the second of which shall be |
| 1472 | // of type int), it defines the postfix increment operator ++ |
| 1473 | // for objects of that type. When the postfix increment is |
| 1474 | // called as a result of using the ++ operator, the int |
| 1475 | // argument will have value zero. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1476 | Expr *Args[2] = { |
| 1477 | Arg, |
| 1478 | new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1479 | /*isSigned=*/true), Context.IntTy, SourceLocation()) |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1480 | }; |
| 1481 | |
| 1482 | // Build the candidate set for overloading |
| 1483 | OverloadCandidateSet CandidateSet; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1484 | AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1485 | |
| 1486 | // Perform overload resolution. |
| 1487 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1488 | switch (BestViableFunction(CandidateSet, OpLoc, Best)) { |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1489 | case OR_Success: { |
| 1490 | // We found a built-in operator or an overloaded operator. |
| 1491 | FunctionDecl *FnDecl = Best->Function; |
| 1492 | |
| 1493 | if (FnDecl) { |
| 1494 | // We matched an overloaded operator. Build a call to that |
| 1495 | // operator. |
| 1496 | |
| 1497 | // Convert the arguments. |
| 1498 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1499 | if (PerformObjectArgumentInitialization(Arg, Method)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1500 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1501 | } else { |
| 1502 | // Convert the arguments. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1503 | if (PerformCopyInitialization(Arg, |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1504 | FnDecl->getParamDecl(0)->getType(), |
| 1505 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1506 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1507 | } |
| 1508 | |
| 1509 | // Determine the result type |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1510 | QualType ResultTy = FnDecl->getResultType().getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1511 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1512 | // Build the actual expression node. |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1513 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
Mike Stump | 488e25b | 2009-02-19 02:54:59 +0000 | [diff] [blame] | 1514 | SourceLocation()); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1515 | UsualUnaryConversions(FnExpr); |
| 1516 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1517 | Input.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1518 | Args[0] = Arg; |
Anders Carlsson | 07d68f1 | 2009-10-13 21:49:31 +0000 | [diff] [blame] | 1519 | |
| 1520 | ExprOwningPtr<CXXOperatorCallExpr> |
| 1521 | TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp, |
| 1522 | FnExpr, Args, 2, |
| 1523 | ResultTy, OpLoc)); |
| 1524 | |
| 1525 | if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(), |
| 1526 | FnDecl)) |
| 1527 | return ExprError(); |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1528 | return Owned(TheCall.release()); |
| 1529 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1530 | } else { |
| 1531 | // We matched a built-in operator. Convert the arguments, then |
| 1532 | // break out so that we will build the appropriate built-in |
| 1533 | // operator node. |
| 1534 | if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0], |
| 1535 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1536 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1537 | |
| 1538 | break; |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1539 | } |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1540 | } |
| 1541 | |
Douglas Gregor | 3307475 | 2009-09-30 21:46:01 +0000 | [diff] [blame] | 1542 | case OR_No_Viable_Function: { |
| 1543 | // No viable function; try checking this as a built-in operator, which |
| 1544 | // will fail and provide a diagnostic. Then, print the overload |
| 1545 | // candidates. |
| 1546 | OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
| 1547 | assert(Result.isInvalid() && |
| 1548 | "C++ postfix-unary operator overloading is missing candidates!"); |
| 1549 | if (Result.isInvalid()) |
| 1550 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false); |
| 1551 | |
| 1552 | return move(Result); |
| 1553 | } |
| 1554 | |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1555 | case OR_Ambiguous: |
| 1556 | Diag(OpLoc, diag::err_ovl_ambiguous_oper) |
| 1557 | << UnaryOperator::getOpcodeStr(Opc) |
| 1558 | << Arg->getSourceRange(); |
| 1559 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1560 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1561 | |
| 1562 | case OR_Deleted: |
| 1563 | Diag(OpLoc, diag::err_ovl_deleted_oper) |
| 1564 | << Best->Function->isDeleted() |
| 1565 | << UnaryOperator::getOpcodeStr(Opc) |
| 1566 | << Arg->getSourceRange(); |
| 1567 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1568 | return ExprError(); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 1569 | } |
| 1570 | |
| 1571 | // Either we found no viable overloaded operator or we matched a |
| 1572 | // built-in operator. In either case, fall through to trying to |
| 1573 | // build a built-in operation. |
| 1574 | } |
| 1575 | |
Eli Friedman | 6016cb2 | 2009-07-22 23:24:42 +0000 | [diff] [blame] | 1576 | Input.release(); |
| 1577 | Input = Arg; |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 1578 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1579 | } |
| 1580 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1581 | Action::OwningExprResult |
| 1582 | Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc, |
| 1583 | ExprArg Idx, SourceLocation RLoc) { |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1584 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1585 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1586 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1587 | Expr *LHSExp = static_cast<Expr*>(Base.get()), |
| 1588 | *RHSExp = static_cast<Expr*>(Idx.get()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1589 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1590 | if (getLangOptions().CPlusPlus && |
Douglas Gregor | 3384c9c | 2009-05-19 00:01:19 +0000 | [diff] [blame] | 1591 | (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) { |
| 1592 | Base.release(); |
| 1593 | Idx.release(); |
| 1594 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
| 1595 | Context.DependentTy, RLoc)); |
| 1596 | } |
| 1597 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1598 | if (getLangOptions().CPlusPlus && |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1599 | (LHSExp->getType()->isRecordType() || |
Eli Friedman | 03f332a | 2008-12-15 22:34:21 +0000 | [diff] [blame] | 1600 | LHSExp->getType()->isEnumeralType() || |
| 1601 | RHSExp->getType()->isRecordType() || |
| 1602 | RHSExp->getType()->isEnumeralType())) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1603 | // Add the appropriate overloaded operators (C++ [over.match.oper]) |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1604 | // to the candidate set. |
| 1605 | OverloadCandidateSet CandidateSet; |
| 1606 | Expr *Args[2] = { LHSExp, RHSExp }; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 1607 | AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet, |
| 1608 | SourceRange(LLoc, RLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1609 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1610 | // Perform overload resolution. |
| 1611 | OverloadCandidateSet::iterator Best; |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 1612 | switch (BestViableFunction(CandidateSet, LLoc, Best)) { |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1613 | case OR_Success: { |
| 1614 | // We found a built-in operator or an overloaded operator. |
| 1615 | FunctionDecl *FnDecl = Best->Function; |
| 1616 | |
| 1617 | if (FnDecl) { |
| 1618 | // We matched an overloaded operator. Build a call to that |
| 1619 | // operator. |
| 1620 | |
| 1621 | // Convert the arguments. |
| 1622 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) { |
| 1623 | if (PerformObjectArgumentInitialization(LHSExp, Method) || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1624 | PerformCopyInitialization(RHSExp, |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1625 | FnDecl->getParamDecl(0)->getType(), |
| 1626 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1627 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1628 | } else { |
| 1629 | // Convert the arguments. |
| 1630 | if (PerformCopyInitialization(LHSExp, |
| 1631 | FnDecl->getParamDecl(0)->getType(), |
| 1632 | "passing") || |
| 1633 | PerformCopyInitialization(RHSExp, |
| 1634 | FnDecl->getParamDecl(1)->getType(), |
| 1635 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1636 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1637 | } |
| 1638 | |
| 1639 | // Determine the result type |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1640 | QualType ResultTy = FnDecl->getResultType().getNonReferenceType(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1641 | |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1642 | // Build the actual expression node. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1643 | Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(), |
| 1644 | SourceLocation()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1645 | UsualUnaryConversions(FnExpr); |
| 1646 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1647 | Base.release(); |
| 1648 | Idx.release(); |
Douglas Gregor | 7ff6926 | 2009-05-27 05:00:47 +0000 | [diff] [blame] | 1649 | Args[0] = LHSExp; |
| 1650 | Args[1] = RHSExp; |
Anders Carlsson | 3a9439f | 2009-10-13 22:22:09 +0000 | [diff] [blame] | 1651 | |
| 1652 | ExprOwningPtr<CXXOperatorCallExpr> |
| 1653 | TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Subscript, |
| 1654 | FnExpr, Args, 2, |
| 1655 | ResultTy, RLoc)); |
| 1656 | if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall.get(), |
| 1657 | FnDecl)) |
| 1658 | return ExprError(); |
| 1659 | |
| 1660 | return Owned(TheCall.release()); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1661 | } else { |
| 1662 | // We matched a built-in operator. Convert the arguments, then |
| 1663 | // break out so that we will build the appropriate built-in |
| 1664 | // operator node. |
| 1665 | if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0], |
| 1666 | "passing") || |
| 1667 | PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1], |
| 1668 | "passing")) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1669 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1670 | |
| 1671 | break; |
| 1672 | } |
| 1673 | } |
| 1674 | |
| 1675 | case OR_No_Viable_Function: |
| 1676 | // No viable function; fall through to handling this as a |
| 1677 | // built-in operator, which will produce an error message for us. |
| 1678 | break; |
| 1679 | |
| 1680 | case OR_Ambiguous: |
| 1681 | Diag(LLoc, diag::err_ovl_ambiguous_oper) |
| 1682 | << "[]" |
| 1683 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1684 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1685 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 1686 | |
| 1687 | case OR_Deleted: |
| 1688 | Diag(LLoc, diag::err_ovl_deleted_oper) |
| 1689 | << Best->Function->isDeleted() |
| 1690 | << "[]" |
| 1691 | << LHSExp->getSourceRange() << RHSExp->getSourceRange(); |
| 1692 | PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true); |
| 1693 | return ExprError(); |
Douglas Gregor | 337c6b9 | 2008-11-19 17:17:41 +0000 | [diff] [blame] | 1694 | } |
| 1695 | |
| 1696 | // Either we found no viable overloaded operator or we matched a |
| 1697 | // built-in operator. In either case, fall through to trying to |
| 1698 | // build a built-in operation. |
| 1699 | } |
| 1700 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1701 | // Perform default conversions. |
| 1702 | DefaultFunctionArrayConversion(LHSExp); |
| 1703 | DefaultFunctionArrayConversion(RHSExp); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1704 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1705 | QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1706 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1707 | // 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] | 1708 | // 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] | 1709 | // 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] | 1710 | // and index from the expression types. |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1711 | Expr *BaseExpr, *IndexExpr; |
| 1712 | QualType ResultType; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 1713 | if (LHSTy->isDependentType() || RHSTy->isDependentType()) { |
| 1714 | BaseExpr = LHSExp; |
| 1715 | IndexExpr = RHSExp; |
| 1716 | ResultType = Context.DependentTy; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1717 | } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) { |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1718 | BaseExpr = LHSExp; |
| 1719 | IndexExpr = RHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1720 | ResultType = PTy->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1721 | } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) { |
Chris Lattner | 7a2e047 | 2007-07-16 00:23:25 +0000 | [diff] [blame] | 1722 | // Handle the uncommon case of "123[Ptr]". |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1723 | BaseExpr = RHSExp; |
| 1724 | IndexExpr = LHSExp; |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1725 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1726 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1727 | LHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1728 | BaseExpr = LHSExp; |
| 1729 | IndexExpr = RHSExp; |
| 1730 | ResultType = PTy->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1731 | } else if (const ObjCObjectPointerType *PTy = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1732 | RHSTy->getAs<ObjCObjectPointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 1733 | // Handle the uncommon case of "123[Ptr]". |
| 1734 | BaseExpr = RHSExp; |
| 1735 | IndexExpr = LHSExp; |
| 1736 | ResultType = PTy->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1737 | } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) { |
Chris Lattner | c862963 | 2007-07-31 19:29:30 +0000 | [diff] [blame] | 1738 | BaseExpr = LHSExp; // vectors: V[123] |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1739 | IndexExpr = RHSExp; |
Nate Begeman | 334a802 | 2009-01-18 00:45:31 +0000 | [diff] [blame] | 1740 | |
Chris Lattner | 12d9ff6 | 2007-07-16 00:14:47 +0000 | [diff] [blame] | 1741 | // FIXME: need to deal with const... |
| 1742 | ResultType = VTy->getElementType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1743 | } else if (LHSTy->isArrayType()) { |
| 1744 | // If we see an array that wasn't promoted by |
| 1745 | // DefaultFunctionArrayConversion, it must be an array that |
| 1746 | // wasn't promoted because of the C90 rule that doesn't |
| 1747 | // allow promoting non-lvalue arrays. Warn, then |
| 1748 | // force the promotion here. |
| 1749 | Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1750 | LHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1751 | ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy), |
| 1752 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1753 | LHSTy = LHSExp->getType(); |
| 1754 | |
| 1755 | BaseExpr = LHSExp; |
| 1756 | IndexExpr = RHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1757 | ResultType = LHSTy->getAs<PointerType>()->getPointeeType(); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1758 | } else if (RHSTy->isArrayType()) { |
| 1759 | // Same as previous, except for 123[f().a] case |
| 1760 | Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) << |
| 1761 | RHSExp->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1762 | ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy), |
| 1763 | CastExpr::CK_ArrayToPointerDecay); |
Eli Friedman | 7c32f8e | 2009-04-25 23:46:54 +0000 | [diff] [blame] | 1764 | RHSTy = RHSExp->getType(); |
| 1765 | |
| 1766 | BaseExpr = RHSExp; |
| 1767 | IndexExpr = LHSExp; |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 1768 | ResultType = RHSTy->getAs<PointerType>()->getPointeeType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1769 | } else { |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1770 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value) |
| 1771 | << LHSExp->getSourceRange() << RHSExp->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1772 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1773 | // C99 6.5.2.1p1 |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1774 | if (!(IndexExpr->getType()->isIntegerType() && |
| 1775 | IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent()) |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 1776 | return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer) |
| 1777 | << IndexExpr->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1778 | |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 1779 | if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) || |
Sam Weinig | 0f9a5b5 | 2009-09-14 20:14:57 +0000 | [diff] [blame] | 1780 | IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U)) |
| 1781 | && !IndexExpr->isTypeDependent()) |
Sam Weinig | 76e2b71 | 2009-09-14 01:58:58 +0000 | [diff] [blame] | 1782 | Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange(); |
| 1783 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1784 | // 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] | 1785 | // C++ [expr.sub]p1: The type "T" shall be a completely-defined object |
| 1786 | // type. Note that Functions are not objects, and that (in C99 parlance) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1787 | // incomplete types are not object types. |
| 1788 | if (ResultType->isFunctionType()) { |
| 1789 | Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type) |
| 1790 | << ResultType << BaseExpr->getSourceRange(); |
| 1791 | return ExprError(); |
| 1792 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1793 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1794 | if (!ResultType->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1795 | RequireCompleteType(LLoc, ResultType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 1796 | PDiag(diag::err_subscript_incomplete_type) |
| 1797 | << BaseExpr->getSourceRange())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 1798 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1799 | |
Chris Lattner | 1efaa95 | 2009-04-24 00:30:45 +0000 | [diff] [blame] | 1800 | // Diagnose bad cases where we step over interface counts. |
| 1801 | if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 1802 | Diag(LLoc, diag::err_subscript_nonfragile_interface) |
| 1803 | << ResultType << BaseExpr->getSourceRange(); |
| 1804 | return ExprError(); |
| 1805 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1806 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1807 | Base.release(); |
| 1808 | Idx.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1809 | return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 1810 | ResultType, RLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1811 | } |
| 1812 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1813 | QualType Sema:: |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1814 | CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1815 | const IdentifierInfo *CompName, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1816 | SourceLocation CompLoc) { |
Daniel Dunbar | 2ad3289 | 2009-10-18 02:09:38 +0000 | [diff] [blame] | 1817 | // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements, |
| 1818 | // see FIXME there. |
| 1819 | // |
| 1820 | // FIXME: This logic can be greatly simplified by splitting it along |
| 1821 | // halving/not halving and reworking the component checking. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 1822 | const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1823 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1824 | // The vector accessor can't exceed the number of elements. |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1825 | const char *compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1826 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1827 | // 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] | 1828 | // special names that indicate a subset of exactly half the elements are |
| 1829 | // to be selected. |
| 1830 | bool HalvingSwizzle = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1831 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1832 | // This flag determines whether or not CompName has an 's' char prefix, |
| 1833 | // 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] | 1834 | bool HexSwizzle = *compStr == 's' || *compStr == 'S'; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1835 | |
| 1836 | // Check that we've found one of the special components, or that the component |
| 1837 | // names must come from the same set. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1838 | if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") || |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1839 | !strcmp(compStr, "even") || !strcmp(compStr, "odd")) { |
| 1840 | HalvingSwizzle = true; |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1841 | } else if (vecType->getPointAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1842 | do |
| 1843 | compStr++; |
| 1844 | while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1845 | } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) { |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1846 | do |
| 1847 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1848 | while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1); |
Chris Lattner | 88dca04 | 2007-08-02 22:33:49 +0000 | [diff] [blame] | 1849 | } |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1850 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1851 | if (!HalvingSwizzle && *compStr) { |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1852 | // We didn't get to the end of the string. This means the component names |
| 1853 | // 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] | 1854 | Diag(OpLoc, diag::err_ext_vector_component_name_illegal) |
| 1855 | << std::string(compStr,compStr+1) << SourceRange(CompLoc); |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1856 | return QualType(); |
| 1857 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1858 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1859 | // Ensure no component accessor exceeds the width of the vector type it |
| 1860 | // operates on. |
| 1861 | if (!HalvingSwizzle) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1862 | compStr = CompName->getNameStart(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1863 | |
| 1864 | if (HexSwizzle) |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1865 | compStr++; |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1866 | |
| 1867 | while (*compStr) { |
| 1868 | if (!vecType->isAccessorWithinNumElements(*compStr++)) { |
| 1869 | Diag(OpLoc, diag::err_ext_vector_component_exceeds_length) |
| 1870 | << baseType << SourceRange(CompLoc); |
| 1871 | return QualType(); |
| 1872 | } |
| 1873 | } |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1874 | } |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1875 | |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1876 | // If this is a halving swizzle, verify that the base type has an even |
| 1877 | // number of elements. |
| 1878 | if (HalvingSwizzle && (vecType->getNumElements() & 1U)) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 1879 | Diag(OpLoc, diag::err_ext_vector_component_requires_even) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 1880 | << baseType << SourceRange(CompLoc); |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1881 | return QualType(); |
| 1882 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1883 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1884 | // 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] | 1885 | // The vector type is implied by the component accessor. For example, |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1886 | // 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] | 1887 | // vec4.s0 is a float, vec4.s23 is a vec3, etc. |
Nate Begeman | 8a99764 | 2008-05-09 06:41:27 +0000 | [diff] [blame] | 1888 | // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2. |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1889 | unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2 |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1890 | : CompName->getLength(); |
Nate Begeman | 353417a | 2009-01-18 01:47:54 +0000 | [diff] [blame] | 1891 | if (HexSwizzle) |
| 1892 | CompSize--; |
| 1893 | |
Steve Naroff | e1b31fe | 2007-07-27 22:15:19 +0000 | [diff] [blame] | 1894 | if (CompSize == 1) |
| 1895 | return vecType->getElementType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1896 | |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1897 | QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 1898 | // Now look up the TypeDefDecl from the vector type. Without this, |
Nate Begeman | 213541a | 2008-04-18 23:10:10 +0000 | [diff] [blame] | 1899 | // diagostics look bad. We want extended vector types to appear built-in. |
| 1900 | for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) { |
| 1901 | if (ExtVectorDecls[i]->getUnderlyingType() == VT) |
| 1902 | return Context.getTypedefType(ExtVectorDecls[i]); |
Steve Naroff | bea0b34 | 2007-07-29 16:33:31 +0000 | [diff] [blame] | 1903 | } |
| 1904 | 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] | 1905 | } |
| 1906 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1907 | static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1908 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1909 | const Selector &Sel, |
| 1910 | ASTContext &Context) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1911 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1912 | if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1913 | return PD; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1914 | if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1915 | return OMD; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1916 | |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1917 | for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(), |
| 1918 | E = PDecl->protocol_end(); I != E; ++I) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1919 | if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1920 | Context)) |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1921 | return D; |
| 1922 | } |
| 1923 | return 0; |
| 1924 | } |
| 1925 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1926 | static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1927 | IdentifierInfo *Member, |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1928 | const Selector &Sel, |
| 1929 | ASTContext &Context) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1930 | // Check protocols on qualified interfaces. |
| 1931 | Decl *GDecl = 0; |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1932 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1933 | E = QIdTy->qual_end(); I != E; ++I) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1934 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1935 | GDecl = PD; |
| 1936 | break; |
| 1937 | } |
| 1938 | // Also must look for a getter name which uses property syntax. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1939 | if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) { |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1940 | GDecl = OMD; |
| 1941 | break; |
| 1942 | } |
| 1943 | } |
| 1944 | if (!GDecl) { |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 1945 | for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(), |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1946 | E = QIdTy->qual_end(); I != E; ++I) { |
| 1947 | // Search in the protocol-qualifier list of current protocol. |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1948 | GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context); |
Fariborz Jahanian | 2ce1be0 | 2009-03-19 18:15:34 +0000 | [diff] [blame] | 1949 | if (GDecl) |
| 1950 | return GDecl; |
| 1951 | } |
| 1952 | } |
| 1953 | return GDecl; |
| 1954 | } |
Chris Lattner | 76a642f | 2009-02-15 22:43:40 +0000 | [diff] [blame] | 1955 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1956 | Action::OwningExprResult |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 1957 | Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1958 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1959 | DeclarationName MemberName, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 1960 | bool HasExplicitTemplateArgs, |
| 1961 | SourceLocation LAngleLoc, |
| 1962 | const TemplateArgument *ExplicitTemplateArgs, |
| 1963 | unsigned NumExplicitTemplateArgs, |
| 1964 | SourceLocation RAngleLoc, |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 1965 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS, |
| 1966 | NamedDecl *FirstQualifierInScope) { |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 1967 | if (SS && SS->isInvalid()) |
| 1968 | return ExprError(); |
| 1969 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 1970 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 1971 | Base = MaybeConvertParenListExprToParenExpr(S, move(Base)); |
| 1972 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 1973 | Expr *BaseExpr = Base.takeAs<Expr>(); |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 1974 | assert(BaseExpr && "no base expression"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1975 | |
Steve Naroff | 3cc4af8 | 2007-12-16 21:42:28 +0000 | [diff] [blame] | 1976 | // Perform default conversions. |
| 1977 | DefaultFunctionArrayConversion(BaseExpr); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1978 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1979 | QualType BaseType = BaseExpr->getType(); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1980 | // If this is an Objective-C pseudo-builtin and a definition is provided then |
| 1981 | // use that. |
| 1982 | if (BaseType->isObjCIdType()) { |
| 1983 | // We have an 'id' type. Rather than fall through, we check if this |
| 1984 | // is a reference to 'isa'. |
| 1985 | if (BaseType != Context.ObjCIdRedefinitionType) { |
| 1986 | BaseType = Context.ObjCIdRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 1987 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1988 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 1989 | } |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 1990 | assert(!BaseType.isNull() && "no type for member expression"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 1991 | |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 1992 | // Handle properties on ObjC 'Class' types. |
| 1993 | if (OpKind == tok::period && BaseType->isObjCClassType()) { |
| 1994 | // Also must look for a getter name which uses property syntax. |
| 1995 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 1996 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
| 1997 | if (ObjCMethodDecl *MD = getCurMethodDecl()) { |
| 1998 | ObjCInterfaceDecl *IFace = MD->getClassInterface(); |
| 1999 | ObjCMethodDecl *Getter; |
| 2000 | // FIXME: need to also look locally in the implementation. |
| 2001 | if ((Getter = IFace->lookupClassMethod(Sel))) { |
| 2002 | // Check the use of this method. |
| 2003 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2004 | return ExprError(); |
| 2005 | } |
| 2006 | // If we found a getter then this may be a valid dot-reference, we |
| 2007 | // will look for the matching setter, in case it is needed. |
| 2008 | Selector SetterSel = |
| 2009 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
| 2010 | PP.getSelectorTable(), Member); |
| 2011 | ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); |
| 2012 | if (!Setter) { |
| 2013 | // If this reference is in an @implementation, also check for 'private' |
| 2014 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2015 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2016 | } |
| 2017 | // Look through local category implementations associated with the class. |
| 2018 | if (!Setter) |
| 2019 | Setter = IFace->getCategoryClassMethod(SetterSel); |
| 2020 | |
| 2021 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2022 | return ExprError(); |
| 2023 | |
| 2024 | if (Getter || Setter) { |
| 2025 | QualType PType; |
| 2026 | |
| 2027 | if (Getter) |
| 2028 | PType = Getter->getResultType(); |
| 2029 | else |
| 2030 | // Get the expression type from Setter's incoming parameter. |
| 2031 | PType = (*(Setter->param_end() -1))->getType(); |
| 2032 | // FIXME: we must check that the setter has property type. |
| 2033 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, |
| 2034 | PType, |
| 2035 | Setter, MemberLoc, BaseExpr)); |
| 2036 | } |
| 2037 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
| 2038 | << MemberName << BaseType); |
| 2039 | } |
| 2040 | } |
| 2041 | |
| 2042 | if (BaseType->isObjCClassType() && |
| 2043 | BaseType != Context.ObjCClassRedefinitionType) { |
| 2044 | BaseType = Context.ObjCClassRedefinitionType; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 2045 | ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2046 | } |
| 2047 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2048 | // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr |
| 2049 | // must have pointer type, and the accessed type is the pointee. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2050 | if (OpKind == tok::arrow) { |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2051 | if (BaseType->isDependentType()) { |
| 2052 | NestedNameSpecifier *Qualifier = 0; |
| 2053 | if (SS) { |
| 2054 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 2055 | if (!FirstQualifierInScope) |
| 2056 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 2057 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2058 | |
| 2059 | return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2060 | OpLoc, Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2061 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2062 | FirstQualifierInScope, |
| 2063 | MemberName, |
| 2064 | MemberLoc, |
| 2065 | HasExplicitTemplateArgs, |
| 2066 | LAngleLoc, |
| 2067 | ExplicitTemplateArgs, |
| 2068 | NumExplicitTemplateArgs, |
| 2069 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2070 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2071 | else if (const PointerType *PT = BaseType->getAs<PointerType>()) |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2072 | BaseType = PT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2073 | else if (BaseType->isObjCObjectPointerType()) |
| 2074 | ; |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2075 | else |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2076 | return ExprError(Diag(MemberLoc, |
| 2077 | diag::err_typecheck_member_reference_arrow) |
| 2078 | << BaseType << BaseExpr->getSourceRange()); |
Fariborz Jahanian | b2ef1be | 2009-09-22 16:48:37 +0000 | [diff] [blame] | 2079 | } else if (BaseType->isDependentType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2080 | // Require that the base type isn't a pointer type |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2081 | // (so we'll report an error for) |
| 2082 | // T* t; |
| 2083 | // t.f; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2084 | // |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2085 | // In Obj-C++, however, the above expression is valid, since it could be |
| 2086 | // accessing the 'f' property if T is an Obj-C interface. The extra check |
| 2087 | // 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] | 2088 | const PointerType *PT = BaseType->getAs<PointerType>(); |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2089 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2090 | if (!PT || (getLangOptions().ObjC1 && |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2091 | !PT->getPointeeType()->isRecordType())) { |
| 2092 | NestedNameSpecifier *Qualifier = 0; |
| 2093 | if (SS) { |
| 2094 | Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep()); |
| 2095 | if (!FirstQualifierInScope) |
| 2096 | FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier); |
| 2097 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2098 | |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2099 | return Owned(CXXUnresolvedMemberExpr::Create(Context, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2100 | BaseExpr, false, |
| 2101 | OpLoc, |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2102 | Qualifier, |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2103 | SS? SS->getRange() : SourceRange(), |
Douglas Gregor | 3b6afbb | 2009-09-09 00:23:06 +0000 | [diff] [blame] | 2104 | FirstQualifierInScope, |
| 2105 | MemberName, |
| 2106 | MemberLoc, |
| 2107 | HasExplicitTemplateArgs, |
| 2108 | LAngleLoc, |
| 2109 | ExplicitTemplateArgs, |
| 2110 | NumExplicitTemplateArgs, |
| 2111 | RAngleLoc)); |
Douglas Gregor | c68afe2 | 2009-09-03 21:38:09 +0000 | [diff] [blame] | 2112 | } |
Anders Carlsson | 4ef2770 | 2009-05-16 20:31:20 +0000 | [diff] [blame] | 2113 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2114 | |
Chris Lattner | 68a057b | 2008-07-21 04:36:39 +0000 | [diff] [blame] | 2115 | // Handle field access to simple records. This also handles access to fields |
| 2116 | // of the ObjC 'id' struct. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2117 | if (const RecordType *RTy = BaseType->getAs<RecordType>()) { |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2118 | RecordDecl *RDecl = RTy->getDecl(); |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 2119 | if (RequireCompleteType(OpLoc, BaseType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2120 | PDiag(diag::err_typecheck_incomplete_tag) |
| 2121 | << BaseExpr->getSourceRange())) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 2122 | return ExprError(); |
| 2123 | |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2124 | DeclContext *DC = RDecl; |
| 2125 | if (SS && SS->isSet()) { |
| 2126 | // If the member name was a qualified-id, look into the |
| 2127 | // nested-name-specifier. |
| 2128 | DC = computeDeclContext(*SS, false); |
Douglas Gregor | 8d1c9ae | 2009-10-17 22:37:54 +0000 | [diff] [blame] | 2129 | |
| 2130 | if (!isa<TypeDecl>(DC)) { |
| 2131 | Diag(MemberLoc, diag::err_qualified_member_nonclass) |
| 2132 | << DC << SS->getRange(); |
| 2133 | return ExprError(); |
| 2134 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2135 | |
| 2136 | // FIXME: If DC is not computable, we should build a |
Douglas Gregor | fe85ced | 2009-08-06 03:17:00 +0000 | [diff] [blame] | 2137 | // CXXUnresolvedMemberExpr. |
| 2138 | assert(DC && "Cannot handle non-computable dependent contexts in lookup"); |
| 2139 | } |
| 2140 | |
Steve Naroff | dfa6aae | 2007-07-26 03:11:44 +0000 | [diff] [blame] | 2141 | // The record definition is complete, now make sure the member is valid. |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2142 | LookupResult Result; |
| 2143 | LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false); |
Douglas Gregor | 7176fff | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2144 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2145 | if (Result.empty()) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 2146 | return ExprError(Diag(MemberLoc, diag::err_no_member) |
| 2147 | << MemberName << DC << BaseExpr->getSourceRange()); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2148 | if (Result.isAmbiguous()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2149 | DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc, |
| 2150 | BaseExpr->getSourceRange()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2151 | return ExprError(); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2152 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2153 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2154 | NamedDecl *MemberDecl = Result.getAsSingleDecl(Context); |
| 2155 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2156 | if (SS && SS->isSet()) { |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2157 | TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2158 | QualType BaseTypeCanon |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2159 | = Context.getCanonicalType(BaseType).getUnqualifiedType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2160 | QualType MemberTypeCanon |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2161 | = Context.getCanonicalType(Context.getTypeDeclType(TyD)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2162 | |
Douglas Gregor | a38c687 | 2009-09-03 16:14:30 +0000 | [diff] [blame] | 2163 | if (BaseTypeCanon != MemberTypeCanon && |
| 2164 | !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon)) |
| 2165 | return ExprError(Diag(SS->getBeginLoc(), |
| 2166 | diag::err_not_direct_base_or_virtual) |
| 2167 | << MemberTypeCanon << BaseTypeCanon); |
| 2168 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2169 | |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2170 | // If the decl being referenced had an error, return an error for this |
| 2171 | // sub-expr without emitting another error, in order to avoid cascading |
| 2172 | // error cases. |
| 2173 | if (MemberDecl->isInvalidDecl()) |
| 2174 | return ExprError(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2175 | |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2176 | bool ShouldCheckUse = true; |
| 2177 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) { |
| 2178 | // Don't diagnose the use of a virtual member function unless it's |
| 2179 | // explicitly qualified. |
| 2180 | if (MD->isVirtual() && (!SS || !SS->isSet())) |
| 2181 | ShouldCheckUse = false; |
| 2182 | } |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 2183 | |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2184 | // Check the use of this field |
Anders Carlsson | 0f72856 | 2009-09-10 20:48:14 +0000 | [diff] [blame] | 2185 | if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2186 | return ExprError(); |
Chris Lattner | 56cd21b | 2009-02-13 22:08:30 +0000 | [diff] [blame] | 2187 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 2188 | if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) { |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2189 | // We may have found a field within an anonymous union or struct |
| 2190 | // (C++ [class.union]). |
| 2191 | if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion()) |
Sebastian Redl | cd965b9 | 2009-01-18 18:53:16 +0000 | [diff] [blame] | 2192 | return BuildAnonymousStructUnionMemberReference(MemberLoc, FD, |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2193 | BaseExpr, OpLoc); |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 2194 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2195 | // 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] | 2196 | QualType MemberType = FD->getType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2197 | if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2198 | MemberType = Ref->getPointeeType(); |
| 2199 | else { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2200 | Qualifiers BaseQuals = BaseType.getQualifiers(); |
| 2201 | BaseQuals.removeObjCGCAttr(); |
| 2202 | if (FD->isMutable()) BaseQuals.removeConst(); |
| 2203 | |
| 2204 | Qualifiers MemberQuals |
| 2205 | = Context.getCanonicalType(MemberType).getQualifiers(); |
| 2206 | |
| 2207 | Qualifiers Combined = BaseQuals + MemberQuals; |
| 2208 | if (Combined != MemberQuals) |
| 2209 | MemberType = Context.getQualifiedType(MemberType, Combined); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2210 | } |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2211 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2212 | MarkDeclarationReferenced(MemberLoc, FD); |
Fariborz Jahanian | f3e53d3 | 2009-07-29 19:40:11 +0000 | [diff] [blame] | 2213 | if (PerformObjectMemberConversion(BaseExpr, FD)) |
| 2214 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2215 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2216 | FD, MemberLoc, MemberType)); |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2217 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2218 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2219 | if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) { |
| 2220 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2221 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2222 | Var, MemberLoc, |
| 2223 | Var->getType().getNonReferenceType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2224 | } |
| 2225 | if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) { |
| 2226 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2227 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2228 | MemberFn, MemberLoc, |
| 2229 | MemberFn->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2230 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2231 | if (FunctionTemplateDecl *FunTmpl |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2232 | = dyn_cast<FunctionTemplateDecl>(MemberDecl)) { |
| 2233 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2234 | |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2235 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2236 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2237 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2238 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2239 | FunTmpl, MemberLoc, true, |
| 2240 | LAngleLoc, ExplicitTemplateArgs, |
| 2241 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2242 | Context.OverloadTy)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2243 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2244 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2245 | FunTmpl, MemberLoc, |
| 2246 | Context.OverloadTy)); |
Douglas Gregor | 6b90686 | 2009-08-21 00:16:32 +0000 | [diff] [blame] | 2247 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2248 | if (OverloadedFunctionDecl *Ovl |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2249 | = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) { |
| 2250 | if (HasExplicitTemplateArgs) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2251 | return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow, |
| 2252 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2253 | SS? SS->getRange() : SourceRange(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2254 | Ovl, MemberLoc, true, |
| 2255 | LAngleLoc, ExplicitTemplateArgs, |
| 2256 | NumExplicitTemplateArgs, RAngleLoc, |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2257 | Context.OverloadTy)); |
| 2258 | |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2259 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2260 | Ovl, MemberLoc, Context.OverloadTy)); |
Douglas Gregor | c4bf26f | 2009-09-01 00:37:14 +0000 | [diff] [blame] | 2261 | } |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2262 | if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) { |
| 2263 | MarkDeclarationReferenced(MemberLoc, MemberDecl); |
Douglas Gregor | bd4c4ae | 2009-08-26 22:36:53 +0000 | [diff] [blame] | 2264 | return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS, |
| 2265 | Enum, MemberLoc, Enum->getType())); |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 2266 | } |
Chris Lattner | a3d2524 | 2009-03-31 08:18:48 +0000 | [diff] [blame] | 2267 | if (isa<TypeDecl>(MemberDecl)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2268 | return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2269 | << MemberName << int(OpKind == tok::arrow)); |
Eli Friedman | 5101907 | 2008-02-06 22:48:16 +0000 | [diff] [blame] | 2270 | |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 2271 | // We found a declaration kind that we didn't expect. This is a |
| 2272 | // generic error message that tells the user that she can't refer |
| 2273 | // to this member with '.' or '->'. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2274 | return ExprError(Diag(MemberLoc, |
| 2275 | diag::err_typecheck_member_reference_unknown) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2276 | << MemberName << int(OpKind == tok::arrow)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2277 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2278 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2279 | // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring |
| 2280 | // into a record type was handled above, any destructor we see here is a |
| 2281 | // pseudo-destructor. |
| 2282 | if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) { |
| 2283 | // C++ [expr.pseudo]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2284 | // The left hand side of the dot operator shall be of scalar type. The |
| 2285 | // 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] | 2286 | // type. |
| 2287 | if (!BaseType->isScalarType()) |
| 2288 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar) |
| 2289 | << BaseType << BaseExpr->getSourceRange()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2290 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2291 | // [...] The type designated by the pseudo-destructor-name shall be the |
| 2292 | // same as the object type. |
| 2293 | if (!MemberName.getCXXNameType()->isDependentType() && |
| 2294 | !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType())) |
| 2295 | return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch) |
| 2296 | << BaseType << MemberName.getCXXNameType() |
| 2297 | << BaseExpr->getSourceRange() << SourceRange(MemberLoc)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2298 | |
| 2299 | // [...] Furthermore, the two type-names in a pseudo-destructor-name of |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2300 | // the form |
| 2301 | // |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2302 | // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name |
| 2303 | // |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2304 | // shall designate the same scalar type. |
| 2305 | // |
| 2306 | // FIXME: DPG can't see any way to trigger this particular clause, so it |
| 2307 | // isn't checked here. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2308 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2309 | // FIXME: We've lost the precise spelling of the type by going through |
| 2310 | // DeclarationName. Can we do better? |
| 2311 | return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2312 | OpKind == tok::arrow, |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2313 | OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2314 | (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0), |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2315 | SS? SS->getRange() : SourceRange(), |
| 2316 | MemberName.getCXXNameType(), |
| 2317 | MemberLoc)); |
| 2318 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2319 | |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2320 | // Handle access to Objective-C instance variables, such as "Obj->ivar" and |
| 2321 | // (*Obj).ivar. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2322 | if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) || |
| 2323 | (OpKind == tok::period && BaseType->isObjCInterfaceType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2324 | const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2325 | const ObjCInterfaceType *IFaceT = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2326 | OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>(); |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2327 | if (IFaceT) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2328 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
| 2329 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2330 | ObjCInterfaceDecl *IDecl = IFaceT->getDecl(); |
| 2331 | ObjCInterfaceDecl *ClassDeclared; |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2332 | ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2333 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2334 | if (IV) { |
| 2335 | // If the decl being referenced had an error, return an error for this |
| 2336 | // sub-expr without emitting another error, in order to avoid cascading |
| 2337 | // error cases. |
| 2338 | if (IV->isInvalidDecl()) |
| 2339 | return ExprError(); |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2340 | |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2341 | // Check whether we can reference this field. |
| 2342 | if (DiagnoseUseOfDecl(IV, MemberLoc)) |
| 2343 | return ExprError(); |
| 2344 | if (IV->getAccessControl() != ObjCIvarDecl::Public && |
| 2345 | IV->getAccessControl() != ObjCIvarDecl::Package) { |
| 2346 | ObjCInterfaceDecl *ClassOfMethodDecl = 0; |
| 2347 | if (ObjCMethodDecl *MD = getCurMethodDecl()) |
| 2348 | ClassOfMethodDecl = MD->getClassInterface(); |
| 2349 | else if (ObjCImpDecl && getCurFunctionDecl()) { |
| 2350 | // Case of a c-function declared inside an objc implementation. |
| 2351 | // FIXME: For a c-style function nested inside an objc implementation |
| 2352 | // class, there is no implementation context available, so we pass |
| 2353 | // down the context as argument to this routine. Ideally, this context |
| 2354 | // need be passed down in the AST node and somehow calculated from the |
| 2355 | // AST for a function decl. |
| 2356 | Decl *ImplDecl = ObjCImpDecl.getAs<Decl>(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2357 | if (ObjCImplementationDecl *IMPD = |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2358 | dyn_cast<ObjCImplementationDecl>(ImplDecl)) |
| 2359 | ClassOfMethodDecl = IMPD->getClassInterface(); |
| 2360 | else if (ObjCCategoryImplDecl* CatImplClass = |
| 2361 | dyn_cast<ObjCCategoryImplDecl>(ImplDecl)) |
| 2362 | ClassOfMethodDecl = CatImplClass->getClassInterface(); |
| 2363 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2364 | |
| 2365 | if (IV->getAccessControl() == ObjCIvarDecl::Private) { |
| 2366 | if (ClassDeclared != IDecl || |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2367 | ClassOfMethodDecl != ClassDeclared) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2368 | Diag(MemberLoc, diag::error_private_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2369 | << IV->getDeclName(); |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 2370 | } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl)) |
| 2371 | // @protected |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2372 | Diag(MemberLoc, diag::error_protected_ivar_access) |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2373 | << IV->getDeclName(); |
Steve Naroff | b06d875 | 2009-03-04 18:34:24 +0000 | [diff] [blame] | 2374 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2375 | |
| 2376 | return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(), |
| 2377 | MemberLoc, BaseExpr, |
| 2378 | OpKind == tok::arrow)); |
Fariborz Jahanian | 935fd76 | 2009-03-03 01:21:12 +0000 | [diff] [blame] | 2379 | } |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2380 | return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2381 | << IDecl->getDeclName() << MemberName |
Steve Naroff | c70e8d9 | 2009-07-16 00:25:06 +0000 | [diff] [blame] | 2382 | << BaseExpr->getSourceRange()); |
Fariborz Jahanian | aaa63a7 | 2008-12-13 22:20:28 +0000 | [diff] [blame] | 2383 | } |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2384 | } |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2385 | // Handle properties on 'id' and qualified "id". |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2386 | if (OpKind == tok::period && (BaseType->isObjCIdType() || |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2387 | BaseType->isObjCQualifiedIdType())) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2388 | const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2389 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2390 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2391 | // Check protocols on qualified interfaces. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2392 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2393 | if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) { |
| 2394 | if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) { |
| 2395 | // Check the use of this declaration |
| 2396 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2397 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2398 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2399 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2400 | MemberLoc, BaseExpr)); |
| 2401 | } |
| 2402 | if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) { |
| 2403 | // Check the use of this method. |
| 2404 | if (DiagnoseUseOfDecl(OMD, MemberLoc)) |
| 2405 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2406 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2407 | return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2408 | OMD->getResultType(), |
| 2409 | OMD, OpLoc, MemberLoc, |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2410 | NULL, 0)); |
| 2411 | } |
| 2412 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2413 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2414 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2415 | << MemberName << BaseType); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2416 | } |
Chris Lattner | a38e6b1 | 2008-07-21 04:59:05 +0000 | [diff] [blame] | 2417 | // Handle Objective-C property access, which is "Obj.property" where Obj is a |
| 2418 | // pointer to a (potentially qualified) interface type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2419 | const ObjCObjectPointerType *OPT; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2420 | if (OpKind == tok::period && |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2421 | (OPT = BaseType->getAsObjCInterfacePointerType())) { |
| 2422 | const ObjCInterfaceType *IFaceT = OPT->getInterfaceType(); |
| 2423 | ObjCInterfaceDecl *IFace = IFaceT->getDecl(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2424 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2425 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2426 | // Search for a declared property first. |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2427 | if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2428 | // Check whether we can reference this property. |
| 2429 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2430 | return ExprError(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2431 | QualType ResTy = PD->getType(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2432 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2433 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Fariborz Jahanian | c001e89 | 2009-05-08 20:20:55 +0000 | [diff] [blame] | 2434 | if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc)) |
| 2435 | ResTy = Getter->getResultType(); |
Fariborz Jahanian | 4c2743f | 2009-05-08 19:36:34 +0000 | [diff] [blame] | 2436 | return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy, |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2437 | MemberLoc, BaseExpr)); |
| 2438 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2439 | // Check protocols on qualified interfaces. |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 2440 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2441 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2442 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2443 | // Check whether we can reference this property. |
| 2444 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2445 | return ExprError(); |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2446 | |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2447 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
Chris Lattner | 7eba82e | 2009-02-16 18:35:08 +0000 | [diff] [blame] | 2448 | MemberLoc, BaseExpr)); |
| 2449 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2450 | for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(), |
| 2451 | E = OPT->qual_end(); I != E; ++I) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2452 | if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2453 | // Check whether we can reference this property. |
| 2454 | if (DiagnoseUseOfDecl(PD, MemberLoc)) |
| 2455 | return ExprError(); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2456 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 2457 | return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(), |
| 2458 | MemberLoc, BaseExpr)); |
| 2459 | } |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2460 | // If that failed, look for an "implicit" property by seeing if the nullary |
| 2461 | // selector is implemented. |
| 2462 | |
| 2463 | // FIXME: The logic for looking up nullary and unary selectors should be |
| 2464 | // shared with the code in ActOnInstanceMessage. |
| 2465 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2466 | Selector Sel = PP.getSelectorTable().getNullarySelector(Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2467 | ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2468 | |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2469 | // If this reference is in an @implementation, check for 'private' methods. |
| 2470 | if (!Getter) |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2471 | Getter = IFace->lookupPrivateInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2472 | |
Steve Naroff | 7692ed6 | 2008-10-22 19:16:27 +0000 | [diff] [blame] | 2473 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2474 | if (!Getter) |
| 2475 | Getter = IFace->getCategoryInstanceMethod(Sel); |
Daniel Dunbar | 2307d31 | 2008-09-03 01:05:41 +0000 | [diff] [blame] | 2476 | if (Getter) { |
Douglas Gregor | 48f3bb9 | 2009-02-18 21:56:37 +0000 | [diff] [blame] | 2477 | // Check if we can reference this property. |
| 2478 | if (DiagnoseUseOfDecl(Getter, MemberLoc)) |
| 2479 | return ExprError(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2480 | } |
| 2481 | // If we found a getter then this may be a valid dot-reference, we |
| 2482 | // will look for the matching setter, in case it is needed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2483 | Selector SetterSel = |
| 2484 | SelectorTable::constructSetterName(PP.getIdentifierTable(), |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2485 | PP.getSelectorTable(), Member); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2486 | ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2487 | if (!Setter) { |
| 2488 | // If this reference is in an @implementation, also check for 'private' |
| 2489 | // methods. |
Steve Naroff | d789d3d | 2009-10-01 23:46:04 +0000 | [diff] [blame] | 2490 | Setter = IFace->lookupPrivateInstanceMethod(SetterSel); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2491 | } |
| 2492 | // Look through local category implementations associated with the class. |
Argyrios Kyrtzidis | 1cb35dd | 2009-07-21 00:06:20 +0000 | [diff] [blame] | 2493 | if (!Setter) |
| 2494 | Setter = IFace->getCategoryInstanceMethod(SetterSel); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2495 | |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2496 | if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) |
| 2497 | return ExprError(); |
| 2498 | |
| 2499 | if (Getter || Setter) { |
| 2500 | QualType PType; |
| 2501 | |
| 2502 | if (Getter) |
| 2503 | PType = Getter->getResultType(); |
Fariborz Jahanian | 154440e | 2009-08-18 20:50:23 +0000 | [diff] [blame] | 2504 | else |
| 2505 | // Get the expression type from Setter's incoming parameter. |
| 2506 | PType = (*(Setter->param_end() -1))->getType(); |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2507 | // FIXME: we must check that the setter has property type. |
Fariborz Jahanian | 09105f5 | 2009-08-20 17:02:02 +0000 | [diff] [blame] | 2508 | return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType, |
Steve Naroff | 1ca6694 | 2009-03-11 13:48:17 +0000 | [diff] [blame] | 2509 | Setter, MemberLoc, BaseExpr)); |
| 2510 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2511 | return ExprError(Diag(MemberLoc, diag::err_property_not_found) |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2512 | << MemberName << BaseType); |
Fariborz Jahanian | 232220c | 2007-11-12 22:29:28 +0000 | [diff] [blame] | 2513 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2514 | |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2515 | // Handle the following exceptional case (*Obj).isa. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2516 | if (OpKind == tok::period && |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2517 | BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) && |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2518 | MemberName.getAsIdentifierInfo()->isStr("isa")) |
Steve Naroff | f242b1b | 2009-07-24 17:54:45 +0000 | [diff] [blame] | 2519 | return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc, |
| 2520 | Context.getObjCIdType())); |
| 2521 | |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2522 | // Handle 'field access' to vectors, such as 'V.xx'. |
Chris Lattner | 73525de | 2009-02-16 21:11:58 +0000 | [diff] [blame] | 2523 | if (BaseType->isExtVectorType()) { |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2524 | IdentifierInfo *Member = MemberName.getAsIdentifierInfo(); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2525 | QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc); |
| 2526 | if (ret.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2527 | return ExprError(); |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2528 | return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 2529 | MemberLoc)); |
Chris Lattner | fb173ec | 2008-07-21 04:28:12 +0000 | [diff] [blame] | 2530 | } |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2531 | |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2532 | Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union) |
| 2533 | << BaseType << BaseExpr->getSourceRange(); |
| 2534 | |
| 2535 | // If the user is trying to apply -> or . to a function or function |
| 2536 | // pointer, it's probably because they forgot parentheses to call |
| 2537 | // the function. Suggest the addition of those parentheses. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2538 | if (BaseType == Context.OverloadTy || |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2539 | BaseType->isFunctionType() || |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2540 | (BaseType->isPointerType() && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2541 | BaseType->getAs<PointerType>()->isFunctionType())) { |
Douglas Gregor | 214f31a | 2009-03-27 06:00:30 +0000 | [diff] [blame] | 2542 | SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd()); |
| 2543 | Diag(Loc, diag::note_member_reference_needs_call) |
| 2544 | << CodeModificationHint::CreateInsertion(Loc, "()"); |
| 2545 | } |
| 2546 | |
| 2547 | return ExprError(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2548 | } |
| 2549 | |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2550 | Action::OwningExprResult |
| 2551 | Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc, |
| 2552 | tok::TokenKind OpKind, SourceLocation MemberLoc, |
| 2553 | IdentifierInfo &Member, |
| 2554 | DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2555 | return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc, |
Anders Carlsson | 8f28f99 | 2009-08-26 18:25:21 +0000 | [diff] [blame] | 2556 | DeclarationName(&Member), ObjCImpDecl, SS); |
| 2557 | } |
| 2558 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2559 | Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc, |
| 2560 | FunctionDecl *FD, |
| 2561 | ParmVarDecl *Param) { |
| 2562 | if (Param->hasUnparsedDefaultArg()) { |
| 2563 | Diag (CallLoc, |
| 2564 | diag::err_use_of_default_argument_to_function_declared_later) << |
| 2565 | FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2566 | Diag(UnparsedDefaultArgLocs[Param], |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2567 | diag::note_default_argument_declared_here); |
| 2568 | } else { |
| 2569 | if (Param->hasUninstantiatedDefaultArg()) { |
| 2570 | Expr *UninstExpr = Param->getUninstantiatedDefaultArg(); |
| 2571 | |
| 2572 | // Instantiate the expression. |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2573 | MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD); |
Anders Carlsson | 25cae7f | 2009-09-05 05:14:19 +0000 | [diff] [blame] | 2574 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2575 | InstantiatingTemplate Inst(*this, CallLoc, Param, |
| 2576 | ArgList.getInnermost().getFlatArgumentList(), |
Douglas Gregor | d6350ae | 2009-08-28 20:31:08 +0000 | [diff] [blame] | 2577 | ArgList.getInnermost().flat_size()); |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2578 | |
John McCall | ce3ff2b | 2009-08-25 22:02:44 +0000 | [diff] [blame] | 2579 | OwningExprResult Result = SubstExpr(UninstExpr, ArgList); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2580 | if (Result.isInvalid()) |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2581 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2582 | |
| 2583 | if (SetParamDefaultArgument(Param, move(Result), |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2584 | /*FIXME:EqualLoc*/ |
| 2585 | UninstExpr->getSourceRange().getBegin())) |
| 2586 | return ExprError(); |
| 2587 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2588 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2589 | Expr *DefaultExpr = Param->getDefaultArg(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2590 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2591 | // If the default expression creates temporaries, we need to |
| 2592 | // push them to the current stack of expression temporaries so they'll |
| 2593 | // be properly destroyed. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2594 | if (CXXExprWithTemporaries *E |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2595 | = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2596 | assert(!E->shouldDestroyTemporaries() && |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2597 | "Can't destroy temporaries in a default argument expr!"); |
| 2598 | for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I) |
| 2599 | ExprTemporaries.push_back(E->getTemporary(I)); |
| 2600 | } |
| 2601 | } |
| 2602 | |
| 2603 | // We already type-checked the argument, so we know it works. |
| 2604 | return Owned(CXXDefaultArgExpr::Create(Context, Param)); |
| 2605 | } |
| 2606 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2607 | /// ConvertArgumentsForCall - Converts the arguments specified in |
| 2608 | /// Args/NumArgs to the parameter types of the function FDecl with |
| 2609 | /// function prototype Proto. Call is the call expression itself, and |
| 2610 | /// Fn is the function expression. For a C++ member function, this |
| 2611 | /// routine does not attempt to convert the object argument. Returns |
| 2612 | /// true if the call is ill-formed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2613 | bool |
| 2614 | Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2615 | FunctionDecl *FDecl, |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2616 | const FunctionProtoType *Proto, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2617 | Expr **Args, unsigned NumArgs, |
| 2618 | SourceLocation RParenLoc) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2619 | // 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] | 2620 | // assignment, to the types of the corresponding parameter, ... |
| 2621 | unsigned NumArgsInProto = Proto->getNumArgs(); |
| 2622 | unsigned NumArgsToCheck = NumArgs; |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2623 | bool Invalid = false; |
| 2624 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2625 | // If too few arguments are available (and we don't have default |
| 2626 | // arguments for the remaining parameters), don't make the call. |
| 2627 | if (NumArgs < NumArgsInProto) { |
| 2628 | if (!FDecl || NumArgs < FDecl->getMinRequiredArguments()) |
| 2629 | return Diag(RParenLoc, diag::err_typecheck_call_too_few_args) |
| 2630 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange(); |
| 2631 | // Use default arguments for missing arguments |
| 2632 | NumArgsToCheck = NumArgsInProto; |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2633 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2634 | } |
| 2635 | |
| 2636 | // If too many are passed and not variadic, error on the extras and drop |
| 2637 | // them. |
| 2638 | if (NumArgs > NumArgsInProto) { |
| 2639 | if (!Proto->isVariadic()) { |
| 2640 | Diag(Args[NumArgsInProto]->getLocStart(), |
| 2641 | diag::err_typecheck_call_too_many_args) |
| 2642 | << Fn->getType()->isBlockPointerType() << Fn->getSourceRange() |
| 2643 | << SourceRange(Args[NumArgsInProto]->getLocStart(), |
| 2644 | Args[NumArgs-1]->getLocEnd()); |
| 2645 | // This deletes the extra arguments. |
Ted Kremenek | 8189cde | 2009-02-07 01:47:29 +0000 | [diff] [blame] | 2646 | Call->setNumArgs(Context, NumArgsInProto); |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2647 | Invalid = true; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2648 | } |
| 2649 | NumArgsToCheck = NumArgsInProto; |
| 2650 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2651 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2652 | // Continue to check argument types (even if we have too few/many args). |
| 2653 | for (unsigned i = 0; i != NumArgsToCheck; i++) { |
| 2654 | QualType ProtoArgType = Proto->getArgType(i); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2655 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2656 | Expr *Arg; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2657 | if (i < NumArgs) { |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2658 | Arg = Args[i]; |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2659 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2660 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2661 | ProtoArgType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2662 | PDiag(diag::err_call_incomplete_argument) |
| 2663 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2664 | return true; |
| 2665 | |
Douglas Gregor | 61366e9 | 2008-12-24 00:01:03 +0000 | [diff] [blame] | 2666 | // Pass the argument. |
| 2667 | if (PerformCopyInitialization(Arg, ProtoArgType, "passing")) |
| 2668 | return true; |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2669 | } else { |
Anders Carlsson | ed961f9 | 2009-08-25 02:29:20 +0000 | [diff] [blame] | 2670 | ParmVarDecl *Param = FDecl->getParamDecl(i); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2671 | |
| 2672 | OwningExprResult ArgExpr = |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2673 | BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(), |
| 2674 | FDecl, Param); |
| 2675 | if (ArgExpr.isInvalid()) |
| 2676 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2677 | |
Anders Carlsson | 56c5e33 | 2009-08-25 03:49:14 +0000 | [diff] [blame] | 2678 | Arg = ArgExpr.takeAs<Expr>(); |
Anders Carlsson | 5e300d1 | 2009-06-12 16:51:40 +0000 | [diff] [blame] | 2679 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2680 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2681 | Call->setArg(i, Arg); |
| 2682 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2683 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2684 | // If this is a variadic call, handle args passed through "...". |
| 2685 | if (Proto->isVariadic()) { |
Anders Carlsson | dce5e2c | 2009-01-16 16:48:51 +0000 | [diff] [blame] | 2686 | VariadicCallType CallType = VariadicFunction; |
| 2687 | if (Fn->getType()->isBlockPointerType()) |
| 2688 | CallType = VariadicBlock; // Block |
| 2689 | else if (isa<MemberExpr>(Fn)) |
| 2690 | CallType = VariadicMethod; |
| 2691 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2692 | // Promote the arguments (C99 6.5.2.2p7). |
| 2693 | for (unsigned i = NumArgsInProto; i != NumArgs; i++) { |
| 2694 | Expr *Arg = Args[i]; |
Chris Lattner | 312531a | 2009-04-12 08:11:20 +0000 | [diff] [blame] | 2695 | Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2696 | Call->setArg(i, Arg); |
| 2697 | } |
| 2698 | } |
| 2699 | |
Douglas Gregor | 3fd56d7 | 2009-01-23 21:30:56 +0000 | [diff] [blame] | 2700 | return Invalid; |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2701 | } |
| 2702 | |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2703 | /// \brief "Deconstruct" the function argument of a call expression to find |
| 2704 | /// the underlying declaration (if any), the name of the called function, |
| 2705 | /// whether argument-dependent lookup is available, whether it has explicit |
| 2706 | /// template arguments, etc. |
| 2707 | void Sema::DeconstructCallFunction(Expr *FnExpr, |
| 2708 | NamedDecl *&Function, |
| 2709 | DeclarationName &Name, |
| 2710 | NestedNameSpecifier *&Qualifier, |
| 2711 | SourceRange &QualifierRange, |
| 2712 | bool &ArgumentDependentLookup, |
| 2713 | bool &HasExplicitTemplateArguments, |
| 2714 | const TemplateArgument *&ExplicitTemplateArgs, |
| 2715 | unsigned &NumExplicitTemplateArgs) { |
| 2716 | // Set defaults for all of the output parameters. |
| 2717 | Function = 0; |
| 2718 | Name = DeclarationName(); |
| 2719 | Qualifier = 0; |
| 2720 | QualifierRange = SourceRange(); |
| 2721 | ArgumentDependentLookup = getLangOptions().CPlusPlus; |
| 2722 | HasExplicitTemplateArguments = false; |
| 2723 | |
| 2724 | // If we're directly calling a function, get the appropriate declaration. |
| 2725 | // Also, in C++, keep track of whether we should perform argument-dependent |
| 2726 | // lookup and whether there were any explicitly-specified template arguments. |
| 2727 | while (true) { |
| 2728 | if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr)) |
| 2729 | FnExpr = IcExpr->getSubExpr(); |
| 2730 | else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) { |
| 2731 | // Parentheses around a function disable ADL |
| 2732 | // (C++0x [basic.lookup.argdep]p1). |
| 2733 | ArgumentDependentLookup = false; |
| 2734 | FnExpr = PExpr->getSubExpr(); |
| 2735 | } else if (isa<UnaryOperator>(FnExpr) && |
| 2736 | cast<UnaryOperator>(FnExpr)->getOpcode() |
| 2737 | == UnaryOperator::AddrOf) { |
| 2738 | FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr(); |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2739 | } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) { |
| 2740 | Function = dyn_cast<NamedDecl>(DRExpr->getDecl()); |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 2741 | if ((Qualifier = DRExpr->getQualifier())) { |
| 2742 | ArgumentDependentLookup = false; |
| 2743 | QualifierRange = DRExpr->getQualifierRange(); |
| 2744 | } |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2745 | break; |
| 2746 | } else if (UnresolvedFunctionNameExpr *DepName |
| 2747 | = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) { |
| 2748 | Name = DepName->getName(); |
| 2749 | break; |
| 2750 | } else if (TemplateIdRefExpr *TemplateIdRef |
| 2751 | = dyn_cast<TemplateIdRefExpr>(FnExpr)) { |
| 2752 | Function = TemplateIdRef->getTemplateName().getAsTemplateDecl(); |
| 2753 | if (!Function) |
| 2754 | Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl(); |
| 2755 | HasExplicitTemplateArguments = true; |
| 2756 | ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs(); |
| 2757 | NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs(); |
| 2758 | |
| 2759 | // C++ [temp.arg.explicit]p6: |
| 2760 | // [Note: For simple function names, argument dependent lookup (3.4.2) |
| 2761 | // applies even when the function name is not visible within the |
| 2762 | // scope of the call. This is because the call still has the syntactic |
| 2763 | // form of a function call (3.4.1). But when a function template with |
| 2764 | // explicit template arguments is used, the call does not have the |
| 2765 | // correct syntactic form unless there is a function template with |
| 2766 | // that name visible at the point of the call. If no such name is |
| 2767 | // visible, the call is not syntactically well-formed and |
| 2768 | // argument-dependent lookup does not apply. If some such name is |
| 2769 | // visible, argument dependent lookup applies and additional function |
| 2770 | // templates may be found in other namespaces. |
| 2771 | // |
| 2772 | // The summary of this paragraph is that, if we get to this point and the |
| 2773 | // template-id was not a qualified name, then argument-dependent lookup |
| 2774 | // is still possible. |
| 2775 | if ((Qualifier = TemplateIdRef->getQualifier())) { |
| 2776 | ArgumentDependentLookup = false; |
| 2777 | QualifierRange = TemplateIdRef->getQualifierRange(); |
| 2778 | } |
| 2779 | break; |
| 2780 | } else { |
| 2781 | // Any kind of name that does not refer to a declaration (or |
| 2782 | // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3). |
| 2783 | ArgumentDependentLookup = false; |
| 2784 | break; |
| 2785 | } |
| 2786 | } |
| 2787 | } |
| 2788 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 2789 | /// ActOnCallExpr - Handle a call to Fn with the specified array of arguments. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 2790 | /// This provides the location of the left/right parens and a list of comma |
| 2791 | /// locations. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2792 | Action::OwningExprResult |
| 2793 | Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc, |
| 2794 | MultiExprArg args, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2795 | SourceLocation *CommaLocs, SourceLocation RParenLoc) { |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2796 | unsigned NumArgs = args.size(); |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 2797 | |
| 2798 | // Since this might be a postfix expression, get rid of ParenListExprs. |
| 2799 | fn = MaybeConvertParenListExprToParenExpr(S, move(fn)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2800 | |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 2801 | Expr *Fn = fn.takeAs<Expr>(); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2802 | Expr **Args = reinterpret_cast<Expr**>(args.release()); |
Chris Lattner | 74c469f | 2007-07-21 03:03:59 +0000 | [diff] [blame] | 2803 | assert(Fn && "no function call expression"); |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2804 | FunctionDecl *FDecl = NULL; |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 2805 | NamedDecl *NDecl = NULL; |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2806 | DeclarationName UnqualifiedName; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2807 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2808 | if (getLangOptions().CPlusPlus) { |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2809 | // If this is a pseudo-destructor expression, build the call immediately. |
| 2810 | if (isa<CXXPseudoDestructorExpr>(Fn)) { |
| 2811 | if (NumArgs > 0) { |
| 2812 | // Pseudo-destructor calls should not have any arguments. |
| 2813 | Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args) |
| 2814 | << CodeModificationHint::CreateRemoval( |
| 2815 | SourceRange(Args[0]->getLocStart(), |
| 2816 | Args[NumArgs-1]->getLocEnd())); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2817 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2818 | for (unsigned I = 0; I != NumArgs; ++I) |
| 2819 | Args[I]->Destroy(Context); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2820 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2821 | NumArgs = 0; |
| 2822 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2823 | |
Douglas Gregor | a71d819 | 2009-09-04 17:36:40 +0000 | [diff] [blame] | 2824 | return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy, |
| 2825 | RParenLoc)); |
| 2826 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2827 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2828 | // Determine whether this is a dependent call inside a C++ template, |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2829 | // in which case we won't do any semantic analysis now. |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 2830 | // FIXME: Will need to cache the results of name lookup (including ADL) in |
| 2831 | // Fn. |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2832 | bool Dependent = false; |
| 2833 | if (Fn->isTypeDependent()) |
| 2834 | Dependent = true; |
| 2835 | else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs)) |
| 2836 | Dependent = true; |
| 2837 | |
| 2838 | if (Dependent) |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2839 | return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs, |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2840 | Context.DependentTy, RParenLoc)); |
| 2841 | |
| 2842 | // Determine whether this is a call to an object (C++ [over.call.object]). |
| 2843 | if (Fn->getType()->isRecordType()) |
| 2844 | return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs, |
| 2845 | CommaLocs, RParenLoc)); |
| 2846 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2847 | // Determine whether this is a call to a member function. |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2848 | if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) { |
| 2849 | NamedDecl *MemDecl = MemExpr->getMemberDecl(); |
| 2850 | if (isa<OverloadedFunctionDecl>(MemDecl) || |
| 2851 | isa<CXXMethodDecl>(MemDecl) || |
| 2852 | (isa<FunctionTemplateDecl>(MemDecl) && |
| 2853 | isa<CXXMethodDecl>( |
| 2854 | cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl()))) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2855 | return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs, |
| 2856 | CommaLocs, RParenLoc)); |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2857 | } |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2858 | |
| 2859 | // Determine whether this is a call to a pointer-to-member function. |
| 2860 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) { |
| 2861 | if (BO->getOpcode() == BinaryOperator::PtrMemD || |
| 2862 | BO->getOpcode() == BinaryOperator::PtrMemI) { |
| 2863 | const FunctionProtoType *FPT = cast<FunctionProtoType>(BO->getType()); |
Anders Carlsson | 8d6d90d | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 2864 | QualType ResultTy = FPT->getResultType().getNonReferenceType(); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2865 | |
Anders Carlsson | 8d6d90d | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 2866 | ExprOwningPtr<CXXMemberCallExpr> |
| 2867 | TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args, |
| 2868 | NumArgs, ResultTy, |
| 2869 | RParenLoc)); |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2870 | |
Anders Carlsson | 8d6d90d | 2009-10-15 00:41:48 +0000 | [diff] [blame] | 2871 | if (CheckCallReturnType(FPT->getResultType(), |
| 2872 | BO->getRHS()->getSourceRange().getBegin(), |
| 2873 | TheCall.get(), 0)) |
| 2874 | return ExprError(); |
| 2875 | |
Anders Carlsson | 83ccfc3 | 2009-10-03 17:40:22 +0000 | [diff] [blame] | 2876 | if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs, |
| 2877 | RParenLoc)) |
| 2878 | return ExprError(); |
| 2879 | |
| 2880 | return Owned(MaybeBindToTemporary(TheCall.release()).release()); |
| 2881 | } |
| 2882 | } |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2883 | } |
| 2884 | |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2885 | // If we're directly calling a function, get the appropriate declaration. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2886 | // Also, in C++, keep track of whether we should perform argument-dependent |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2887 | // lookup and whether there were any explicitly-specified template arguments. |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2888 | bool ADL = true; |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2889 | bool HasExplicitTemplateArgs = 0; |
| 2890 | const TemplateArgument *ExplicitTemplateArgs = 0; |
| 2891 | unsigned NumExplicitTemplateArgs = 0; |
Douglas Gregor | 9c6a0e9 | 2009-09-22 15:41:20 +0000 | [diff] [blame] | 2892 | NestedNameSpecifier *Qualifier = 0; |
| 2893 | SourceRange QualifierRange; |
| 2894 | DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange, |
| 2895 | ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs, |
| 2896 | NumExplicitTemplateArgs); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2897 | |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2898 | OverloadedFunctionDecl *Ovl = 0; |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2899 | FunctionTemplateDecl *FunctionTemplate = 0; |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2900 | if (NDecl) { |
| 2901 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2902 | if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl))) |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2903 | FDecl = FunctionTemplate->getTemplatedDecl(); |
| 2904 | else |
Douglas Gregor | edce4dd | 2009-06-30 22:34:41 +0000 | [diff] [blame] | 2905 | FDecl = dyn_cast<FunctionDecl>(NDecl); |
| 2906 | Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl); |
Douglas Gregor | 1733001 | 2009-02-04 15:01:18 +0000 | [diff] [blame] | 2907 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2908 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2909 | if (Ovl || FunctionTemplate || |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2910 | (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) { |
Douglas Gregor | 3e41d60 | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 2911 | // We don't perform ADL for implicit declarations of builtins. |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 2912 | if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit()) |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2913 | ADL = false; |
| 2914 | |
Douglas Gregor | f9201e0 | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 2915 | // We don't perform ADL in C. |
| 2916 | if (!getLangOptions().CPlusPlus) |
| 2917 | ADL = false; |
| 2918 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 2919 | if (Ovl || FunctionTemplate || ADL) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2920 | FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2921 | HasExplicitTemplateArgs, |
| 2922 | ExplicitTemplateArgs, |
| 2923 | NumExplicitTemplateArgs, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2924 | LParenLoc, Args, NumArgs, CommaLocs, |
Douglas Gregor | 6db8ed4 | 2009-06-30 23:57:56 +0000 | [diff] [blame] | 2925 | RParenLoc, ADL); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2926 | if (!FDecl) |
| 2927 | return ExprError(); |
| 2928 | |
Douglas Gregor | 097bfb1 | 2009-10-23 22:18:25 +0000 | [diff] [blame] | 2929 | Fn = FixOverloadedFunctionReference(Fn, FDecl); |
Douglas Gregor | fa04764 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2930 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 2931 | } |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 2932 | |
| 2933 | // Promote the function operand. |
| 2934 | UsualUnaryConversions(Fn); |
| 2935 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2936 | // Make the call expr early, before semantic checks. This guarantees cleanup |
| 2937 | // of arguments and function on error. |
Ted Kremenek | 668bf91 | 2009-02-09 20:51:47 +0000 | [diff] [blame] | 2938 | ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn, |
| 2939 | Args, NumArgs, |
| 2940 | Context.BoolTy, |
| 2941 | RParenLoc)); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2942 | |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2943 | const FunctionType *FuncT; |
| 2944 | if (!Fn->getType()->isBlockPointerType()) { |
| 2945 | // C99 6.5.2.2p1 - "The expression that denotes the called function shall |
| 2946 | // have type pointer to function". |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2947 | const PointerType *PT = Fn->getType()->getAs<PointerType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2948 | if (PT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2949 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2950 | << Fn->getType() << Fn->getSourceRange()); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2951 | FuncT = PT->getPointeeType()->getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2952 | } else { // This is a block call. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 2953 | FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()-> |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2954 | getAs<FunctionType>(); |
Steve Naroff | dd972f2 | 2008-09-05 22:11:13 +0000 | [diff] [blame] | 2955 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2956 | if (FuncT == 0) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2957 | return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function) |
| 2958 | << Fn->getType() << Fn->getSourceRange()); |
| 2959 | |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2960 | // Check for a valid return type |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 2961 | if (CheckCallReturnType(FuncT->getResultType(), |
| 2962 | Fn->getSourceRange().getBegin(), TheCall.get(), |
| 2963 | FDecl)) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2964 | return ExprError(); |
| 2965 | |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2966 | // We know the result type of the call, set it. |
Douglas Gregor | 15da57e | 2008-10-29 02:00:59 +0000 | [diff] [blame] | 2967 | TheCall->setType(FuncT->getResultType().getNonReferenceType()); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2968 | |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2969 | if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 2970 | if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs, |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 2971 | RParenLoc)) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2972 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2973 | } else { |
Douglas Gregor | 72564e7 | 2009-02-26 23:50:07 +0000 | [diff] [blame] | 2974 | assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!"); |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 2975 | |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2976 | if (FDecl) { |
| 2977 | // Check if we have too few/too many template arguments, based |
| 2978 | // on our knowledge of the function definition. |
| 2979 | const FunctionDecl *Def = 0; |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 2980 | if (FDecl->getBody(Def) && NumArgs != Def->param_size()) { |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2981 | const FunctionProtoType *Proto = |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 2982 | Def->getType()->getAs<FunctionProtoType>(); |
Eli Friedman | bc4e29f | 2009-06-01 09:24:59 +0000 | [diff] [blame] | 2983 | if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) { |
| 2984 | Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments) |
| 2985 | << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange(); |
| 2986 | } |
| 2987 | } |
Douglas Gregor | 74734d5 | 2009-04-02 15:37:10 +0000 | [diff] [blame] | 2988 | } |
| 2989 | |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 2990 | // Promote the arguments (C99 6.5.2.2p6). |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2991 | for (unsigned i = 0; i != NumArgs; i++) { |
| 2992 | Expr *Arg = Args[i]; |
| 2993 | DefaultArgumentPromotion(Arg); |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2994 | if (RequireCompleteType(Arg->getSourceRange().getBegin(), |
| 2995 | Arg->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 2996 | PDiag(diag::err_call_incomplete_argument) |
| 2997 | << Arg->getSourceRange())) |
Eli Friedman | e7c6f7a | 2009-03-22 22:00:50 +0000 | [diff] [blame] | 2998 | return ExprError(); |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 2999 | TheCall->setArg(i, Arg); |
Steve Naroff | b291ab6 | 2007-08-28 23:30:39 +0000 | [diff] [blame] | 3000 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3001 | } |
Chris Lattner | 925e60d | 2007-12-28 05:29:59 +0000 | [diff] [blame] | 3002 | |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3003 | if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl)) |
| 3004 | if (!Method->isStatic()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 3005 | return ExprError(Diag(LParenLoc, diag::err_member_call_without_object) |
| 3006 | << Fn->getSourceRange()); |
Douglas Gregor | 88a3514 | 2008-12-22 05:46:06 +0000 | [diff] [blame] | 3007 | |
Fariborz Jahanian | daf0415 | 2009-05-15 20:33:25 +0000 | [diff] [blame] | 3008 | // Check for sentinels |
| 3009 | if (NDecl) |
| 3010 | DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3011 | |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3012 | // Do special checking on direct calls to functions. |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3013 | if (FDecl) { |
| 3014 | if (CheckFunctionCall(FDecl, TheCall.get())) |
| 3015 | return ExprError(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3016 | |
Douglas Gregor | 7814e6d | 2009-09-12 00:22:50 +0000 | [diff] [blame] | 3017 | if (unsigned BuiltinID = FDecl->getBuiltinID()) |
Anders Carlsson | d406bf0 | 2009-08-16 01:56:34 +0000 | [diff] [blame] | 3018 | return CheckBuiltinFunctionCall(BuiltinID, TheCall.take()); |
| 3019 | } else if (NDecl) { |
| 3020 | if (CheckBlockCall(NDecl, TheCall.get())) |
| 3021 | return ExprError(); |
| 3022 | } |
Chris Lattner | 59907c4 | 2007-08-10 20:18:51 +0000 | [diff] [blame] | 3023 | |
Anders Carlsson | ec74c59 | 2009-08-16 03:06:32 +0000 | [diff] [blame] | 3024 | return MaybeBindToTemporary(TheCall.take()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3025 | } |
| 3026 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3027 | Action::OwningExprResult |
| 3028 | Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty, |
| 3029 | SourceLocation RParenLoc, ExprArg InitExpr) { |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3030 | assert((Ty != 0) && "ActOnCompoundLiteral(): missing type"); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3031 | //FIXME: Preserve type source info. |
| 3032 | QualType literalType = GetTypeFromParser(Ty); |
Steve Naroff | aff1edd | 2007-07-19 21:32:11 +0000 | [diff] [blame] | 3033 | // FIXME: put back this assert when initializers are worked out. |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3034 | //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression"); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3035 | Expr *literalExpr = static_cast<Expr*>(InitExpr.get()); |
Anders Carlsson | d35c832 | 2007-12-05 07:24:19 +0000 | [diff] [blame] | 3036 | |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3037 | if (literalType->isArrayType()) { |
Chris Lattner | c63a1f2 | 2008-08-04 07:31:14 +0000 | [diff] [blame] | 3038 | if (literalType->isVariableArrayType()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3039 | return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init) |
| 3040 | << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd())); |
Douglas Gregor | 690dc7f | 2009-05-21 23:48:18 +0000 | [diff] [blame] | 3041 | } else if (!literalType->isDependentType() && |
| 3042 | RequireCompleteType(LParenLoc, literalType, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3043 | PDiag(diag::err_typecheck_decl_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3044 | << SourceRange(LParenLoc, |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 3045 | literalExpr->getSourceRange().getEnd()))) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3046 | return ExprError(); |
Eli Friedman | 6223c22 | 2008-05-20 05:22:08 +0000 | [diff] [blame] | 3047 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3048 | if (CheckInitializerTypes(literalExpr, literalType, LParenLoc, |
Douglas Gregor | 09f41cf | 2009-01-14 15:45:31 +0000 | [diff] [blame] | 3049 | DeclarationName(), /*FIXME:DirectInit=*/false)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3050 | return ExprError(); |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3051 | |
Chris Lattner | 371f258 | 2008-12-04 23:50:19 +0000 | [diff] [blame] | 3052 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Steve Naroff | e9b1219 | 2008-01-14 18:19:28 +0000 | [diff] [blame] | 3053 | if (isFileScope) { // 6.5.2.5p3 |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3054 | if (CheckForConstantInitializer(literalExpr, literalType)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3055 | return ExprError(); |
Steve Naroff | d0091aa | 2008-01-10 22:15:12 +0000 | [diff] [blame] | 3056 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3057 | InitExpr.release(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3058 | return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3059 | literalExpr, isFileScope)); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3060 | } |
| 3061 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3062 | Action::OwningExprResult |
| 3063 | Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3064 | SourceLocation RBraceLoc) { |
| 3065 | unsigned NumInit = initlist.size(); |
| 3066 | Expr **InitList = reinterpret_cast<Expr**>(initlist.release()); |
Anders Carlsson | 66b5a8a | 2007-08-31 04:56:16 +0000 | [diff] [blame] | 3067 | |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 3068 | // Semantic analysis for initializers is done by ActOnDeclarator() and |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3069 | // CheckInitializer() - it requires knowledge of the object being intialized. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3070 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3071 | InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit, |
Douglas Gregor | 4c67834 | 2009-01-28 21:54:33 +0000 | [diff] [blame] | 3072 | RBraceLoc); |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 3073 | E->setType(Context.VoidTy); // FIXME: just a place holder for now. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3074 | return Owned(E); |
Steve Naroff | 4aa88f8 | 2007-07-19 01:06:55 +0000 | [diff] [blame] | 3075 | } |
| 3076 | |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3077 | static CastExpr::CastKind getScalarCastKind(ASTContext &Context, |
| 3078 | QualType SrcTy, QualType DestTy) { |
| 3079 | if (Context.getCanonicalType(SrcTy).getUnqualifiedType() == |
| 3080 | Context.getCanonicalType(DestTy).getUnqualifiedType()) |
| 3081 | return CastExpr::CK_NoOp; |
| 3082 | |
| 3083 | if (SrcTy->hasPointerRepresentation()) { |
| 3084 | if (DestTy->hasPointerRepresentation()) |
| 3085 | return CastExpr::CK_BitCast; |
| 3086 | if (DestTy->isIntegerType()) |
| 3087 | return CastExpr::CK_PointerToIntegral; |
| 3088 | } |
| 3089 | |
| 3090 | if (SrcTy->isIntegerType()) { |
| 3091 | if (DestTy->isIntegerType()) |
| 3092 | return CastExpr::CK_IntegralCast; |
| 3093 | if (DestTy->hasPointerRepresentation()) |
| 3094 | return CastExpr::CK_IntegralToPointer; |
| 3095 | if (DestTy->isRealFloatingType()) |
| 3096 | return CastExpr::CK_IntegralToFloating; |
| 3097 | } |
| 3098 | |
| 3099 | if (SrcTy->isRealFloatingType()) { |
| 3100 | if (DestTy->isRealFloatingType()) |
| 3101 | return CastExpr::CK_FloatingCast; |
| 3102 | if (DestTy->isIntegerType()) |
| 3103 | return CastExpr::CK_FloatingToIntegral; |
| 3104 | } |
| 3105 | |
| 3106 | // FIXME: Assert here. |
| 3107 | // assert(false && "Unhandled cast combination!"); |
| 3108 | return CastExpr::CK_Unknown; |
| 3109 | } |
| 3110 | |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3111 | /// CheckCastTypes - Check type constraints for casting between types. |
Sebastian Redl | ef0cb8e | 2009-07-29 13:50:23 +0000 | [diff] [blame] | 3112 | bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3113 | CastExpr::CastKind& Kind, |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3114 | CXXMethodDecl *& ConversionDecl, |
| 3115 | bool FunctionalStyle) { |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3116 | if (getLangOptions().CPlusPlus) |
Fariborz Jahanian | e9f4208 | 2009-08-26 18:55:36 +0000 | [diff] [blame] | 3117 | return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle, |
| 3118 | ConversionDecl); |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3119 | |
Eli Friedman | 199ea95 | 2009-08-15 19:02:19 +0000 | [diff] [blame] | 3120 | DefaultFunctionArrayConversion(castExpr); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3121 | |
| 3122 | // C99 6.5.4p2: the cast type needs to be void or scalar and the expression |
| 3123 | // type needs to be scalar. |
| 3124 | if (castType->isVoidType()) { |
| 3125 | // Cast to void allows any expr type. |
Anders Carlsson | ebeaf20 | 2009-10-16 02:35:04 +0000 | [diff] [blame] | 3126 | Kind = CastExpr::CK_ToVoid; |
| 3127 | return false; |
| 3128 | } |
| 3129 | |
| 3130 | if (!castType->isScalarType() && !castType->isVectorType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3131 | if (Context.getCanonicalType(castType).getUnqualifiedType() == |
| 3132 | Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) && |
| 3133 | (castType->isStructureType() || castType->isUnionType())) { |
| 3134 | // GCC struct/union extension: allow cast to self. |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3135 | // FIXME: Check that the cast destination type is complete. |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3136 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar) |
| 3137 | << castType << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3138 | Kind = CastExpr::CK_NoOp; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3139 | return false; |
| 3140 | } |
| 3141 | |
| 3142 | if (castType->isUnionType()) { |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3143 | // GCC cast to union extension |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3144 | RecordDecl *RD = castType->getAs<RecordType>()->getDecl(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3145 | RecordDecl::field_iterator Field, FieldEnd; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3146 | for (Field = RD->field_begin(), FieldEnd = RD->field_end(); |
Seo Sanghyeon | eff2cd5 | 2009-01-15 04:51:39 +0000 | [diff] [blame] | 3147 | Field != FieldEnd; ++Field) { |
| 3148 | if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() == |
| 3149 | Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) { |
| 3150 | Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union) |
| 3151 | << castExpr->getSourceRange(); |
| 3152 | break; |
| 3153 | } |
| 3154 | } |
| 3155 | if (Field == FieldEnd) |
| 3156 | return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type) |
| 3157 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | 4d8673b | 2009-08-07 23:22:37 +0000 | [diff] [blame] | 3158 | Kind = CastExpr::CK_ToUnion; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3159 | return false; |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3160 | } |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3161 | |
| 3162 | // Reject any other conversions to non-scalar types. |
| 3163 | return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar) |
| 3164 | << castType << castExpr->getSourceRange(); |
| 3165 | } |
| 3166 | |
| 3167 | if (!castExpr->getType()->isScalarType() && |
| 3168 | !castExpr->getType()->isVectorType()) { |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3169 | return Diag(castExpr->getLocStart(), |
| 3170 | diag::err_typecheck_expect_scalar_operand) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3171 | << castExpr->getType() << castExpr->getSourceRange(); |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3172 | } |
| 3173 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3174 | if (castType->isExtVectorType()) |
| 3175 | return CheckExtVectorCast(TyR, castType, castExpr, Kind); |
| 3176 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3177 | if (castType->isVectorType()) |
| 3178 | return CheckVectorCast(TyR, castType, castExpr->getType(), Kind); |
| 3179 | if (castExpr->getType()->isVectorType()) |
| 3180 | return CheckVectorCast(TyR, castExpr->getType(), castType, Kind); |
| 3181 | |
| 3182 | if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr)) |
Steve Naroff | a0c3e9c | 2009-04-08 23:52:26 +0000 | [diff] [blame] | 3183 | return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR; |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3184 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3185 | if (isa<ObjCSelectorExpr>(castExpr)) |
| 3186 | return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr); |
| 3187 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3188 | if (!castType->isArithmeticType()) { |
Eli Friedman | 41826bb | 2009-05-01 02:23:58 +0000 | [diff] [blame] | 3189 | QualType castExprType = castExpr->getType(); |
| 3190 | if (!castExprType->isIntegralType() && castExprType->isArithmeticType()) |
| 3191 | return Diag(castExpr->getLocStart(), |
| 3192 | diag::err_cast_pointer_from_non_pointer_int) |
| 3193 | << castExprType << castExpr->getSourceRange(); |
| 3194 | } else if (!castExpr->getType()->isArithmeticType()) { |
| 3195 | if (!castType->isIntegralType() && castType->isArithmeticType()) |
| 3196 | return Diag(castExpr->getLocStart(), |
| 3197 | diag::err_cast_pointer_to_non_pointer_int) |
| 3198 | << castType << castExpr->getSourceRange(); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3199 | } |
Anders Carlsson | 82debc7 | 2009-10-18 18:12:03 +0000 | [diff] [blame] | 3200 | |
| 3201 | Kind = getScalarCastKind(Context, castExpr->getType(), castType); |
Argyrios Kyrtzidis | 6c2dc4d | 2008-08-16 20:27:34 +0000 | [diff] [blame] | 3202 | return false; |
| 3203 | } |
| 3204 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3205 | bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty, |
| 3206 | CastExpr::CastKind &Kind) { |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3207 | assert(VectorTy->isVectorType() && "Not a vector type!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3208 | |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3209 | if (Ty->isVectorType() || Ty->isIntegerType()) { |
Chris Lattner | 98be494 | 2008-03-05 18:54:05 +0000 | [diff] [blame] | 3210 | if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty)) |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3211 | return Diag(R.getBegin(), |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3212 | Ty->isVectorType() ? |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3213 | diag::err_invalid_conversion_between_vectors : |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3214 | diag::err_invalid_conversion_between_vector_and_integer) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3215 | << VectorTy << Ty << R; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3216 | } else |
| 3217 | return Diag(R.getBegin(), |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 3218 | diag::err_invalid_conversion_between_vector_and_scalar) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 3219 | << VectorTy << Ty << R; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3220 | |
Anders Carlsson | c351632 | 2009-10-16 02:48:28 +0000 | [diff] [blame] | 3221 | Kind = CastExpr::CK_BitCast; |
Anders Carlsson | a64db8f | 2007-11-27 05:51:55 +0000 | [diff] [blame] | 3222 | return false; |
| 3223 | } |
| 3224 | |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3225 | bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr, |
| 3226 | CastExpr::CastKind &Kind) { |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3227 | assert(DestTy->isExtVectorType() && "Not an extended vector type!"); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3228 | |
| 3229 | QualType SrcTy = CastExpr->getType(); |
| 3230 | |
Nate Begeman | 9b10da6 | 2009-06-27 22:05:55 +0000 | [diff] [blame] | 3231 | // If SrcTy is a VectorType, the total size must match to explicitly cast to |
| 3232 | // an ExtVectorType. |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3233 | if (SrcTy->isVectorType()) { |
| 3234 | if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) |
| 3235 | return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors) |
| 3236 | << DestTy << SrcTy << R; |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3237 | Kind = CastExpr::CK_BitCast; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3238 | return false; |
| 3239 | } |
| 3240 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3241 | // All non-pointer scalars can be cast to ExtVector type. The appropriate |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3242 | // conversion will take place first from scalar to elt type, and then |
| 3243 | // splat from elt type to vector. |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3244 | if (SrcTy->isPointerType()) |
| 3245 | return Diag(R.getBegin(), |
| 3246 | diag::err_invalid_conversion_between_vector_and_scalar) |
| 3247 | << DestTy << SrcTy << R; |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3248 | |
| 3249 | QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType(); |
| 3250 | ImpCastExprToType(CastExpr, DestElemTy, |
| 3251 | getScalarCastKind(Context, SrcTy, DestElemTy)); |
Anders Carlsson | 16a8904 | 2009-10-16 05:23:41 +0000 | [diff] [blame] | 3252 | |
| 3253 | Kind = CastExpr::CK_VectorSplat; |
Nate Begeman | 58d29a4 | 2009-06-26 00:50:28 +0000 | [diff] [blame] | 3254 | return false; |
| 3255 | } |
| 3256 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3257 | Action::OwningExprResult |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3258 | Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty, |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3259 | SourceLocation RParenLoc, ExprArg Op) { |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3260 | CastExpr::CastKind Kind = CastExpr::CK_Unknown; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3261 | |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3262 | assert((Ty != 0) && (Op.get() != 0) && |
| 3263 | "ActOnCastExpr(): missing type or expr"); |
Steve Naroff | 16beff8 | 2007-07-16 23:25:18 +0000 | [diff] [blame] | 3264 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3265 | Expr *castExpr = (Expr *)Op.get(); |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 3266 | //FIXME: Preserve type source info. |
| 3267 | QualType castType = GetTypeFromParser(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3268 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3269 | // If the Expr being casted is a ParenListExpr, handle it specially. |
| 3270 | if (isa<ParenListExpr>(castExpr)) |
| 3271 | return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3272 | CXXMethodDecl *Method = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3273 | if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3274 | Kind, Method)) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3275 | return ExprError(); |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3276 | |
| 3277 | if (Method) { |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3278 | OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind, |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3279 | Method, move(Op)); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3280 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3281 | if (CastArg.isInvalid()) |
| 3282 | return ExprError(); |
Daniel Dunbar | 7e88a60 | 2009-09-17 06:31:17 +0000 | [diff] [blame] | 3283 | |
Anders Carlsson | 0aebc81 | 2009-09-09 21:33:21 +0000 | [diff] [blame] | 3284 | castExpr = CastArg.takeAs<Expr>(); |
| 3285 | } else { |
| 3286 | Op.release(); |
Fariborz Jahanian | 3197659 | 2009-08-29 19:15:16 +0000 | [diff] [blame] | 3287 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3288 | |
Sebastian Redl | 9cc11e7 | 2009-07-25 15:41:38 +0000 | [diff] [blame] | 3289 | return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(), |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3290 | Kind, castExpr, castType, |
Anders Carlsson | cdb6197 | 2009-08-07 22:21:05 +0000 | [diff] [blame] | 3291 | LParenLoc, RParenLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3292 | } |
| 3293 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3294 | /// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence |
| 3295 | /// of comma binary operators. |
| 3296 | Action::OwningExprResult |
| 3297 | Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) { |
| 3298 | Expr *expr = EA.takeAs<Expr>(); |
| 3299 | ParenListExpr *E = dyn_cast<ParenListExpr>(expr); |
| 3300 | if (!E) |
| 3301 | return Owned(expr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3302 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3303 | OwningExprResult Result(*this, E->getExpr(0)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3304 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3305 | for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i) |
| 3306 | Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result), |
| 3307 | Owned(E->getExpr(i))); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3308 | |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3309 | return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result)); |
| 3310 | } |
| 3311 | |
| 3312 | Action::OwningExprResult |
| 3313 | Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc, |
| 3314 | SourceLocation RParenLoc, ExprArg Op, |
| 3315 | QualType Ty) { |
| 3316 | ParenListExpr *PE = (ParenListExpr *)Op.get(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3317 | |
| 3318 | // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')' |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3319 | // then handle it as such. |
| 3320 | if (getLangOptions().AltiVec && Ty->isVectorType()) { |
| 3321 | if (PE->getNumExprs() == 0) { |
| 3322 | Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer); |
| 3323 | return ExprError(); |
| 3324 | } |
| 3325 | |
| 3326 | llvm::SmallVector<Expr *, 8> initExprs; |
| 3327 | for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i) |
| 3328 | initExprs.push_back(PE->getExpr(i)); |
| 3329 | |
| 3330 | // FIXME: This means that pretty-printing the final AST will produce curly |
| 3331 | // braces instead of the original commas. |
| 3332 | Op.release(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3333 | InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0], |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3334 | initExprs.size(), RParenLoc); |
| 3335 | E->setType(Ty); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3336 | return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc, |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3337 | Owned(E)); |
| 3338 | } else { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3339 | // 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] | 3340 | // sequence of BinOp comma operators. |
| 3341 | Op = MaybeConvertParenListExprToParenExpr(S, move(Op)); |
| 3342 | return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op)); |
| 3343 | } |
| 3344 | } |
| 3345 | |
| 3346 | Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L, |
| 3347 | SourceLocation R, |
| 3348 | MultiExprArg Val) { |
| 3349 | unsigned nexprs = Val.size(); |
| 3350 | Expr **exprs = reinterpret_cast<Expr**>(Val.release()); |
| 3351 | assert((exprs != 0) && "ActOnParenListExpr() missing expr list"); |
| 3352 | Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R); |
| 3353 | return Owned(expr); |
| 3354 | } |
| 3355 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 3356 | /// Note that lhs is not null here, even if this is the gnu "x ?: y" extension. |
| 3357 | /// In that case, lhs = cond. |
Chris Lattner | a119a3b | 2009-02-18 04:38:20 +0000 | [diff] [blame] | 3358 | /// C99 6.5.15 |
| 3359 | QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS, |
| 3360 | SourceLocation QuestionLoc) { |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3361 | // C++ is sufficiently different to merit its own checker. |
| 3362 | if (getLangOptions().CPlusPlus) |
| 3363 | return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc); |
| 3364 | |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3365 | UsualUnaryConversions(Cond); |
| 3366 | UsualUnaryConversions(LHS); |
| 3367 | UsualUnaryConversions(RHS); |
| 3368 | QualType CondTy = Cond->getType(); |
| 3369 | QualType LHSTy = LHS->getType(); |
| 3370 | QualType RHSTy = RHS->getType(); |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 3371 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3372 | // first, check the condition. |
Sebastian Redl | 3201f6b | 2009-04-16 17:51:27 +0000 | [diff] [blame] | 3373 | if (!CondTy->isScalarType()) { // C99 6.5.15p2 |
| 3374 | Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar) |
| 3375 | << CondTy; |
| 3376 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3377 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3378 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3379 | // Now check the two expressions. |
Nate Begeman | 2ef13e5 | 2009-08-10 23:49:36 +0000 | [diff] [blame] | 3380 | if (LHSTy->isVectorType() || RHSTy->isVectorType()) |
| 3381 | return CheckVectorOperands(QuestionLoc, LHS, RHS); |
Douglas Gregor | 898574e | 2008-12-05 23:32:09 +0000 | [diff] [blame] | 3382 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3383 | // If both operands have arithmetic type, do the usual arithmetic conversions |
| 3384 | // to find a common type: C99 6.5.15p3,5. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3385 | if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { |
| 3386 | UsualArithmeticConversions(LHS, RHS); |
| 3387 | return LHS->getType(); |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 3388 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3389 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3390 | // If both operands are the same structure or union type, the result is that |
| 3391 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3392 | if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3 |
| 3393 | if (const RecordType *RHSRT = RHSTy->getAs<RecordType>()) |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3394 | if (LHSRT->getDecl() == RHSRT->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3395 | // "If both the operands have structure or union type, the result has |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3396 | // that type." This implies that CV qualifiers are dropped. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3397 | return LHSTy.getUnqualifiedType(); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 3398 | // FIXME: Type of conditional expression must be complete in C mode. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3399 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3400 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3401 | // 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] | 3402 | // The following || allows only one side to be void (a GCC-ism). |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3403 | if (LHSTy->isVoidType() || RHSTy->isVoidType()) { |
| 3404 | if (!LHSTy->isVoidType()) |
| 3405 | Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3406 | << RHS->getSourceRange(); |
| 3407 | if (!RHSTy->isVoidType()) |
| 3408 | Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void) |
| 3409 | << LHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3410 | ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid); |
| 3411 | ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid); |
Eli Friedman | 0e72401 | 2008-06-04 19:47:51 +0000 | [diff] [blame] | 3412 | return Context.VoidTy; |
Steve Naroff | e701c0a | 2008-05-12 21:44:38 +0000 | [diff] [blame] | 3413 | } |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3414 | // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has |
| 3415 | // the type of the other operand." |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3416 | if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3417 | RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3418 | // promote the null to a pointer. |
| 3419 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3420 | return LHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3421 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 3422 | if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 3423 | LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3424 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown); |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3425 | return RHSTy; |
Steve Naroff | b6d54e5 | 2008-01-08 01:11:38 +0000 | [diff] [blame] | 3426 | } |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3427 | // Handle things like Class and struct objc_class*. Here we case the result |
| 3428 | // to the pseudo-builtin, because that will be implicitly cast back to the |
| 3429 | // redefinition type if an attempt is made to access its fields. |
| 3430 | if (LHSTy->isObjCClassType() && |
| 3431 | (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3432 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3433 | return LHSTy; |
| 3434 | } |
| 3435 | if (RHSTy->isObjCClassType() && |
| 3436 | (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3437 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3438 | return RHSTy; |
| 3439 | } |
| 3440 | // And the same for struct objc_object* / id |
| 3441 | if (LHSTy->isObjCIdType() && |
| 3442 | (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3443 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3444 | return LHSTy; |
| 3445 | } |
| 3446 | if (RHSTy->isObjCIdType() && |
| 3447 | (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3448 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast); |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3449 | return RHSTy; |
| 3450 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3451 | // Handle block pointer types. |
| 3452 | if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) { |
| 3453 | if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { |
| 3454 | if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) { |
| 3455 | QualType destType = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3456 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
| 3457 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3458 | return destType; |
| 3459 | } |
| 3460 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3461 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3462 | return QualType(); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3463 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3464 | // We have 2 block pointer types. |
| 3465 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3466 | // Two identical block pointer types are always compatible. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3467 | return LHSTy; |
| 3468 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3469 | // The block pointer types aren't identical, continue checking. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3470 | QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType(); |
| 3471 | QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3472 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3473 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3474 | rhptee.getUnqualifiedType())) { |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3475 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3476 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3477 | // In this situation, we assume void* type. No especially good |
| 3478 | // reason, but this is what gcc does, and we do have to pick |
| 3479 | // to get a consistent AST. |
| 3480 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3481 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3482 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 3483 | return incompatTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3484 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3485 | // The block pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3486 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3487 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 9158804 | 2009-04-08 17:05:15 +0000 | [diff] [blame] | 3488 | return LHSTy; |
| 3489 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3490 | // Check constraints for Objective-C object pointers types. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3491 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3492 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3493 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3494 | // Two identical object pointer types are always compatible. |
| 3495 | return LHSTy; |
| 3496 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3497 | const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>(); |
| 3498 | const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3499 | QualType compositeType = LHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3500 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3501 | // If both operands are interfaces and either operand can be |
| 3502 | // assigned to the other, use that type as the composite |
| 3503 | // type. This allows |
| 3504 | // xxx ? (A*) a : (B*) b |
| 3505 | // where B is a subclass of A. |
| 3506 | // |
| 3507 | // Additionally, as for assignment, if either type is 'id' |
| 3508 | // allow silent coercion. Finally, if the types are |
| 3509 | // incompatible then make sure to use 'id' as the composite |
| 3510 | // type so the result is acceptable for sending messages to. |
| 3511 | |
| 3512 | // FIXME: Consider unifying with 'areComparableObjCPointerTypes'. |
| 3513 | // It could return the composite type. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3514 | if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3515 | compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3516 | } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) { |
Fariborz Jahanian | 9ec22a3 | 2009-08-22 22:27:17 +0000 | [diff] [blame] | 3517 | compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3518 | } else if ((LHSTy->isObjCQualifiedIdType() || |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3519 | RHSTy->isObjCQualifiedIdType()) && |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3520 | Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3521 | // Need to handle "id<xx>" explicitly. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3522 | // GCC allows qualified id and any Objective-C type to devolve to |
| 3523 | // id. Currently localizing to here until clear this should be |
| 3524 | // part of ObjCQualifiedIdTypesAreCompatible. |
| 3525 | compositeType = Context.getObjCIdType(); |
| 3526 | } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) { |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3527 | compositeType = Context.getObjCIdType(); |
| 3528 | } else { |
| 3529 | Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands) |
| 3530 | << LHSTy << RHSTy |
| 3531 | << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3532 | QualType incompatTy = Context.getObjCIdType(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3533 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3534 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3535 | return incompatTy; |
| 3536 | } |
| 3537 | // The object pointer types are compatible. |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3538 | ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast); |
| 3539 | ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3540 | return compositeType; |
| 3541 | } |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3542 | // Check Objective-C object pointer types and 'void *' |
| 3543 | if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3544 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3545 | QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3546 | QualType destPointee |
| 3547 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3548 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3549 | // Add qualifiers if necessary. |
| 3550 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3551 | // Promote to void*. |
| 3552 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3553 | return destType; |
| 3554 | } |
| 3555 | if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) { |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 3556 | QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType(); |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3557 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3558 | QualType destPointee |
| 3559 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3560 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3561 | // Add qualifiers if necessary. |
| 3562 | ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp); |
| 3563 | // Promote to void*. |
| 3564 | ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | c715e78 | 2009-07-29 15:09:39 +0000 | [diff] [blame] | 3565 | return destType; |
| 3566 | } |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3567 | // Check constraints for C object pointers types (C99 6.5.15p3,6). |
| 3568 | if (LHSTy->isPointerType() && RHSTy->isPointerType()) { |
| 3569 | // get the "pointed to" types |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3570 | QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType(); |
| 3571 | QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType(); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3572 | |
| 3573 | // ignore qualifiers on void (C99 6.5.15p3, clause 6) |
| 3574 | if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) { |
| 3575 | // Figure out necessary qualifiers (C99 6.5.15p6) |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3576 | QualType destPointee |
| 3577 | = Context.getQualifiedType(lhptee, rhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3578 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3579 | // Add qualifiers if necessary. |
| 3580 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3581 | // Promote to void*. |
| 3582 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3583 | return destType; |
| 3584 | } |
| 3585 | if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 3586 | QualType destPointee |
| 3587 | = Context.getQualifiedType(rhptee, lhptee.getQualifiers()); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3588 | QualType destType = Context.getPointerType(destPointee); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3589 | // Add qualifiers if necessary. |
| 3590 | ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp); |
| 3591 | // Promote to void*. |
| 3592 | ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3593 | return destType; |
| 3594 | } |
| 3595 | |
| 3596 | if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) { |
| 3597 | // Two identical pointer types are always compatible. |
| 3598 | return LHSTy; |
| 3599 | } |
| 3600 | if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(), |
| 3601 | rhptee.getUnqualifiedType())) { |
| 3602 | Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers) |
| 3603 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
| 3604 | // In this situation, we assume void* type. No especially good |
| 3605 | // reason, but this is what gcc does, and we do have to pick |
| 3606 | // to get a consistent AST. |
| 3607 | QualType incompatTy = Context.getPointerType(Context.VoidTy); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3608 | ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast); |
| 3609 | ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3610 | return incompatTy; |
| 3611 | } |
| 3612 | // The pointer types are compatible. |
| 3613 | // C99 6.5.15p6: If both operands are pointers to compatible types *or* to |
| 3614 | // differently qualified versions of compatible types, the result type is |
| 3615 | // a pointer to an appropriately qualified version of the *composite* |
| 3616 | // type. |
| 3617 | // FIXME: Need to calculate the composite type. |
| 3618 | // FIXME: Need to add qualifiers |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3619 | ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast); |
| 3620 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3621 | return LHSTy; |
| 3622 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3623 | |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3624 | // GCC compatibility: soften pointer/integer mismatch. |
| 3625 | if (RHSTy->isPointerType() && LHSTy->isIntegerType()) { |
| 3626 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3627 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3628 | ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3629 | return RHSTy; |
| 3630 | } |
| 3631 | if (LHSTy->isPointerType() && RHSTy->isIntegerType()) { |
| 3632 | Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch) |
| 3633 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 3634 | ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer); |
Steve Naroff | 7154a77 | 2009-07-01 14:36:47 +0000 | [diff] [blame] | 3635 | return LHSTy; |
| 3636 | } |
Daniel Dunbar | 5e155f0 | 2008-09-11 23:12:46 +0000 | [diff] [blame] | 3637 | |
Chris Lattner | 70d67a9 | 2008-01-06 22:42:25 +0000 | [diff] [blame] | 3638 | // Otherwise, the operands are not compatible. |
Chris Lattner | efdc39d | 2009-02-18 04:28:32 +0000 | [diff] [blame] | 3639 | Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands) |
| 3640 | << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3641 | return QualType(); |
| 3642 | } |
| 3643 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 3644 | /// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3645 | /// in the case of a the GNU conditional expr extension. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3646 | Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc, |
| 3647 | SourceLocation ColonLoc, |
| 3648 | ExprArg Cond, ExprArg LHS, |
| 3649 | ExprArg RHS) { |
| 3650 | Expr *CondExpr = (Expr *) Cond.get(); |
| 3651 | Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get(); |
Chris Lattner | a21ddb3 | 2007-11-26 01:40:58 +0000 | [diff] [blame] | 3652 | |
| 3653 | // If this is the gnu "x ?: y" extension, analyze the types as though the LHS |
| 3654 | // was the condition. |
| 3655 | bool isLHSNull = LHSExpr == 0; |
| 3656 | if (isLHSNull) |
| 3657 | LHSExpr = CondExpr; |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3658 | |
| 3659 | QualType result = CheckConditionalOperands(CondExpr, LHSExpr, |
Chris Lattner | 2682490 | 2007-07-16 21:39:03 +0000 | [diff] [blame] | 3660 | RHSExpr, QuestionLoc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3661 | if (result.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 3662 | return ExprError(); |
| 3663 | |
| 3664 | Cond.release(); |
| 3665 | LHS.release(); |
| 3666 | RHS.release(); |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3667 | return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc, |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 3668 | isLHSNull ? 0 : LHSExpr, |
Douglas Gregor | 47e1f7c | 2009-08-26 14:37:04 +0000 | [diff] [blame] | 3669 | ColonLoc, RHSExpr, result)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3670 | } |
| 3671 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3672 | // CheckPointerTypesForAssignment - This is a very tricky routine (despite |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3673 | // being closely modeled after the C99 spec:-). The odd characteristic of this |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3674 | // routine is it effectively iqnores the qualifiers on the top level pointee. |
| 3675 | // This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3]. |
| 3676 | // FIXME: add a couple examples in this comment. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3677 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3678 | Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) { |
| 3679 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3680 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3681 | if ((lhsType->isObjCClassType() && |
| 3682 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3683 | (rhsType->isObjCClassType() && |
| 3684 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3685 | return Compatible; |
| 3686 | } |
| 3687 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3688 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3689 | lhptee = lhsType->getAs<PointerType>()->getPointeeType(); |
| 3690 | rhptee = rhsType->getAs<PointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3691 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3692 | // make sure we operate on the canonical type |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3693 | lhptee = Context.getCanonicalType(lhptee); |
| 3694 | rhptee = Context.getCanonicalType(rhptee); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3695 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3696 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3697 | |
| 3698 | // C99 6.5.16.1p1: This following citation is common to constraints |
| 3699 | // 3 & 4 (below). ...and the type *pointed to* by the left has all the |
| 3700 | // qualifiers of the type *pointed to* by the right; |
Fariborz Jahanian | f11284a | 2009-02-17 18:27:45 +0000 | [diff] [blame] | 3701 | // FIXME: Handle ExtQualType |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 3702 | if (!lhptee.isAtLeastAsQualifiedAs(rhptee)) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3703 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3704 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3705 | // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or |
| 3706 | // 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] | 3707 | // version of void... |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3708 | if (lhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3709 | if (rhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3710 | return ConvTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3711 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3712 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3713 | assert(rhptee->isFunctionType()); |
| 3714 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3715 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3716 | |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3717 | if (rhptee->isVoidType()) { |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3718 | if (lhptee->isIncompleteOrObjectType()) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3719 | return ConvTy; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3720 | |
| 3721 | // As an extension, we allow cast to/from void* to function pointer. |
Chris Lattner | d805bec | 2008-04-02 06:59:01 +0000 | [diff] [blame] | 3722 | assert(lhptee->isFunctionType()); |
| 3723 | return FunctionVoidPointer; |
Chris Lattner | bfe639e | 2008-01-03 22:56:36 +0000 | [diff] [blame] | 3724 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3725 | // 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] | 3726 | // unqualified versions of compatible types, ... |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3727 | lhptee = lhptee.getUnqualifiedType(); |
| 3728 | rhptee = rhptee.getUnqualifiedType(); |
| 3729 | if (!Context.typesAreCompatible(lhptee, rhptee)) { |
| 3730 | // Check if the pointee types are compatible ignoring the sign. |
| 3731 | // We explicitly check for char so that we catch "char" vs |
| 3732 | // "unsigned char" on systems where "char" is unsigned. |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3733 | if (lhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3734 | lhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3735 | else if (lhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3736 | lhptee = Context.getCorrespondingUnsignedType(lhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3737 | |
| 3738 | if (rhptee->isCharType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3739 | rhptee = Context.UnsignedCharTy; |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3740 | else if (rhptee->isSignedIntegerType()) |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3741 | rhptee = Context.getCorrespondingUnsignedType(rhptee); |
Chris Lattner | 6a2b926 | 2009-10-17 20:33:28 +0000 | [diff] [blame] | 3742 | |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3743 | if (lhptee == rhptee) { |
| 3744 | // Types are compatible ignoring the sign. Qualifier incompatibility |
| 3745 | // takes priority over sign incompatibility because the sign |
| 3746 | // warning can be disabled. |
| 3747 | if (ConvTy != Compatible) |
| 3748 | return ConvTy; |
| 3749 | return IncompatiblePointerSign; |
| 3750 | } |
| 3751 | // General pointer incompatibility takes priority over qualifiers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3752 | return IncompatiblePointer; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 3753 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3754 | return ConvTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3755 | } |
| 3756 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3757 | /// CheckBlockPointerTypesForAssignment - This routine determines whether two |
| 3758 | /// block pointer types are compatible or whether a block and normal pointer |
| 3759 | /// are compatible. It is more restrict than comparing two function pointer |
| 3760 | // types. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3761 | Sema::AssignConvertType |
| 3762 | Sema::CheckBlockPointerTypesForAssignment(QualType lhsType, |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3763 | QualType rhsType) { |
| 3764 | QualType lhptee, rhptee; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3765 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3766 | // get the "pointed to" type (ignoring qualifiers at the top level) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3767 | lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType(); |
| 3768 | rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3769 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3770 | // make sure we operate on the canonical type |
| 3771 | lhptee = Context.getCanonicalType(lhptee); |
| 3772 | rhptee = Context.getCanonicalType(rhptee); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3773 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3774 | AssignConvertType ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3775 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3776 | // For blocks we enforce that qualifiers are identical. |
| 3777 | if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers()) |
| 3778 | ConvTy = CompatiblePointerDiscardsQualifiers; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3779 | |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 3780 | if (!Context.typesAreCompatible(lhptee, rhptee)) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3781 | return IncompatibleBlockPointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3782 | return ConvTy; |
| 3783 | } |
| 3784 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3785 | /// CheckAssignmentConstraints (C99 6.5.16) - This routine currently |
| 3786 | /// has code to accommodate several GCC extensions when type checking |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3787 | /// pointers. Here are some objectionable examples that GCC considers warnings: |
| 3788 | /// |
| 3789 | /// int a, *pint; |
| 3790 | /// short *pshort; |
| 3791 | /// struct foo *pfoo; |
| 3792 | /// |
| 3793 | /// pint = pshort; // warning: assignment from incompatible pointer type |
| 3794 | /// a = pint; // warning: assignment makes integer from pointer without a cast |
| 3795 | /// pint = a; // warning: assignment makes pointer from integer without a cast |
| 3796 | /// pint = pfoo; // warning: assignment from incompatible pointer type |
| 3797 | /// |
| 3798 | /// 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] | 3799 | /// C99 spec dictates. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3800 | /// |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 3801 | Sema::AssignConvertType |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3802 | Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) { |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3803 | // Get canonical types. We're not formatting these types, just comparing |
| 3804 | // them. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 3805 | lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType(); |
| 3806 | rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType(); |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3807 | |
| 3808 | if (lhsType == rhsType) |
Chris Lattner | d2656dd | 2008-01-07 17:51:46 +0000 | [diff] [blame] | 3809 | return Compatible; // Common case: fast path an exact match. |
Steve Naroff | 700204c | 2007-07-24 21:46:40 +0000 | [diff] [blame] | 3810 | |
David Chisnall | 0f43656 | 2009-08-17 16:35:33 +0000 | [diff] [blame] | 3811 | if ((lhsType->isObjCClassType() && |
| 3812 | (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) || |
| 3813 | (rhsType->isObjCClassType() && |
| 3814 | (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) { |
| 3815 | return Compatible; |
| 3816 | } |
| 3817 | |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3818 | // If the left-hand side is a reference type, then we are in a |
| 3819 | // (rare!) case where we've allowed the use of references in C, |
| 3820 | // e.g., as a parameter type in a built-in function. In this case, |
| 3821 | // just make sure that the type referenced is compatible with the |
| 3822 | // right-hand side type. The caller is responsible for adjusting |
| 3823 | // lhsType so that the resulting expression does not have reference |
| 3824 | // type. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3825 | if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) { |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 3826 | if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) |
Anders Carlsson | 793680e | 2007-10-12 23:56:29 +0000 | [diff] [blame] | 3827 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3828 | return Incompatible; |
Fariborz Jahanian | 411f373 | 2007-12-19 17:45:58 +0000 | [diff] [blame] | 3829 | } |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 3830 | // Allow scalar to ExtVector assignments, and assignments of an ExtVector type |
| 3831 | // to the same ExtVector type. |
| 3832 | if (lhsType->isExtVectorType()) { |
| 3833 | if (rhsType->isExtVectorType()) |
| 3834 | return lhsType == rhsType ? Compatible : Incompatible; |
| 3835 | if (!rhsType->isVectorType() && rhsType->isArithmeticType()) |
| 3836 | return Compatible; |
| 3837 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3838 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3839 | if (lhsType->isVectorType() || rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3840 | // 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] | 3841 | // 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] | 3842 | // no bits are changed but the result type is different. |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3843 | if (getLangOptions().LaxVectorConversions && |
| 3844 | lhsType->isVectorType() && rhsType->isVectorType()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 3845 | if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType)) |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 3846 | return IncompatibleVectors; |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3847 | } |
| 3848 | return Incompatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3849 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3850 | |
Chris Lattner | e8b3e96 | 2008-01-04 23:32:24 +0000 | [diff] [blame] | 3851 | if (lhsType->isArithmeticType() && rhsType->isArithmeticType()) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3852 | return Compatible; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3853 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3854 | if (isa<PointerType>(lhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3855 | if (rhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3856 | return IntToPointer; |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3857 | |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3858 | if (isa<PointerType>(rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3859 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3860 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3861 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3862 | if (isa<ObjCObjectPointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3863 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3864 | return Compatible; |
| 3865 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3866 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3867 | if (rhsType->getAs<BlockPointerType>()) { |
| 3868 | if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3869 | return Compatible; |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3870 | |
| 3871 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3872 | if (getLangOptions().ObjC1 && lhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3873 | return Compatible; |
| 3874 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3875 | return Incompatible; |
| 3876 | } |
| 3877 | |
| 3878 | if (isa<BlockPointerType>(lhsType)) { |
| 3879 | if (rhsType->isIntegerType()) |
Eli Friedman | d8f4f43 | 2009-02-25 04:20:42 +0000 | [diff] [blame] | 3880 | return IntToBlockPointer; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3881 | |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3882 | // Treat block pointers as objects. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3883 | if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) |
Steve Naroff | b440686 | 2008-09-29 18:10:17 +0000 | [diff] [blame] | 3884 | return Compatible; |
| 3885 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3886 | if (rhsType->isBlockPointerType()) |
| 3887 | return CheckBlockPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3888 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3889 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3890 | if (RHSPT->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3891 | return Compatible; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 3892 | } |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3893 | return Incompatible; |
| 3894 | } |
| 3895 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3896 | if (isa<ObjCObjectPointerType>(lhsType)) { |
| 3897 | if (rhsType->isIntegerType()) |
| 3898 | return IntToPointer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3899 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3900 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3901 | if (isa<PointerType>(rhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3902 | if (rhsType->isVoidPointerType()) // an exception to the rule. |
| 3903 | return Compatible; |
| 3904 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3905 | } |
| 3906 | if (rhsType->isObjCObjectPointerType()) { |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 3907 | if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType()) |
| 3908 | return Compatible; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3909 | if (Context.typesAreCompatible(lhsType, rhsType)) |
| 3910 | return Compatible; |
Steve Naroff | 4084c30 | 2009-07-23 01:01:38 +0000 | [diff] [blame] | 3911 | if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType()) |
| 3912 | return IncompatibleObjCQualifiedId; |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3913 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3914 | } |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3915 | if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) { |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3916 | if (RHSPT->getPointeeType()->isVoidType()) |
| 3917 | return Compatible; |
| 3918 | } |
| 3919 | // Treat block pointers as objects. |
| 3920 | if (rhsType->isBlockPointerType()) |
| 3921 | return Compatible; |
| 3922 | return Incompatible; |
| 3923 | } |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3924 | if (isa<PointerType>(rhsType)) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3925 | // 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] | 3926 | if (lhsType == Context.BoolTy) |
| 3927 | return Compatible; |
| 3928 | |
| 3929 | if (lhsType->isIntegerType()) |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 3930 | return PointerToInt; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3931 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3932 | if (isa<PointerType>(lhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3933 | return CheckPointerTypesForAssignment(lhsType, rhsType); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 3934 | |
| 3935 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3936 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Douglas Gregor | 63a9490 | 2008-11-27 00:44:28 +0000 | [diff] [blame] | 3937 | return Compatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3938 | return Incompatible; |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3939 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3940 | if (isa<ObjCObjectPointerType>(rhsType)) { |
| 3941 | // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer. |
| 3942 | if (lhsType == Context.BoolTy) |
| 3943 | return Compatible; |
| 3944 | |
| 3945 | if (lhsType->isIntegerType()) |
| 3946 | return PointerToInt; |
| 3947 | |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3948 | // In general, C pointers are not compatible with ObjC object pointers. |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3949 | if (isa<PointerType>(lhsType)) { |
Steve Naroff | 67ef8ea | 2009-07-20 17:56:53 +0000 | [diff] [blame] | 3950 | if (lhsType->isVoidPointerType()) // an exception to the rule. |
| 3951 | return Compatible; |
| 3952 | return IncompatiblePointer; |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3953 | } |
| 3954 | if (isa<BlockPointerType>(lhsType) && |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 3955 | rhsType->getAs<PointerType>()->getPointeeType()->isVoidType()) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 3956 | return Compatible; |
| 3957 | return Incompatible; |
| 3958 | } |
Eli Friedman | f8f873d | 2008-05-30 18:07:22 +0000 | [diff] [blame] | 3959 | |
Chris Lattner | fc144e2 | 2008-01-04 23:18:45 +0000 | [diff] [blame] | 3960 | if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) { |
Chris Lattner | 78eca28 | 2008-04-07 06:49:41 +0000 | [diff] [blame] | 3961 | if (Context.typesAreCompatible(lhsType, rhsType)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3962 | return Compatible; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 3963 | } |
| 3964 | return Incompatible; |
| 3965 | } |
| 3966 | |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3967 | /// \brief Constructs a transparent union from an expression that is |
| 3968 | /// used to initialize the transparent union. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3969 | static void ConstructTransparentUnion(ASTContext &C, Expr *&E, |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3970 | QualType UnionType, FieldDecl *Field) { |
| 3971 | // Build an initializer list that designates the appropriate member |
| 3972 | // of the transparent union. |
| 3973 | InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(), |
| 3974 | &E, 1, |
| 3975 | SourceLocation()); |
| 3976 | Initializer->setType(UnionType); |
| 3977 | Initializer->setInitializedFieldInUnion(Field); |
| 3978 | |
| 3979 | // Build a compound literal constructing a value of the transparent |
| 3980 | // union type from this initializer list. |
| 3981 | E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer, |
| 3982 | false); |
| 3983 | } |
| 3984 | |
| 3985 | Sema::AssignConvertType |
| 3986 | Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) { |
| 3987 | QualType FromType = rExpr->getType(); |
| 3988 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3989 | // 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] | 3990 | // transparent_union GCC extension. |
| 3991 | const RecordType *UT = ArgType->getAsUnionType(); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 3992 | if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>()) |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 3993 | return Incompatible; |
| 3994 | |
| 3995 | // The field to initialize within the transparent union. |
| 3996 | RecordDecl *UD = UT->getDecl(); |
| 3997 | FieldDecl *InitField = 0; |
| 3998 | // It's compatible if the expression matches any of the fields. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 3999 | for (RecordDecl::field_iterator it = UD->field_begin(), |
| 4000 | itend = UD->field_end(); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4001 | it != itend; ++it) { |
| 4002 | if (it->getType()->isPointerType()) { |
| 4003 | // If the transparent union contains a pointer type, we allow: |
| 4004 | // 1) void pointer |
| 4005 | // 2) null pointer constant |
| 4006 | if (FromType->isPointerType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4007 | if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4008 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4009 | InitField = *it; |
| 4010 | break; |
| 4011 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4012 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4013 | if (rExpr->isNullPointerConstant(Context, |
| 4014 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4015 | ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4016 | InitField = *it; |
| 4017 | break; |
| 4018 | } |
| 4019 | } |
| 4020 | |
| 4021 | if (CheckAssignmentConstraints(it->getType(), rExpr->getType()) |
| 4022 | == Compatible) { |
| 4023 | InitField = *it; |
| 4024 | break; |
| 4025 | } |
| 4026 | } |
| 4027 | |
| 4028 | if (!InitField) |
| 4029 | return Incompatible; |
| 4030 | |
| 4031 | ConstructTransparentUnion(Context, rExpr, ArgType, InitField); |
| 4032 | return Compatible; |
| 4033 | } |
| 4034 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4035 | Sema::AssignConvertType |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4036 | Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) { |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4037 | if (getLangOptions().CPlusPlus) { |
| 4038 | if (!lhsType->isRecordType()) { |
| 4039 | // C++ 5.17p3: If the left operand is not of class type, the |
| 4040 | // expression is implicitly converted (C++ 4) to the |
| 4041 | // cv-unqualified type of the left operand. |
Douglas Gregor | 45920e8 | 2008-12-19 17:40:08 +0000 | [diff] [blame] | 4042 | if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(), |
| 4043 | "assigning")) |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4044 | return Incompatible; |
Chris Lattner | 2c4463f | 2009-04-12 09:02:39 +0000 | [diff] [blame] | 4045 | return Compatible; |
Douglas Gregor | 98cd599 | 2008-10-21 23:43:52 +0000 | [diff] [blame] | 4046 | } |
| 4047 | |
| 4048 | // FIXME: Currently, we fall through and treat C++ classes like C |
| 4049 | // structures. |
| 4050 | } |
| 4051 | |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4052 | // C99 6.5.16.1p1: the left operand is a pointer and the right is |
| 4053 | // a null pointer constant. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4054 | if ((lhsType->isPointerType() || |
| 4055 | lhsType->isObjCObjectPointerType() || |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4056 | lhsType->isBlockPointerType()) |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4057 | && rExpr->isNullPointerConstant(Context, |
| 4058 | Expr::NPC_ValueDependentIsNull)) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4059 | ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown); |
Steve Naroff | 529a4ad | 2007-11-27 17:58:44 +0000 | [diff] [blame] | 4060 | return Compatible; |
| 4061 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4062 | |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4063 | // This check seems unnatural, however it is necessary to ensure the proper |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4064 | // conversion of functions/arrays. If the conversion were done for all |
Steve Naroff | 08d92e4 | 2007-09-15 18:49:24 +0000 | [diff] [blame] | 4065 | // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4066 | // expressions that surpress this implicit conversion (&, sizeof). |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4067 | // |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4068 | // Suppress this for references: C++ 8.5.3p5. |
Chris Lattner | 943140e | 2007-10-16 02:55:40 +0000 | [diff] [blame] | 4069 | if (!lhsType->isReferenceType()) |
| 4070 | DefaultFunctionArrayConversion(rExpr); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4071 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4072 | Sema::AssignConvertType result = |
| 4073 | CheckAssignmentConstraints(lhsType, rExpr->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4074 | |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4075 | // C99 6.5.16.1p2: The value of the right operand is converted to the |
| 4076 | // type of the assignment expression. |
Douglas Gregor | 9d293df | 2008-10-28 00:22:11 +0000 | [diff] [blame] | 4077 | // CheckAssignmentConstraints allows the left-hand side to be a reference, |
| 4078 | // so that we can use references in built-in functions even in C. |
| 4079 | // The getNonReferenceType() call makes sure that the resulting expression |
| 4080 | // does not have reference type. |
Douglas Gregor | 0c74e8a | 2009-04-29 22:16:16 +0000 | [diff] [blame] | 4081 | if (result != Incompatible && rExpr->getType() != lhsType) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4082 | ImpCastExprToType(rExpr, lhsType.getNonReferenceType(), |
| 4083 | CastExpr::CK_Unknown); |
Steve Naroff | f1120de | 2007-08-24 22:33:52 +0000 | [diff] [blame] | 4084 | return result; |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4085 | } |
| 4086 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4087 | QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4088 | Diag(Loc, diag::err_typecheck_invalid_operands) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 4089 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4090 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4091 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4092 | } |
| 4093 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4094 | inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex, |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4095 | Expr *&rex) { |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4096 | // For conversion purposes, we ignore any qualifiers. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4097 | // For example, "const float" and "float" are equivalent. |
Chris Lattner | b77792e | 2008-07-26 22:17:49 +0000 | [diff] [blame] | 4098 | QualType lhsType = |
| 4099 | Context.getCanonicalType(lex->getType()).getUnqualifiedType(); |
| 4100 | QualType rhsType = |
| 4101 | Context.getCanonicalType(rex->getType()).getUnqualifiedType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4102 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4103 | // If the vector types are identical, return. |
Nate Begeman | 1330b0e | 2008-04-04 01:30:25 +0000 | [diff] [blame] | 4104 | if (lhsType == rhsType) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4105 | return lhsType; |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4106 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4107 | // Handle the case of a vector & extvector type of the same size and element |
| 4108 | // 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] | 4109 | if (getLangOptions().LaxVectorConversions) { |
| 4110 | // FIXME: Should we warn here? |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4111 | if (const VectorType *LV = lhsType->getAs<VectorType>()) { |
| 4112 | if (const VectorType *RV = rhsType->getAs<VectorType>()) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4113 | if (LV->getElementType() == RV->getElementType() && |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4114 | LV->getNumElements() == RV->getNumElements()) { |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4115 | return lhsType->isExtVectorType() ? lhsType : rhsType; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 4116 | } |
| 4117 | } |
| 4118 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4119 | |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4120 | // Canonicalize the ExtVector to the LHS, remember if we swapped so we can |
| 4121 | // swap back (so that we don't reverse the inputs to a subtract, for instance. |
| 4122 | bool swapped = false; |
| 4123 | if (rhsType->isExtVectorType()) { |
| 4124 | swapped = true; |
| 4125 | std::swap(rex, lex); |
| 4126 | std::swap(rhsType, lhsType); |
| 4127 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4128 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4129 | // Handle the case of an ext vector and scalar. |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4130 | if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) { |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4131 | QualType EltTy = LV->getElementType(); |
| 4132 | if (EltTy->isIntegralType() && rhsType->isIntegralType()) { |
| 4133 | if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4134 | ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4135 | if (swapped) std::swap(rex, lex); |
| 4136 | return lhsType; |
| 4137 | } |
| 4138 | } |
| 4139 | if (EltTy->isRealFloatingType() && rhsType->isScalarType() && |
| 4140 | rhsType->isRealFloatingType()) { |
| 4141 | if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4142 | ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast); |
Nate Begeman | 1bd1f6e | 2009-06-28 02:36:38 +0000 | [diff] [blame] | 4143 | if (swapped) std::swap(rex, lex); |
| 4144 | return lhsType; |
| 4145 | } |
Nate Begeman | 4119d1a | 2007-12-30 02:59:45 +0000 | [diff] [blame] | 4146 | } |
| 4147 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4148 | |
Nate Begeman | dde2598 | 2009-06-28 19:12:57 +0000 | [diff] [blame] | 4149 | // Vectors of different size or scalar and non-ext-vector are errors. |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4150 | Diag(Loc, diag::err_typecheck_vector_not_convertable) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4151 | << lex->getType() << rex->getType() |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4152 | << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4153 | return QualType(); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 4154 | } |
| 4155 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4156 | inline QualType Sema::CheckMultiplyDivideOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4157 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 69d1d00 | 2009-01-05 22:42:10 +0000 | [diff] [blame] | 4158 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4159 | return CheckVectorOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4160 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4161 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4162 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4163 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4164 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4165 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4166 | } |
| 4167 | |
| 4168 | inline QualType Sema::CheckRemainderOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4169 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Daniel Dunbar | 523aa60 | 2009-01-05 22:55:36 +0000 | [diff] [blame] | 4170 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4171 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
| 4172 | return CheckVectorOperands(Loc, lex, rex); |
| 4173 | return InvalidOperands(Loc, lex, rex); |
| 4174 | } |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4175 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4176 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4177 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4178 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4179 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4180 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4181 | } |
| 4182 | |
| 4183 | inline QualType Sema::CheckAdditionOperands( // C99 6.5.6 |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4184 | Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4185 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4186 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4187 | if (CompLHSTy) *CompLHSTy = compType; |
| 4188 | return compType; |
| 4189 | } |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4190 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4191 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4192 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4193 | // handle the common case first (both operands are arithmetic). |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4194 | if (lex->getType()->isArithmeticType() && |
| 4195 | rex->getType()->isArithmeticType()) { |
| 4196 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4197 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4198 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4199 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4200 | // Put any potential pointer into PExp |
| 4201 | Expr* PExp = lex, *IExp = rex; |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4202 | if (IExp->getType()->isAnyPointerType()) |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4203 | std::swap(PExp, IExp); |
| 4204 | |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4205 | if (PExp->getType()->isAnyPointerType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4206 | |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4207 | if (IExp->getType()->isIntegerType()) { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4208 | QualType PointeeTy = PExp->getType()->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4209 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4210 | // Check for arithmetic on pointers to incomplete types. |
| 4211 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4212 | if (getLangOptions().CPlusPlus) { |
| 4213 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
Chris Lattner | fa25bbb | 2008-11-19 05:08:23 +0000 | [diff] [blame] | 4214 | << lex->getSourceRange() << rex->getSourceRange(); |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 4215 | return QualType(); |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4216 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4217 | |
| 4218 | // GNU extension: arithmetic on pointer to void |
| 4219 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4220 | << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4221 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4222 | if (getLangOptions().CPlusPlus) { |
| 4223 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
| 4224 | << lex->getType() << lex->getSourceRange(); |
| 4225 | return QualType(); |
| 4226 | } |
| 4227 | |
| 4228 | // GNU extension: arithmetic on pointer to function |
| 4229 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
| 4230 | << lex->getType() << lex->getSourceRange(); |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4231 | } else { |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4232 | // Check if we require a complete type. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4233 | if (((PExp->getType()->isPointerType() && |
Steve Naroff | 9deaeca | 2009-07-13 21:32:29 +0000 | [diff] [blame] | 4234 | !PExp->getType()->isDependentType()) || |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4235 | PExp->getType()->isObjCObjectPointerType()) && |
| 4236 | RequireCompleteType(Loc, PointeeTy, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4237 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
| 4238 | << PExp->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4239 | << PExp->getType())) |
Steve Naroff | 760e3c4 | 2009-07-13 21:20:41 +0000 | [diff] [blame] | 4240 | return QualType(); |
| 4241 | } |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4242 | // Diagnose bad cases where we step over interface counts. |
| 4243 | if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4244 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4245 | << PointeeTy << PExp->getSourceRange(); |
| 4246 | return QualType(); |
| 4247 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4248 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4249 | if (CompLHSTy) { |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4250 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4251 | if (LHSTy.isNull()) { |
| 4252 | LHSTy = lex->getType(); |
| 4253 | if (LHSTy->isPromotableIntegerType()) |
| 4254 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4255 | } |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4256 | *CompLHSTy = LHSTy; |
| 4257 | } |
Eli Friedman | d72d16e | 2008-05-18 18:08:51 +0000 | [diff] [blame] | 4258 | return PExp->getType(); |
| 4259 | } |
| 4260 | } |
| 4261 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4262 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4263 | } |
| 4264 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4265 | // C99 6.5.6 |
| 4266 | QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4267 | SourceLocation Loc, QualType* CompLHSTy) { |
| 4268 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) { |
| 4269 | QualType compType = CheckVectorOperands(Loc, lex, rex); |
| 4270 | if (CompLHSTy) *CompLHSTy = compType; |
| 4271 | return compType; |
| 4272 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4273 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4274 | QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4275 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4276 | // Enforce type constraints: C99 6.5.6p3. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4277 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4278 | // Handle the common case first (both operands are arithmetic). |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4279 | if (lex->getType()->isArithmeticType() |
| 4280 | && rex->getType()->isArithmeticType()) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4281 | if (CompLHSTy) *CompLHSTy = compType; |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4282 | return compType; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4283 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4284 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4285 | // Either ptr - int or ptr - ptr. |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4286 | if (lex->getType()->isAnyPointerType()) { |
Steve Naroff | 430ee5a | 2009-07-13 17:19:15 +0000 | [diff] [blame] | 4287 | QualType lpointee = lex->getType()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4288 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4289 | // The LHS must be an completely-defined object type. |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 4290 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4291 | bool ComplainAboutVoid = false; |
| 4292 | Expr *ComplainAboutFunc = 0; |
| 4293 | if (lpointee->isVoidType()) { |
| 4294 | if (getLangOptions().CPlusPlus) { |
| 4295 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4296 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4297 | return QualType(); |
| 4298 | } |
| 4299 | |
| 4300 | // GNU C extension: arithmetic on pointer to void |
| 4301 | ComplainAboutVoid = true; |
| 4302 | } else if (lpointee->isFunctionType()) { |
| 4303 | if (getLangOptions().CPlusPlus) { |
| 4304 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4305 | << lex->getType() << lex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4306 | return QualType(); |
| 4307 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4308 | |
| 4309 | // GNU C extension: arithmetic on pointer to function |
| 4310 | ComplainAboutFunc = lex; |
| 4311 | } else if (!lpointee->isDependentType() && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4312 | RequireCompleteType(Loc, lpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4313 | PDiag(diag::err_typecheck_sub_ptr_object) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4314 | << lex->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4315 | << lex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4316 | return QualType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4317 | |
Chris Lattner | b5f1562 | 2009-04-24 23:50:08 +0000 | [diff] [blame] | 4318 | // Diagnose bad cases where we step over interface counts. |
| 4319 | if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 4320 | Diag(Loc, diag::err_arithmetic_nonfragile_interface) |
| 4321 | << lpointee << lex->getSourceRange(); |
| 4322 | return QualType(); |
| 4323 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4324 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4325 | // The result type of a pointer-int computation is the pointer type. |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4326 | if (rex->getType()->isIntegerType()) { |
| 4327 | if (ComplainAboutVoid) |
| 4328 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4329 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4330 | if (ComplainAboutFunc) |
| 4331 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4332 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4333 | << ComplainAboutFunc->getSourceRange(); |
| 4334 | |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4335 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4336 | return lex->getType(); |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4337 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4338 | |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4339 | // Handle pointer-pointer subtractions. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4340 | if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) { |
Eli Friedman | 8e54ad0 | 2008-02-08 01:19:44 +0000 | [diff] [blame] | 4341 | QualType rpointee = RHSPTy->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4342 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4343 | // RHS must be a completely-type object type. |
| 4344 | // Handle the GNU void* extension. |
| 4345 | if (rpointee->isVoidType()) { |
| 4346 | if (getLangOptions().CPlusPlus) { |
| 4347 | Diag(Loc, diag::err_typecheck_pointer_arith_void_type) |
| 4348 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4349 | return QualType(); |
| 4350 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4351 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4352 | ComplainAboutVoid = true; |
| 4353 | } else if (rpointee->isFunctionType()) { |
| 4354 | if (getLangOptions().CPlusPlus) { |
| 4355 | Diag(Loc, diag::err_typecheck_pointer_arith_function_type) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4356 | << rex->getType() << rex->getSourceRange(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4357 | return QualType(); |
| 4358 | } |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4359 | |
| 4360 | // GNU extension: arithmetic on pointer to function |
| 4361 | if (!ComplainAboutFunc) |
| 4362 | ComplainAboutFunc = rex; |
| 4363 | } else if (!rpointee->isDependentType() && |
| 4364 | RequireCompleteType(Loc, rpointee, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 4365 | PDiag(diag::err_typecheck_sub_ptr_object) |
| 4366 | << rex->getSourceRange() |
| 4367 | << rex->getType())) |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4368 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4369 | |
Eli Friedman | 88d936b | 2009-05-16 13:54:38 +0000 | [diff] [blame] | 4370 | if (getLangOptions().CPlusPlus) { |
| 4371 | // Pointee types must be the same: C++ [expr.add] |
| 4372 | if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) { |
| 4373 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4374 | << lex->getType() << rex->getType() |
| 4375 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4376 | return QualType(); |
| 4377 | } |
| 4378 | } else { |
| 4379 | // Pointee types must be compatible C99 6.5.6p3 |
| 4380 | if (!Context.typesAreCompatible( |
| 4381 | Context.getCanonicalType(lpointee).getUnqualifiedType(), |
| 4382 | Context.getCanonicalType(rpointee).getUnqualifiedType())) { |
| 4383 | Diag(Loc, diag::err_typecheck_sub_ptr_compatible) |
| 4384 | << lex->getType() << rex->getType() |
| 4385 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4386 | return QualType(); |
| 4387 | } |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4388 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4389 | |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4390 | if (ComplainAboutVoid) |
| 4391 | Diag(Loc, diag::ext_gnu_void_ptr) |
| 4392 | << lex->getSourceRange() << rex->getSourceRange(); |
| 4393 | if (ComplainAboutFunc) |
| 4394 | Diag(Loc, diag::ext_gnu_ptr_func_arith) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4395 | << ComplainAboutFunc->getType() |
Douglas Gregor | e7450f5 | 2009-03-24 19:52:54 +0000 | [diff] [blame] | 4396 | << ComplainAboutFunc->getSourceRange(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4397 | |
| 4398 | if (CompLHSTy) *CompLHSTy = lex->getType(); |
Chris Lattner | 6e4ab61 | 2007-12-09 21:53:25 +0000 | [diff] [blame] | 4399 | return Context.getPointerDiffType(); |
| 4400 | } |
| 4401 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4402 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4403 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4404 | } |
| 4405 | |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4406 | // C99 6.5.7 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4407 | QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Chris Lattner | eca7be6 | 2008-04-07 05:30:13 +0000 | [diff] [blame] | 4408 | bool isCompAssign) { |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4409 | // C99 6.5.7p2: Each of the operands shall have integer type. |
| 4410 | if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4411 | return InvalidOperands(Loc, lex, rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4412 | |
Nate Begeman | 2207d79 | 2009-10-25 02:26:48 +0000 | [diff] [blame] | 4413 | // Vector shifts promote their scalar inputs to vector type. |
| 4414 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
| 4415 | return CheckVectorOperands(Loc, lex, rex); |
| 4416 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4417 | // Shifts don't perform usual arithmetic conversions, they just do integer |
| 4418 | // promotions on each operand. C99 6.5.7p3 |
Eli Friedman | 04e8357 | 2009-08-20 04:21:42 +0000 | [diff] [blame] | 4419 | QualType LHSTy = Context.isPromotableBitField(lex); |
| 4420 | if (LHSTy.isNull()) { |
| 4421 | LHSTy = lex->getType(); |
| 4422 | if (LHSTy->isPromotableIntegerType()) |
| 4423 | LHSTy = Context.getPromotedIntegerType(LHSTy); |
Douglas Gregor | 2d833e3 | 2009-05-02 00:36:19 +0000 | [diff] [blame] | 4424 | } |
Chris Lattner | 1dcf2c8 | 2007-12-13 07:28:16 +0000 | [diff] [blame] | 4425 | if (!isCompAssign) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4426 | ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4427 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4428 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4429 | |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4430 | // Sanity-check shift operands |
| 4431 | llvm::APSInt Right; |
| 4432 | // Check right/shifter operand |
Daniel Dunbar | 3f180c6 | 2009-09-17 06:31:27 +0000 | [diff] [blame] | 4433 | if (!rex->isValueDependent() && |
| 4434 | rex->isIntegerConstantExpr(Right, Context)) { |
Ryan Flynn | 8045c73 | 2009-08-08 19:18:23 +0000 | [diff] [blame] | 4435 | if (Right.isNegative()) |
Ryan Flynn | d043968 | 2009-08-07 16:20:20 +0000 | [diff] [blame] | 4436 | Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange(); |
| 4437 | else { |
| 4438 | llvm::APInt LeftBits(Right.getBitWidth(), |
| 4439 | Context.getTypeSize(lex->getType())); |
| 4440 | if (Right.uge(LeftBits)) |
| 4441 | Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange(); |
| 4442 | } |
| 4443 | } |
| 4444 | |
Chris Lattner | ca5eede | 2007-12-12 05:47:28 +0000 | [diff] [blame] | 4445 | // "The type of the result is that of the promoted left operand." |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 4446 | return LHSTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4447 | } |
| 4448 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4449 | // C99 6.5.8, C++ [expr.rel] |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4450 | QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc, |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4451 | unsigned OpaqueOpc, bool isRelational) { |
| 4452 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc; |
| 4453 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4454 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4455 | return CheckVectorCompareOperands(lex, rex, Loc, isRelational); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4456 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4457 | // C99 6.5.8p3 / C99 6.5.9p4 |
Steve Naroff | 30bf771 | 2007-08-10 18:26:40 +0000 | [diff] [blame] | 4458 | if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType()) |
| 4459 | UsualArithmeticConversions(lex, rex); |
| 4460 | else { |
| 4461 | UsualUnaryConversions(lex); |
| 4462 | UsualUnaryConversions(rex); |
| 4463 | } |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4464 | QualType lType = lex->getType(); |
| 4465 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4466 | |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4467 | if (!lType->isFloatingType() |
| 4468 | && !(lType->isBlockPointerType() && isRelational)) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4469 | // For non-floating point types, check for self-comparisons of the form |
| 4470 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4471 | // often indicate logic errors in the program. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4472 | // NOTE: Don't warn about comparisons of enum constants. These can arise |
Ted Kremenek | 9ecede7 | 2009-03-20 19:57:37 +0000 | [diff] [blame] | 4473 | // from macro expansions, and are usually quite deliberate. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4474 | Expr *LHSStripped = lex->IgnoreParens(); |
| 4475 | Expr *RHSStripped = rex->IgnoreParens(); |
| 4476 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) |
| 4477 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) |
Ted Kremenek | b82dcd8 | 2009-03-20 18:35:45 +0000 | [diff] [blame] | 4478 | if (DRL->getDecl() == DRR->getDecl() && |
| 4479 | !isa<EnumConstantDecl>(DRL->getDecl())) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4480 | Diag(Loc, diag::warn_selfcomparison); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4481 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4482 | if (isa<CastExpr>(LHSStripped)) |
| 4483 | LHSStripped = LHSStripped->IgnoreParenCasts(); |
| 4484 | if (isa<CastExpr>(RHSStripped)) |
| 4485 | RHSStripped = RHSStripped->IgnoreParenCasts(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4486 | |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4487 | // Warn about comparisons against a string constant (unless the other |
| 4488 | // operand is null), the user probably wants strcmp. |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4489 | Expr *literalString = 0; |
| 4490 | Expr *literalStringStripped = 0; |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4491 | if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4492 | !RHSStripped->isNullPointerConstant(Context, |
| 4493 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4494 | literalString = lex; |
| 4495 | literalStringStripped = LHSStripped; |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 4496 | } else if ((isa<StringLiteral>(RHSStripped) || |
| 4497 | isa<ObjCEncodeExpr>(RHSStripped)) && |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4498 | !LHSStripped->isNullPointerConstant(Context, |
| 4499 | Expr::NPC_ValueDependentIsNull)) { |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4500 | literalString = rex; |
| 4501 | literalStringStripped = RHSStripped; |
| 4502 | } |
| 4503 | |
| 4504 | if (literalString) { |
| 4505 | std::string resultComparison; |
| 4506 | switch (Opc) { |
| 4507 | case BinaryOperator::LT: resultComparison = ") < 0"; break; |
| 4508 | case BinaryOperator::GT: resultComparison = ") > 0"; break; |
| 4509 | case BinaryOperator::LE: resultComparison = ") <= 0"; break; |
| 4510 | case BinaryOperator::GE: resultComparison = ") >= 0"; break; |
| 4511 | case BinaryOperator::EQ: resultComparison = ") == 0"; break; |
| 4512 | case BinaryOperator::NE: resultComparison = ") != 0"; break; |
| 4513 | default: assert(false && "Invalid comparison operator"); |
| 4514 | } |
| 4515 | Diag(Loc, diag::warn_stringcompare) |
| 4516 | << isa<ObjCEncodeExpr>(literalStringStripped) |
| 4517 | << literalString->getSourceRange() |
Douglas Gregor | a3a8351 | 2009-04-01 23:51:29 +0000 | [diff] [blame] | 4518 | << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ") |
| 4519 | << CodeModificationHint::CreateInsertion(lex->getLocStart(), |
| 4520 | "strcmp(") |
| 4521 | << CodeModificationHint::CreateInsertion( |
| 4522 | PP.getLocForEndOfToken(rex->getLocEnd()), |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 4523 | resultComparison); |
| 4524 | } |
Ted Kremenek | 3ca0bf2 | 2007-10-29 16:58:49 +0000 | [diff] [blame] | 4525 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4526 | |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4527 | // The result of comparisons is 'bool' in C++, 'int' in C. |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4528 | QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy; |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4529 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4530 | if (isRelational) { |
| 4531 | if (lType->isRealType() && rType->isRealType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4532 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4533 | } else { |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4534 | // Check for comparisons of floating point operands using != and ==. |
Ted Kremenek | 72cb1ae | 2007-10-29 17:13:39 +0000 | [diff] [blame] | 4535 | if (lType->isFloatingType()) { |
Chris Lattner | 55660a7 | 2009-03-08 19:39:53 +0000 | [diff] [blame] | 4536 | assert(rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4537 | CheckFloatComparison(Loc,lex,rex); |
Ted Kremenek | 6a26155 | 2007-10-29 16:40:01 +0000 | [diff] [blame] | 4538 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4539 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4540 | if (lType->isArithmeticType() && rType->isArithmeticType()) |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4541 | return ResultTy; |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4542 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4543 | |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 4544 | bool LHSIsNull = lex->isNullPointerConstant(Context, |
| 4545 | Expr::NPC_ValueDependentIsNull); |
| 4546 | bool RHSIsNull = rex->isNullPointerConstant(Context, |
| 4547 | Expr::NPC_ValueDependentIsNull); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4548 | |
Chris Lattner | a5937dd | 2007-08-26 01:18:55 +0000 | [diff] [blame] | 4549 | // All of the following pointer related warnings are GCC extensions, except |
| 4550 | // when handling null pointer constants. One day, we can consider making them |
| 4551 | // errors (when -pedantic-errors is enabled). |
Steve Naroff | 77878cc | 2007-08-27 04:08:11 +0000 | [diff] [blame] | 4552 | if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2 |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4553 | QualType LCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4554 | Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType()); |
Chris Lattner | bc896f5 | 2008-04-03 05:07:25 +0000 | [diff] [blame] | 4555 | QualType RCanPointeeTy = |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4556 | Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4557 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4558 | if (getLangOptions().CPlusPlus) { |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4559 | if (LCanPointeeTy == RCanPointeeTy) |
| 4560 | return ResultTy; |
| 4561 | |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4562 | // C++ [expr.rel]p2: |
| 4563 | // [...] Pointer conversions (4.10) and qualification |
| 4564 | // conversions (4.4) are performed on pointer operands (or on |
| 4565 | // a pointer operand and a null pointer constant) to bring |
| 4566 | // them to their composite pointer type. [...] |
| 4567 | // |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4568 | // C++ [expr.eq]p1 uses the same notion for (in)equality |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4569 | // comparisons of pointers. |
Douglas Gregor | de866f3 | 2009-05-05 04:50:50 +0000 | [diff] [blame] | 4570 | QualType T = FindCompositePointerType(lex, rex); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4571 | if (T.isNull()) { |
| 4572 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4573 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4574 | return QualType(); |
| 4575 | } |
| 4576 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4577 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4578 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 0c6db94 | 2009-05-04 06:07:12 +0000 | [diff] [blame] | 4579 | return ResultTy; |
| 4580 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4581 | // C99 6.5.9p2 and C99 6.5.8p2 |
| 4582 | if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(), |
| 4583 | RCanPointeeTy.getUnqualifiedType())) { |
| 4584 | // Valid unless a relational comparison of function pointers |
| 4585 | if (isRelational && LCanPointeeTy->isFunctionType()) { |
| 4586 | Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers) |
| 4587 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4588 | } |
| 4589 | } else if (!isRelational && |
| 4590 | (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) { |
| 4591 | // Valid unless comparison between non-null pointer and function pointer |
| 4592 | if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType()) |
| 4593 | && !LHSIsNull && !RHSIsNull) { |
| 4594 | Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void) |
| 4595 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4596 | } |
| 4597 | } else { |
| 4598 | // Invalid |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4599 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4600 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4601 | } |
Eli Friedman | 3075e76 | 2009-08-23 00:27:47 +0000 | [diff] [blame] | 4602 | if (LCanPointeeTy != RCanPointeeTy) |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4603 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4604 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4605 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4606 | |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4607 | if (getLangOptions().CPlusPlus) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4608 | // Comparison of pointers with null pointer constants and equality |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4609 | // comparisons of member pointers to null pointer constants. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4610 | if (RHSIsNull && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4611 | (lType->isPointerType() || |
| 4612 | (!isRelational && lType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4613 | ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4614 | return ResultTy; |
| 4615 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4616 | if (LHSIsNull && |
| 4617 | (rType->isPointerType() || |
| 4618 | (!isRelational && rType->isMemberPointerType()))) { |
Anders Carlsson | 26ba850 | 2009-08-24 18:03:14 +0000 | [diff] [blame] | 4619 | ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer); |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4620 | return ResultTy; |
| 4621 | } |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4622 | |
| 4623 | // Comparison of member pointers. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4624 | if (!isRelational && |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4625 | lType->isMemberPointerType() && rType->isMemberPointerType()) { |
| 4626 | // C++ [expr.eq]p2: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4627 | // In addition, pointers to members can be compared, or a pointer to |
| 4628 | // member and a null pointer constant. Pointer to member conversions |
| 4629 | // (4.11) and qualification conversions (4.4) are performed to bring |
| 4630 | // them to a common type. If one operand is a null pointer constant, |
| 4631 | // the common type is the type of the other operand. Otherwise, the |
| 4632 | // common type is a pointer to member type similar (4.4) to the type |
| 4633 | // of one of the operands, with a cv-qualification signature (4.4) |
| 4634 | // that is the union of the cv-qualification signatures of the operand |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4635 | // types. |
| 4636 | QualType T = FindCompositePointerType(lex, rex); |
| 4637 | if (T.isNull()) { |
| 4638 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers) |
| 4639 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
| 4640 | return QualType(); |
| 4641 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4642 | |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4643 | ImpCastExprToType(lex, T, CastExpr::CK_BitCast); |
| 4644 | ImpCastExprToType(rex, T, CastExpr::CK_BitCast); |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4645 | return ResultTy; |
| 4646 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4647 | |
Douglas Gregor | 20b3e99 | 2009-08-24 17:42:35 +0000 | [diff] [blame] | 4648 | // Comparison of nullptr_t with itself. |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 4649 | if (lType->isNullPtrType() && rType->isNullPtrType()) |
| 4650 | return ResultTy; |
| 4651 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4652 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4653 | // Handle block pointer types. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4654 | if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4655 | QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType(); |
| 4656 | QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4657 | |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4658 | if (!LHSIsNull && !RHSIsNull && |
Eli Friedman | 26784c1 | 2009-06-08 05:08:54 +0000 | [diff] [blame] | 4659 | !Context.typesAreCompatible(lpointee, rpointee)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4660 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4661 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4662 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4663 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4664 | return ResultTy; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4665 | } |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4666 | // Allow block pointers to be compared with null pointer constants. |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4667 | if (!isRelational |
| 4668 | && ((lType->isBlockPointerType() && rType->isPointerType()) |
| 4669 | || (lType->isPointerType() && rType->isBlockPointerType()))) { |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4670 | if (!LHSIsNull && !RHSIsNull) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4671 | if (!((rType->isPointerType() && rType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4672 | ->getPointeeType()->isVoidType()) |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4673 | || (lType->isPointerType() && lType->getAs<PointerType>() |
Mike Stump | dd3e166 | 2009-05-07 03:14:14 +0000 | [diff] [blame] | 4674 | ->getPointeeType()->isVoidType()))) |
| 4675 | Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks) |
| 4676 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4677 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4678 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4679 | return ResultTy; |
Steve Naroff | 59f5394 | 2008-09-28 01:11:11 +0000 | [diff] [blame] | 4680 | } |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 4681 | |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4682 | if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) { |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4683 | if (lType->isPointerType() || rType->isPointerType()) { |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 4684 | const PointerType *LPT = lType->getAs<PointerType>(); |
| 4685 | const PointerType *RPT = rType->getAs<PointerType>(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4686 | bool LPtrToVoid = LPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4687 | Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4688 | bool RPtrToVoid = RPT ? |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4689 | Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4690 | |
Steve Naroff | a8069f1 | 2008-11-17 19:49:16 +0000 | [diff] [blame] | 4691 | if (!LPtrToVoid && !RPtrToVoid && |
| 4692 | !Context.typesAreCompatible(lType, rType)) { |
Chris Lattner | c9c7c4e | 2008-11-18 22:52:51 +0000 | [diff] [blame] | 4693 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 4694 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Steve Naroff | a5ad863 | 2008-10-27 10:33:19 +0000 | [diff] [blame] | 4695 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4696 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4697 | return ResultTy; |
Steve Naroff | 87f3b93 | 2008-10-20 18:19:10 +0000 | [diff] [blame] | 4698 | } |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4699 | if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4700 | if (!Context.areComparableObjCPointerTypes(lType, rType)) |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4701 | Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers) |
| 4702 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4703 | ImpCastExprToType(rex, lType, CastExpr::CK_BitCast); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4704 | return ResultTy; |
Steve Naroff | 2037322 | 2008-06-03 14:04:54 +0000 | [diff] [blame] | 4705 | } |
Fariborz Jahanian | 7359f04 | 2007-12-20 01:06:58 +0000 | [diff] [blame] | 4706 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4707 | if (lType->isAnyPointerType() && rType->isIntegerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4708 | unsigned DiagID = 0; |
| 4709 | if (RHSIsNull) { |
| 4710 | if (isRelational) |
| 4711 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4712 | } else if (isRelational) |
| 4713 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4714 | else |
| 4715 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4716 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4717 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4718 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4719 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4720 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4721 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4722 | return ResultTy; |
Steve Naroff | e77fd3c | 2007-08-16 21:48:38 +0000 | [diff] [blame] | 4723 | } |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 4724 | if (lType->isIntegerType() && rType->isAnyPointerType()) { |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4725 | unsigned DiagID = 0; |
| 4726 | if (LHSIsNull) { |
| 4727 | if (isRelational) |
| 4728 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero; |
| 4729 | } else if (isRelational) |
| 4730 | DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer; |
| 4731 | else |
| 4732 | DiagID = diag::ext_typecheck_comparison_of_pointer_integer; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4733 | |
Chris Lattner | 06c0f5b | 2009-08-23 00:03:44 +0000 | [diff] [blame] | 4734 | if (DiagID) { |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4735 | Diag(Loc, DiagID) |
Chris Lattner | 149f138 | 2009-06-30 06:24:05 +0000 | [diff] [blame] | 4736 | << lType << rType << lex->getSourceRange() << rex->getSourceRange(); |
Chris Lattner | 6365e3e | 2009-08-22 18:58:31 +0000 | [diff] [blame] | 4737 | } |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4738 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4739 | return ResultTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4740 | } |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4741 | // Handle block pointers. |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4742 | if (!isRelational && RHSIsNull |
| 4743 | && lType->isBlockPointerType() && rType->isIntegerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4744 | ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4745 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4746 | } |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 4747 | if (!isRelational && LHSIsNull |
| 4748 | && lType->isIntegerType() && rType->isBlockPointerType()) { |
Eli Friedman | 73c39ab | 2009-10-20 08:27:19 +0000 | [diff] [blame] | 4749 | ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer); |
Douglas Gregor | 447b69e | 2008-11-19 03:25:36 +0000 | [diff] [blame] | 4750 | return ResultTy; |
Steve Naroff | 39218df | 2008-09-04 16:56:14 +0000 | [diff] [blame] | 4751 | } |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4752 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4753 | } |
| 4754 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4755 | /// CheckVectorCompareOperands - vector comparisons are a clang extension that |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4756 | /// operates on extended vector types. Instead of producing an IntTy result, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4757 | /// like a scalar comparison, a vector comparison produces a vector of integer |
| 4758 | /// types. |
| 4759 | QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex, |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4760 | SourceLocation Loc, |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4761 | bool isRelational) { |
| 4762 | // Check to make sure we're operating on vectors of the same type and width, |
| 4763 | // Allowing one side to be a scalar of element type. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4764 | QualType vType = CheckVectorOperands(Loc, lex, rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4765 | if (vType.isNull()) |
| 4766 | return vType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4767 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4768 | QualType lType = lex->getType(); |
| 4769 | QualType rType = rex->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4770 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4771 | // For non-floating point types, check for self-comparisons of the form |
| 4772 | // x == x, x != x, x < x, etc. These always evaluate to a constant, and |
| 4773 | // often indicate logic errors in the program. |
| 4774 | if (!lType->isFloatingType()) { |
| 4775 | if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens())) |
| 4776 | if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens())) |
| 4777 | if (DRL->getDecl() == DRR->getDecl()) |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4778 | Diag(Loc, diag::warn_selfcomparison); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4779 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4780 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4781 | // Check for comparisons of floating point operands using != and ==. |
| 4782 | if (!isRelational && lType->isFloatingType()) { |
| 4783 | assert (rType->isFloatingType()); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4784 | CheckFloatComparison(Loc,lex,rex); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4785 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4786 | |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4787 | // Return the type for the comparison, which is the same as vector type for |
| 4788 | // integer vectors, or an integer type of identical size and number of |
| 4789 | // elements for floating point vectors. |
| 4790 | if (lType->isIntegerType()) |
| 4791 | return lType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4792 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 4793 | const VectorType *VTy = lType->getAs<VectorType>(); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4794 | unsigned TypeSize = Context.getTypeSize(VTy->getElementType()); |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4795 | if (TypeSize == Context.getTypeSize(Context.IntTy)) |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4796 | return Context.getExtVectorType(Context.IntTy, VTy->getNumElements()); |
Chris Lattner | d013aa1 | 2009-03-31 07:46:52 +0000 | [diff] [blame] | 4797 | if (TypeSize == Context.getTypeSize(Context.LongTy)) |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4798 | return Context.getExtVectorType(Context.LongTy, VTy->getNumElements()); |
| 4799 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4800 | assert(TypeSize == Context.getTypeSize(Context.LongLongTy) && |
Nate Begeman | 59b5da6 | 2009-01-18 03:20:47 +0000 | [diff] [blame] | 4801 | "Unhandled vector element size in vector compare"); |
Nate Begeman | be2341d | 2008-07-14 18:02:46 +0000 | [diff] [blame] | 4802 | return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements()); |
| 4803 | } |
| 4804 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4805 | inline QualType Sema::CheckBitwiseOperands( |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4806 | Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) { |
Steve Naroff | 3e5e556 | 2007-07-16 22:23:01 +0000 | [diff] [blame] | 4807 | if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4808 | return CheckVectorOperands(Loc, lex, rex); |
Steve Naroff | 90045e8 | 2007-07-13 23:32:42 +0000 | [diff] [blame] | 4809 | |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4810 | QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4811 | |
Steve Naroff | a4332e2 | 2007-07-17 00:58:39 +0000 | [diff] [blame] | 4812 | if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType()) |
Steve Naroff | 9f5fa9b | 2007-08-24 19:07:16 +0000 | [diff] [blame] | 4813 | return compType; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4814 | return InvalidOperands(Loc, lex, rex); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4815 | } |
| 4816 | |
| 4817 | inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14] |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4818 | Expr *&lex, Expr *&rex, SourceLocation Loc) { |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 4819 | UsualUnaryConversions(lex); |
| 4820 | UsualUnaryConversions(rex); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4821 | |
Anders Carlsson | 0490501 | 2009-10-16 01:44:21 +0000 | [diff] [blame] | 4822 | if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType()) |
| 4823 | return InvalidOperands(Loc, lex, rex); |
| 4824 | |
| 4825 | if (Context.getLangOptions().CPlusPlus) { |
| 4826 | // C++ [expr.log.and]p2 |
| 4827 | // C++ [expr.log.or]p2 |
| 4828 | return Context.BoolTy; |
| 4829 | } |
| 4830 | |
| 4831 | return Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4832 | } |
| 4833 | |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4834 | /// IsReadonlyProperty - Verify that otherwise a valid l-value expression |
| 4835 | /// is a read-only property; return true if so. A readonly property expression |
| 4836 | /// depends on various declarations and thus must be treated specially. |
| 4837 | /// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4838 | static bool IsReadonlyProperty(Expr *E, Sema &S) { |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4839 | if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) { |
| 4840 | const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E); |
| 4841 | if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) { |
| 4842 | QualType BaseType = PropExpr->getBase()->getType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4843 | if (const ObjCObjectPointerType *OPT = |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 4844 | BaseType->getAsObjCInterfacePointerType()) |
| 4845 | if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl()) |
| 4846 | if (S.isPropertyReadonly(PDecl, IFace)) |
| 4847 | return true; |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4848 | } |
| 4849 | } |
| 4850 | return false; |
| 4851 | } |
| 4852 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4853 | /// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not, |
| 4854 | /// emit an error and return true. If so, return false. |
| 4855 | static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) { |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4856 | SourceLocation OrigLoc = Loc; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4857 | Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context, |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4858 | &Loc); |
Fariborz Jahanian | d1fa644 | 2009-01-12 19:55:42 +0000 | [diff] [blame] | 4859 | if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S)) |
| 4860 | IsLV = Expr::MLV_ReadonlyProperty; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4861 | if (IsLV == Expr::MLV_Valid) |
| 4862 | return false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4863 | |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4864 | unsigned Diag = 0; |
| 4865 | bool NeedType = false; |
| 4866 | switch (IsLV) { // C99 6.5.16p2 |
| 4867 | default: assert(0 && "Unknown result from isModifiableLvalue!"); |
| 4868 | case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4869 | case Expr::MLV_ArrayType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4870 | Diag = diag::err_typecheck_array_not_modifiable_lvalue; |
| 4871 | NeedType = true; |
| 4872 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4873 | case Expr::MLV_NotObjectType: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4874 | Diag = diag::err_typecheck_non_object_not_modifiable_lvalue; |
| 4875 | NeedType = true; |
| 4876 | break; |
Chris Lattner | ca354fa | 2008-11-17 19:51:54 +0000 | [diff] [blame] | 4877 | case Expr::MLV_LValueCast: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4878 | Diag = diag::err_typecheck_lvalue_casts_not_supported; |
| 4879 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4880 | case Expr::MLV_InvalidExpression: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4881 | Diag = diag::err_typecheck_expression_not_modifiable_lvalue; |
| 4882 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4883 | case Expr::MLV_IncompleteType: |
| 4884 | case Expr::MLV_IncompleteVoidType: |
Douglas Gregor | 86447ec | 2009-03-09 16:13:40 +0000 | [diff] [blame] | 4885 | return S.RequireCompleteType(Loc, E->getType(), |
Anders Carlsson | b790661 | 2009-08-26 23:45:07 +0000 | [diff] [blame] | 4886 | PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue) |
| 4887 | << E->getSourceRange()); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4888 | case Expr::MLV_DuplicateVectorComponents: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4889 | Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue; |
| 4890 | break; |
Steve Naroff | 4f6a7d7 | 2008-09-26 14:41:28 +0000 | [diff] [blame] | 4891 | case Expr::MLV_NotBlockQualified: |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4892 | Diag = diag::err_block_decl_ref_not_modifiable_lvalue; |
| 4893 | break; |
Fariborz Jahanian | 5daf570 | 2008-11-22 18:39:36 +0000 | [diff] [blame] | 4894 | case Expr::MLV_ReadonlyProperty: |
| 4895 | Diag = diag::error_readonly_property_assignment; |
| 4896 | break; |
Fariborz Jahanian | ba8d2d6 | 2008-11-22 20:25:50 +0000 | [diff] [blame] | 4897 | case Expr::MLV_NoSetterProperty: |
| 4898 | Diag = diag::error_nosetter_property_assignment; |
| 4899 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4900 | } |
Steve Naroff | d1861fd | 2007-07-31 12:34:36 +0000 | [diff] [blame] | 4901 | |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4902 | SourceRange Assign; |
| 4903 | if (Loc != OrigLoc) |
| 4904 | Assign = SourceRange(OrigLoc, OrigLoc); |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4905 | if (NeedType) |
Daniel Dunbar | 44e35f7 | 2009-04-15 00:08:05 +0000 | [diff] [blame] | 4906 | S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4907 | else |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4908 | S.Diag(Loc, Diag) << E->getSourceRange() << Assign; |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4909 | return true; |
| 4910 | } |
| 4911 | |
| 4912 | |
| 4913 | |
| 4914 | // C99 6.5.16.1 |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4915 | QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS, |
| 4916 | SourceLocation Loc, |
| 4917 | QualType CompoundType) { |
| 4918 | // Verify that LHS is a modifiable lvalue, and emit error if not. |
| 4919 | if (CheckForModifiableLvalue(LHS, Loc, *this)) |
Chris Lattner | f67bd9f | 2008-11-18 01:22:49 +0000 | [diff] [blame] | 4920 | return QualType(); |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4921 | |
| 4922 | QualType LHSType = LHS->getType(); |
| 4923 | QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4924 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4925 | AssignConvertType ConvTy; |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4926 | if (CompoundType.isNull()) { |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4927 | // Simple assignment "x = y". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4928 | ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS); |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4929 | // Special case of NSObject attributes on c-style pointer types. |
| 4930 | if (ConvTy == IncompatiblePointer && |
| 4931 | ((Context.isObjCNSObjectType(LHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4932 | RHSType->isObjCObjectPointerType()) || |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4933 | (Context.isObjCNSObjectType(RHSType) && |
Steve Naroff | f495456 | 2009-07-16 15:41:00 +0000 | [diff] [blame] | 4934 | LHSType->isObjCObjectPointerType()))) |
Fariborz Jahanian | fa23c1d | 2009-01-13 23:34:40 +0000 | [diff] [blame] | 4935 | ConvTy = Compatible; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4936 | |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4937 | // If the RHS is a unary plus or minus, check to see if they = and + are |
| 4938 | // right next to each other. If so, the user may have typo'd "x =+ 4" |
| 4939 | // instead of "x += 4". |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4940 | Expr *RHSCheck = RHS; |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4941 | if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck)) |
| 4942 | RHSCheck = ICE->getSubExpr(); |
| 4943 | if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) { |
| 4944 | if ((UO->getOpcode() == UnaryOperator::Plus || |
| 4945 | UO->getOpcode() == UnaryOperator::Minus) && |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4946 | Loc.isFileID() && UO->getOperatorLoc().isFileID() && |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4947 | // Only if the two operators are exactly adjacent. |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4948 | Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() && |
| 4949 | // And there is a space or other character before the subexpr of the |
| 4950 | // unary +/-. We don't want to warn on "x=-1". |
Chris Lattner | 3e87209 | 2009-03-09 07:11:10 +0000 | [diff] [blame] | 4951 | Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() && |
| 4952 | UO->getSubExpr()->getLocStart().isFileID()) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 4953 | Diag(Loc, diag::warn_not_compound_assign) |
| 4954 | << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-") |
| 4955 | << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc()); |
Chris Lattner | 399bd1b | 2009-03-08 06:51:10 +0000 | [diff] [blame] | 4956 | } |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4957 | } |
| 4958 | } else { |
| 4959 | // Compound assignment "x += y" |
Eli Friedman | 623712b | 2009-05-16 05:56:02 +0000 | [diff] [blame] | 4960 | ConvTy = CheckAssignmentConstraints(LHSType, RHSType); |
Chris Lattner | 2c15647 | 2008-08-21 18:04:13 +0000 | [diff] [blame] | 4961 | } |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4962 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4963 | if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType, |
| 4964 | RHS, "assigning")) |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 4965 | return QualType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4966 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4967 | // C99 6.5.16p3: The type of an assignment expression is the type of the |
| 4968 | // left operand unless the left operand has qualified type, in which case |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 4969 | // it is the unqualified version of the type of the left operand. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4970 | // C99 6.5.16.1p2: In simple assignment, the value of the right operand |
| 4971 | // is converted to the type of the assignment expression (above). |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 4972 | // 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] | 4973 | // operand. |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4974 | return LHSType.getUnqualifiedType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4975 | } |
| 4976 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4977 | // C99 6.5.17 |
| 4978 | QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) { |
Chris Lattner | 53fcaa9 | 2008-07-25 20:54:07 +0000 | [diff] [blame] | 4979 | // 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] | 4980 | DefaultFunctionArrayConversion(RHS); |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 4981 | |
| 4982 | // FIXME: Check that RHS type is complete in C mode (it's legal for it to be |
| 4983 | // incomplete in C++). |
| 4984 | |
Chris Lattner | 29a1cfb | 2008-11-18 01:30:42 +0000 | [diff] [blame] | 4985 | return RHS->getType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4986 | } |
| 4987 | |
Steve Naroff | 49b4526 | 2007-07-13 16:58:59 +0000 | [diff] [blame] | 4988 | /// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine |
| 4989 | /// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions. |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4990 | QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc, |
| 4991 | bool isInc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 4992 | if (Op->isTypeDependent()) |
| 4993 | return Context.DependentTy; |
| 4994 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 4995 | QualType ResType = Op->getType(); |
| 4996 | assert(!ResType.isNull() && "no type for increment/decrement expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 4997 | |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 4998 | if (getLangOptions().CPlusPlus && ResType->isBooleanType()) { |
| 4999 | // Decrement of bool is not allowed. |
| 5000 | if (!isInc) { |
| 5001 | Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange(); |
| 5002 | return QualType(); |
| 5003 | } |
| 5004 | // Increment of bool sets it to true, but is deprecated. |
| 5005 | Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange(); |
| 5006 | } else if (ResType->isRealType()) { |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5007 | // OK! |
Steve Naroff | 58f9f2c | 2009-07-14 18:25:06 +0000 | [diff] [blame] | 5008 | } else if (ResType->isAnyPointerType()) { |
| 5009 | QualType PointeeTy = ResType->getPointeeType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5010 | |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5011 | // C99 6.5.2.4p2, 6.5.6p2 |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5012 | if (PointeeTy->isVoidType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5013 | if (getLangOptions().CPlusPlus) { |
| 5014 | Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type) |
| 5015 | << Op->getSourceRange(); |
| 5016 | return QualType(); |
| 5017 | } |
| 5018 | |
| 5019 | // Pointer to void is a GNU extension in C. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5020 | Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5021 | } else if (PointeeTy->isFunctionType()) { |
Douglas Gregor | c983b86 | 2009-01-23 00:36:41 +0000 | [diff] [blame] | 5022 | if (getLangOptions().CPlusPlus) { |
| 5023 | Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type) |
| 5024 | << Op->getType() << Op->getSourceRange(); |
| 5025 | return QualType(); |
| 5026 | } |
| 5027 | |
| 5028 | Diag(OpLoc, diag::ext_gnu_ptr_func_arith) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5029 | << ResType << Op->getSourceRange(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5030 | } else if (RequireCompleteType(OpLoc, PointeeTy, |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5031 | PDiag(diag::err_typecheck_arithmetic_incomplete_type) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5032 | << Op->getSourceRange() |
Anders Carlsson | d497ba7 | 2009-08-26 22:59:12 +0000 | [diff] [blame] | 5033 | << ResType)) |
Douglas Gregor | 4ec339f | 2009-01-19 19:26:10 +0000 | [diff] [blame] | 5034 | return QualType(); |
Fariborz Jahanian | 9f8a04f | 2009-07-16 17:59:14 +0000 | [diff] [blame] | 5035 | // Diagnose bad cases where we step over interface counts. |
| 5036 | else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) { |
| 5037 | Diag(OpLoc, diag::err_arithmetic_nonfragile_interface) |
| 5038 | << PointeeTy << Op->getSourceRange(); |
| 5039 | return QualType(); |
| 5040 | } |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5041 | } else if (ResType->isComplexType()) { |
| 5042 | // C99 does not support ++/-- on complex types, we allow as an extension. |
| 5043 | Diag(OpLoc, diag::ext_integer_increment_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5044 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5045 | } else { |
| 5046 | Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5047 | << ResType << Op->getSourceRange(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5048 | return QualType(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5049 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5050 | // 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] | 5051 | // Now make sure the operand is a modifiable lvalue. |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5052 | if (CheckForModifiableLvalue(Op, OpLoc, *this)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5053 | return QualType(); |
Chris Lattner | 3528d35 | 2008-11-21 07:05:48 +0000 | [diff] [blame] | 5054 | return ResType; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5055 | } |
| 5056 | |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5057 | /// getPrimaryDecl - Helper function for CheckAddressOfOperand(). |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5058 | /// This routine allows us to typecheck complex/recursive expressions |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5059 | /// where the declaration is needed for type checking. We only need to |
| 5060 | /// handle cases when the expression references a function designator |
| 5061 | /// or is an lvalue. Here are some examples: |
| 5062 | /// - &(x) => x |
| 5063 | /// - &*****f => f for f a function designator. |
| 5064 | /// - &s.xx => s |
| 5065 | /// - &s.zz[1].yy -> s, if zz is an array |
| 5066 | /// - *(x + 1) -> x, if x is an array |
| 5067 | /// - &"123"[2] -> 0 |
| 5068 | /// - & __real__ x -> x |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5069 | static NamedDecl *getPrimaryDecl(Expr *E) { |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5070 | switch (E->getStmtClass()) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5071 | case Stmt::DeclRefExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5072 | return cast<DeclRefExpr>(E)->getDecl(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5073 | case Stmt::MemberExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5074 | // If this is an arrow operator, the address is an offset from |
| 5075 | // the base's value, so the object the base refers to is |
| 5076 | // irrelevant. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5077 | if (cast<MemberExpr>(E)->isArrow()) |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5078 | return 0; |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5079 | // Otherwise, the expression refers to a part of the base |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5080 | return getPrimaryDecl(cast<MemberExpr>(E)->getBase()); |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5081 | case Stmt::ArraySubscriptExprClass: { |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5082 | // FIXME: This code shouldn't be necessary! We should catch the implicit |
| 5083 | // promotion of register arrays earlier. |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5084 | Expr* Base = cast<ArraySubscriptExpr>(E)->getBase(); |
| 5085 | if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) { |
| 5086 | if (ICE->getSubExpr()->getType()->isArrayType()) |
| 5087 | return getPrimaryDecl(ICE->getSubExpr()); |
| 5088 | } |
| 5089 | return 0; |
Anders Carlsson | 369dee4 | 2008-02-01 07:15:58 +0000 | [diff] [blame] | 5090 | } |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5091 | case Stmt::UnaryOperatorClass: { |
| 5092 | UnaryOperator *UO = cast<UnaryOperator>(E); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5093 | |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5094 | switch(UO->getOpcode()) { |
Daniel Dunbar | 1e76ce6 | 2008-08-04 20:02:37 +0000 | [diff] [blame] | 5095 | case UnaryOperator::Real: |
| 5096 | case UnaryOperator::Imag: |
| 5097 | case UnaryOperator::Extension: |
| 5098 | return getPrimaryDecl(UO->getSubExpr()); |
| 5099 | default: |
| 5100 | return 0; |
| 5101 | } |
| 5102 | } |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5103 | case Stmt::ParenExprClass: |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5104 | return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr()); |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5105 | case Stmt::ImplicitCastExprClass: |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5106 | // If the result of an implicit cast is an l-value, we care about |
| 5107 | // the sub-expression; otherwise, the result here doesn't matter. |
Chris Lattner | f0467b3 | 2008-04-02 04:24:33 +0000 | [diff] [blame] | 5108 | return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5109 | default: |
| 5110 | return 0; |
| 5111 | } |
| 5112 | } |
| 5113 | |
| 5114 | /// CheckAddressOfOperand - The operand of & must be either a function |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5115 | /// 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] | 5116 | /// 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] | 5117 | /// Note: The usual conversions are *not* applied to the operand of the & |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5118 | /// 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] | 5119 | /// 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] | 5120 | /// we allow the '&' but retain the overloaded-function type. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5121 | QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) { |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5122 | // Make sure to ignore parentheses in subsequent checks |
| 5123 | op = op->IgnoreParens(); |
| 5124 | |
Douglas Gregor | 9103bb2 | 2008-12-17 22:52:20 +0000 | [diff] [blame] | 5125 | if (op->isTypeDependent()) |
| 5126 | return Context.DependentTy; |
| 5127 | |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5128 | if (getLangOptions().C99) { |
| 5129 | // Implement C99-only parts of addressof rules. |
| 5130 | if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) { |
| 5131 | if (uOp->getOpcode() == UnaryOperator::Deref) |
| 5132 | // Per C99 6.5.3.2, the address of a deref always returns a valid result |
| 5133 | // (assuming the deref expression is valid). |
| 5134 | return uOp->getSubExpr()->getType(); |
| 5135 | } |
| 5136 | // Technically, there should be a check for array subscript |
| 5137 | // expressions here, but the result of one is always an lvalue anyway. |
| 5138 | } |
Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 5139 | NamedDecl *dcl = getPrimaryDecl(op); |
Chris Lattner | 28be73f | 2008-07-26 21:30:36 +0000 | [diff] [blame] | 5140 | Expr::isLvalueResult lval = op->isLvalue(Context); |
Nuno Lopes | 6b6609f | 2008-12-16 22:59:47 +0000 | [diff] [blame] | 5141 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5142 | if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) { |
| 5143 | // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5144 | // The operand must be either an l-value or a function designator |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5145 | if (!op->getType()->isFunctionType()) { |
Chris Lattner | f82228f | 2007-11-16 17:46:48 +0000 | [diff] [blame] | 5146 | // FIXME: emit more specific diag... |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5147 | Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof) |
| 5148 | << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5149 | return QualType(); |
| 5150 | } |
Douglas Gregor | 33bbbc5 | 2009-05-02 02:18:30 +0000 | [diff] [blame] | 5151 | } else if (op->getBitField()) { // C99 6.5.3.2p1 |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5152 | // The operand cannot be a bit-field |
| 5153 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5154 | << "bit-field" << op->getSourceRange(); |
Douglas Gregor | 86f1940 | 2008-12-20 23:49:58 +0000 | [diff] [blame] | 5155 | return QualType(); |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5156 | } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) && |
| 5157 | cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){ |
Eli Friedman | 23d58ce | 2009-04-20 08:23:18 +0000 | [diff] [blame] | 5158 | // The operand cannot be an element of a vector |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5159 | Diag(OpLoc, diag::err_typecheck_address_of) |
Nate Begeman | b104b1f | 2009-02-15 22:45:20 +0000 | [diff] [blame] | 5160 | << "vector element" << op->getSourceRange(); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5161 | return QualType(); |
Fariborz Jahanian | 0337f21 | 2009-07-07 18:50:52 +0000 | [diff] [blame] | 5162 | } else if (isa<ObjCPropertyRefExpr>(op)) { |
| 5163 | // cannot take address of a property expression. |
| 5164 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5165 | << "property expression" << op->getSourceRange(); |
| 5166 | return QualType(); |
Anders Carlsson | 1d524c3 | 2009-09-14 23:15:26 +0000 | [diff] [blame] | 5167 | } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) { |
| 5168 | // FIXME: Can LHS ever be null here? |
Anders Carlsson | 474e102 | 2009-09-15 16:03:44 +0000 | [diff] [blame] | 5169 | if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull()) |
| 5170 | return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc); |
Steve Naroff | bcb2b61 | 2008-02-29 23:30:25 +0000 | [diff] [blame] | 5171 | } else if (dcl) { // C99 6.5.3.2p1 |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5172 | // 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] | 5173 | // with the register storage-class specifier. |
| 5174 | if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) { |
| 5175 | if (vd->getStorageClass() == VarDecl::Register) { |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5176 | Diag(OpLoc, diag::err_typecheck_address_of) |
| 5177 | << "register variable" << op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5178 | return QualType(); |
| 5179 | } |
Douglas Gregor | 83314aa | 2009-07-08 20:55:45 +0000 | [diff] [blame] | 5180 | } else if (isa<OverloadedFunctionDecl>(dcl) || |
| 5181 | isa<FunctionTemplateDecl>(dcl)) { |
Douglas Gregor | 904eed3 | 2008-11-10 20:40:00 +0000 | [diff] [blame] | 5182 | return Context.OverloadTy; |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5183 | } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) { |
Douglas Gregor | 2988205 | 2008-12-10 21:26:49 +0000 | [diff] [blame] | 5184 | // Okay: we can take the address of a field. |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5185 | // Could be a pointer to member, though, if there is an explicit |
| 5186 | // scope qualifier for the class. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5187 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) { |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5188 | DeclContext *Ctx = dcl->getDeclContext(); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5189 | if (Ctx && Ctx->isRecord()) { |
| 5190 | if (FD->getType()->isReferenceType()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5191 | Diag(OpLoc, |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5192 | diag::err_cannot_form_pointer_to_member_of_reference_type) |
| 5193 | << FD->getDeclName() << FD->getType(); |
| 5194 | return QualType(); |
| 5195 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5196 | |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5197 | return Context.getMemberPointerType(op->getType(), |
| 5198 | Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr()); |
Anders Carlsson | f9e48bd | 2009-07-08 21:45:58 +0000 | [diff] [blame] | 5199 | } |
Sebastian Redl | ebc07d5 | 2009-02-03 20:19:35 +0000 | [diff] [blame] | 5200 | } |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5201 | } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) { |
Nuno Lopes | 6fea8d2 | 2008-12-16 22:58:26 +0000 | [diff] [blame] | 5202 | // Okay: we can take the address of a function. |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5203 | // As above. |
Douglas Gregor | a2813ce | 2009-10-23 18:54:35 +0000 | [diff] [blame] | 5204 | if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() && |
| 5205 | MD->isInstance()) |
Anders Carlsson | 196f7d0 | 2009-05-16 21:43:42 +0000 | [diff] [blame] | 5206 | return Context.getMemberPointerType(op->getType(), |
| 5207 | Context.getTypeDeclType(MD->getParent()).getTypePtr()); |
| 5208 | } else if (!isa<FunctionDecl>(dcl)) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5209 | assert(0 && "Unknown/unexpected decl type"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5210 | } |
Sebastian Redl | 33b399a | 2009-02-04 21:23:32 +0000 | [diff] [blame] | 5211 | |
Eli Friedman | 441cf10 | 2009-05-16 23:27:50 +0000 | [diff] [blame] | 5212 | if (lval == Expr::LV_IncompleteVoidType) { |
| 5213 | // Taking the address of a void variable is technically illegal, but we |
| 5214 | // allow it in cases which are otherwise valid. |
| 5215 | // Example: "extern void x; void* y = &x;". |
| 5216 | Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange(); |
| 5217 | } |
| 5218 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5219 | // If the operand has type "type", the result has type "pointer to type". |
| 5220 | return Context.getPointerType(op->getType()); |
| 5221 | } |
| 5222 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5223 | QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5224 | if (Op->isTypeDependent()) |
| 5225 | return Context.DependentTy; |
| 5226 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5227 | UsualUnaryConversions(Op); |
| 5228 | QualType Ty = Op->getType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5229 | |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5230 | // Note that per both C89 and C99, this is always legal, even if ptype is an |
| 5231 | // incomplete type or void. It would be possible to warn about dereferencing |
| 5232 | // a void pointer, but it's completely well-defined, and such a warning is |
| 5233 | // unlikely to catch any mistakes. |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5234 | if (const PointerType *PT = Ty->getAs<PointerType>()) |
Steve Naroff | 08f1967 | 2008-01-13 17:10:08 +0000 | [diff] [blame] | 5235 | return PT->getPointeeType(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5236 | |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5237 | if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>()) |
Fariborz Jahanian | 16b1037 | 2009-09-03 00:43:07 +0000 | [diff] [blame] | 5238 | return OPT->getPointeeType(); |
Steve Naroff | 14108da | 2009-07-10 23:34:53 +0000 | [diff] [blame] | 5239 | |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5240 | Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer) |
Chris Lattner | 22caddc | 2008-11-23 09:13:29 +0000 | [diff] [blame] | 5241 | << Ty << Op->getSourceRange(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5242 | return QualType(); |
| 5243 | } |
| 5244 | |
| 5245 | static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode( |
| 5246 | tok::TokenKind Kind) { |
| 5247 | BinaryOperator::Opcode Opc; |
| 5248 | switch (Kind) { |
| 5249 | default: assert(0 && "Unknown binop!"); |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5250 | case tok::periodstar: Opc = BinaryOperator::PtrMemD; break; |
| 5251 | case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5252 | case tok::star: Opc = BinaryOperator::Mul; break; |
| 5253 | case tok::slash: Opc = BinaryOperator::Div; break; |
| 5254 | case tok::percent: Opc = BinaryOperator::Rem; break; |
| 5255 | case tok::plus: Opc = BinaryOperator::Add; break; |
| 5256 | case tok::minus: Opc = BinaryOperator::Sub; break; |
| 5257 | case tok::lessless: Opc = BinaryOperator::Shl; break; |
| 5258 | case tok::greatergreater: Opc = BinaryOperator::Shr; break; |
| 5259 | case tok::lessequal: Opc = BinaryOperator::LE; break; |
| 5260 | case tok::less: Opc = BinaryOperator::LT; break; |
| 5261 | case tok::greaterequal: Opc = BinaryOperator::GE; break; |
| 5262 | case tok::greater: Opc = BinaryOperator::GT; break; |
| 5263 | case tok::exclaimequal: Opc = BinaryOperator::NE; break; |
| 5264 | case tok::equalequal: Opc = BinaryOperator::EQ; break; |
| 5265 | case tok::amp: Opc = BinaryOperator::And; break; |
| 5266 | case tok::caret: Opc = BinaryOperator::Xor; break; |
| 5267 | case tok::pipe: Opc = BinaryOperator::Or; break; |
| 5268 | case tok::ampamp: Opc = BinaryOperator::LAnd; break; |
| 5269 | case tok::pipepipe: Opc = BinaryOperator::LOr; break; |
| 5270 | case tok::equal: Opc = BinaryOperator::Assign; break; |
| 5271 | case tok::starequal: Opc = BinaryOperator::MulAssign; break; |
| 5272 | case tok::slashequal: Opc = BinaryOperator::DivAssign; break; |
| 5273 | case tok::percentequal: Opc = BinaryOperator::RemAssign; break; |
| 5274 | case tok::plusequal: Opc = BinaryOperator::AddAssign; break; |
| 5275 | case tok::minusequal: Opc = BinaryOperator::SubAssign; break; |
| 5276 | case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break; |
| 5277 | case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break; |
| 5278 | case tok::ampequal: Opc = BinaryOperator::AndAssign; break; |
| 5279 | case tok::caretequal: Opc = BinaryOperator::XorAssign; break; |
| 5280 | case tok::pipeequal: Opc = BinaryOperator::OrAssign; break; |
| 5281 | case tok::comma: Opc = BinaryOperator::Comma; break; |
| 5282 | } |
| 5283 | return Opc; |
| 5284 | } |
| 5285 | |
| 5286 | static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode( |
| 5287 | tok::TokenKind Kind) { |
| 5288 | UnaryOperator::Opcode Opc; |
| 5289 | switch (Kind) { |
| 5290 | default: assert(0 && "Unknown unary op!"); |
| 5291 | case tok::plusplus: Opc = UnaryOperator::PreInc; break; |
| 5292 | case tok::minusminus: Opc = UnaryOperator::PreDec; break; |
| 5293 | case tok::amp: Opc = UnaryOperator::AddrOf; break; |
| 5294 | case tok::star: Opc = UnaryOperator::Deref; break; |
| 5295 | case tok::plus: Opc = UnaryOperator::Plus; break; |
| 5296 | case tok::minus: Opc = UnaryOperator::Minus; break; |
| 5297 | case tok::tilde: Opc = UnaryOperator::Not; break; |
| 5298 | case tok::exclaim: Opc = UnaryOperator::LNot; break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5299 | case tok::kw___real: Opc = UnaryOperator::Real; break; |
| 5300 | case tok::kw___imag: Opc = UnaryOperator::Imag; break; |
| 5301 | case tok::kw___extension__: Opc = UnaryOperator::Extension; break; |
| 5302 | } |
| 5303 | return Opc; |
| 5304 | } |
| 5305 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5306 | /// CreateBuiltinBinOp - Creates a new built-in binary operation with |
| 5307 | /// operator @p Opc at location @c TokLoc. This routine only supports |
| 5308 | /// built-in operations; ActOnBinOp handles overloaded operators. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5309 | Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc, |
| 5310 | unsigned Op, |
| 5311 | Expr *lhs, Expr *rhs) { |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5312 | QualType ResultTy; // Result type of the binary operator. |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5313 | BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op; |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5314 | // The following two variables are used for compound assignment operators |
| 5315 | QualType CompLHSTy; // Type of LHS after promotions for computation |
| 5316 | QualType CompResultTy; // Type of computation result |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5317 | |
| 5318 | switch (Opc) { |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5319 | case BinaryOperator::Assign: |
| 5320 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType()); |
| 5321 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5322 | case BinaryOperator::PtrMemD: |
| 5323 | case BinaryOperator::PtrMemI: |
| 5324 | ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc, |
| 5325 | Opc == BinaryOperator::PtrMemI); |
| 5326 | break; |
| 5327 | case BinaryOperator::Mul: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5328 | case BinaryOperator::Div: |
| 5329 | ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc); |
| 5330 | break; |
| 5331 | case BinaryOperator::Rem: |
| 5332 | ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc); |
| 5333 | break; |
| 5334 | case BinaryOperator::Add: |
| 5335 | ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc); |
| 5336 | break; |
| 5337 | case BinaryOperator::Sub: |
| 5338 | ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc); |
| 5339 | break; |
Sebastian Redl | 2246050 | 2009-02-07 00:15:38 +0000 | [diff] [blame] | 5340 | case BinaryOperator::Shl: |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5341 | case BinaryOperator::Shr: |
| 5342 | ResultTy = CheckShiftOperands(lhs, rhs, OpLoc); |
| 5343 | break; |
| 5344 | case BinaryOperator::LE: |
| 5345 | case BinaryOperator::LT: |
| 5346 | case BinaryOperator::GE: |
| 5347 | case BinaryOperator::GT: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5348 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5349 | break; |
| 5350 | case BinaryOperator::EQ: |
| 5351 | case BinaryOperator::NE: |
Douglas Gregor | a86b832 | 2009-04-06 18:45:53 +0000 | [diff] [blame] | 5352 | ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5353 | break; |
| 5354 | case BinaryOperator::And: |
| 5355 | case BinaryOperator::Xor: |
| 5356 | case BinaryOperator::Or: |
| 5357 | ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc); |
| 5358 | break; |
| 5359 | case BinaryOperator::LAnd: |
| 5360 | case BinaryOperator::LOr: |
| 5361 | ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc); |
| 5362 | break; |
| 5363 | case BinaryOperator::MulAssign: |
| 5364 | case BinaryOperator::DivAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5365 | CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true); |
| 5366 | CompLHSTy = CompResultTy; |
| 5367 | if (!CompResultTy.isNull()) |
| 5368 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5369 | break; |
| 5370 | case BinaryOperator::RemAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5371 | CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true); |
| 5372 | CompLHSTy = CompResultTy; |
| 5373 | if (!CompResultTy.isNull()) |
| 5374 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5375 | break; |
| 5376 | case BinaryOperator::AddAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5377 | CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5378 | if (!CompResultTy.isNull()) |
| 5379 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5380 | break; |
| 5381 | case BinaryOperator::SubAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5382 | CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy); |
| 5383 | if (!CompResultTy.isNull()) |
| 5384 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5385 | break; |
| 5386 | case BinaryOperator::ShlAssign: |
| 5387 | case BinaryOperator::ShrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5388 | CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true); |
| 5389 | CompLHSTy = CompResultTy; |
| 5390 | if (!CompResultTy.isNull()) |
| 5391 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5392 | break; |
| 5393 | case BinaryOperator::AndAssign: |
| 5394 | case BinaryOperator::XorAssign: |
| 5395 | case BinaryOperator::OrAssign: |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5396 | CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true); |
| 5397 | CompLHSTy = CompResultTy; |
| 5398 | if (!CompResultTy.isNull()) |
| 5399 | ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5400 | break; |
| 5401 | case BinaryOperator::Comma: |
| 5402 | ResultTy = CheckCommaOperands(lhs, rhs, OpLoc); |
| 5403 | break; |
| 5404 | } |
| 5405 | if (ResultTy.isNull()) |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5406 | return ExprError(); |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5407 | if (CompResultTy.isNull()) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5408 | return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc)); |
| 5409 | else |
| 5410 | return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy, |
Eli Friedman | ab3a852 | 2009-03-28 01:22:36 +0000 | [diff] [blame] | 5411 | CompLHSTy, CompResultTy, |
| 5412 | OpLoc)); |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5413 | } |
| 5414 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5415 | /// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps |
| 5416 | /// ParenRange in parentheses. |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5417 | static void SuggestParentheses(Sema &Self, SourceLocation Loc, |
| 5418 | const PartialDiagnostic &PD, |
| 5419 | SourceRange ParenRange) |
| 5420 | { |
| 5421 | SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd()); |
| 5422 | if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) { |
| 5423 | // We can't display the parentheses, so just dig the |
| 5424 | // warning/error and return. |
| 5425 | Self.Diag(Loc, PD); |
| 5426 | return; |
| 5427 | } |
| 5428 | |
| 5429 | Self.Diag(Loc, PD) |
| 5430 | << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(") |
| 5431 | << CodeModificationHint::CreateInsertion(EndLoc, ")"); |
| 5432 | } |
| 5433 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5434 | /// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison |
| 5435 | /// operators are mixed in a way that suggests that the programmer forgot that |
| 5436 | /// comparison operators have higher precedence. The most typical example of |
| 5437 | /// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1". |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5438 | static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5439 | SourceLocation OpLoc,Expr *lhs,Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5440 | typedef BinaryOperator BinOp; |
| 5441 | BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1), |
| 5442 | rhsopc = static_cast<BinOp::Opcode>(-1); |
| 5443 | if (BinOp *BO = dyn_cast<BinOp>(lhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5444 | lhsopc = BO->getOpcode(); |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5445 | if (BinOp *BO = dyn_cast<BinOp>(rhs)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5446 | rhsopc = BO->getOpcode(); |
| 5447 | |
| 5448 | // Subs are not binary operators. |
| 5449 | if (lhsopc == -1 && rhsopc == -1) |
| 5450 | return; |
| 5451 | |
| 5452 | // Bitwise operations are sometimes used as eager logical ops. |
| 5453 | // Don't diagnose this. |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5454 | if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) && |
| 5455 | (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc))) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5456 | return; |
| 5457 | |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5458 | if (BinOp::isComparisonOp(lhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5459 | SuggestParentheses(Self, OpLoc, |
| 5460 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5461 | << SourceRange(lhs->getLocStart(), OpLoc) |
| 5462 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc), |
| 5463 | SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd())); |
| 5464 | else if (BinOp::isComparisonOp(rhsopc)) |
Sebastian Redl | 6b169ac | 2009-10-26 17:01:32 +0000 | [diff] [blame] | 5465 | SuggestParentheses(Self, OpLoc, |
| 5466 | PDiag(diag::warn_precedence_bitwise_rel) |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5467 | << SourceRange(OpLoc, rhs->getLocEnd()) |
| 5468 | << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc), |
| 5469 | SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart())); |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5470 | } |
| 5471 | |
| 5472 | /// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky |
| 5473 | /// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3". |
| 5474 | /// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does. |
| 5475 | static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc, |
| 5476 | SourceLocation OpLoc, Expr *lhs, Expr *rhs){ |
Sebastian Redl | aee3c93 | 2009-10-27 12:10:02 +0000 | [diff] [blame^] | 5477 | if (BinaryOperator::isBitwiseOp(Opc)) |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5478 | DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs); |
| 5479 | } |
| 5480 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5481 | // Binary Operators. 'Tok' is the token for the operator. |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5482 | Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc, |
| 5483 | tok::TokenKind Kind, |
| 5484 | ExprArg LHS, ExprArg RHS) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5485 | BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind); |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 5486 | Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5487 | |
Steve Naroff | f69936d | 2007-09-16 03:34:24 +0000 | [diff] [blame] | 5488 | assert((lhs != 0) && "ActOnBinOp(): missing left expression"); |
| 5489 | assert((rhs != 0) && "ActOnBinOp(): missing right expression"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5490 | |
Sebastian Redl | 9e1d29b | 2009-10-26 15:24:15 +0000 | [diff] [blame] | 5491 | // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0" |
| 5492 | DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs); |
| 5493 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5494 | if (getLangOptions().CPlusPlus && |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5495 | (lhs->getType()->isOverloadableType() || |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5496 | rhs->getType()->isOverloadableType())) { |
| 5497 | // Find all of the overloaded operators visible from this |
| 5498 | // point. We perform both an operator-name lookup from the local |
| 5499 | // scope and an argument-dependent lookup based on the types of |
| 5500 | // the arguments. |
Douglas Gregor | 3fd95ce | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 5501 | FunctionSet Functions; |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5502 | OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc); |
| 5503 | if (OverOp != OO_None) { |
| 5504 | LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(), |
| 5505 | Functions); |
| 5506 | Expr *Args[2] = { lhs, rhs }; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5507 | DeclarationName OpName |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5508 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5509 | ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions); |
Douglas Gregor | eb8f306 | 2008-11-12 17:17:38 +0000 | [diff] [blame] | 5510 | } |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5511 | |
Douglas Gregor | 063daf6 | 2009-03-13 18:40:31 +0000 | [diff] [blame] | 5512 | // Build the (potentially-overloaded, potentially-dependent) |
| 5513 | // binary operation. |
| 5514 | return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs); |
Sebastian Redl | b8a6aca | 2009-01-19 22:31:54 +0000 | [diff] [blame] | 5515 | } |
| 5516 | |
Douglas Gregor | eaebc75 | 2008-11-06 23:29:22 +0000 | [diff] [blame] | 5517 | // Build a built-in binary operation. |
| 5518 | return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5519 | } |
| 5520 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5521 | Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5522 | unsigned OpcIn, |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5523 | ExprArg InputArg) { |
| 5524 | UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn); |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5525 | |
Mike Stump | 390b4cc | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 5526 | // FIXME: Input is modified below, but InputArg is not updated appropriately. |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5527 | Expr *Input = (Expr *)InputArg.get(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5528 | QualType resultType; |
| 5529 | switch (Opc) { |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5530 | case UnaryOperator::OffsetOf: |
| 5531 | assert(false && "Invalid unary operator"); |
| 5532 | break; |
| 5533 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5534 | case UnaryOperator::PreInc: |
| 5535 | case UnaryOperator::PreDec: |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5536 | case UnaryOperator::PostInc: |
| 5537 | case UnaryOperator::PostDec: |
Sebastian Redl | e6d5a4a | 2008-12-20 09:35:34 +0000 | [diff] [blame] | 5538 | resultType = CheckIncrementDecrementOperand(Input, OpLoc, |
Eli Friedman | de99a45 | 2009-07-22 22:25:00 +0000 | [diff] [blame] | 5539 | Opc == UnaryOperator::PreInc || |
| 5540 | Opc == UnaryOperator::PostInc); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5541 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5542 | case UnaryOperator::AddrOf: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5543 | resultType = CheckAddressOfOperand(Input, OpLoc); |
| 5544 | break; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5545 | case UnaryOperator::Deref: |
Steve Naroff | 1ca9b11 | 2007-12-18 04:06:57 +0000 | [diff] [blame] | 5546 | DefaultFunctionArrayConversion(Input); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5547 | resultType = CheckIndirectionOperand(Input, OpLoc); |
| 5548 | break; |
| 5549 | case UnaryOperator::Plus: |
| 5550 | case UnaryOperator::Minus: |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5551 | UsualUnaryConversions(Input); |
| 5552 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5553 | if (resultType->isDependentType()) |
| 5554 | break; |
Douglas Gregor | 7425373 | 2008-11-19 15:42:04 +0000 | [diff] [blame] | 5555 | if (resultType->isArithmeticType()) // C99 6.5.3.3p1 |
| 5556 | break; |
| 5557 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7 |
| 5558 | resultType->isEnumeralType()) |
| 5559 | break; |
| 5560 | else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6 |
| 5561 | Opc == UnaryOperator::Plus && |
| 5562 | resultType->isPointerType()) |
| 5563 | break; |
| 5564 | |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5565 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5566 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5567 | case UnaryOperator::Not: // bitwise complement |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5568 | UsualUnaryConversions(Input); |
| 5569 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5570 | if (resultType->isDependentType()) |
| 5571 | break; |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5572 | // C99 6.5.3.3p1. We allow complex int and float as a GCC extension. |
| 5573 | if (resultType->isComplexType() || resultType->isComplexIntegerType()) |
| 5574 | // C99 does not support '~' for complex conjugation. |
Chris Lattner | d3a94e2 | 2008-11-20 06:06:08 +0000 | [diff] [blame] | 5575 | Diag(OpLoc, diag::ext_integer_complement_complex) |
Chris Lattner | d162584 | 2008-11-24 06:25:27 +0000 | [diff] [blame] | 5576 | << resultType << Input->getSourceRange(); |
Chris Lattner | 02a6514 | 2008-07-25 23:52:49 +0000 | [diff] [blame] | 5577 | else if (!resultType->isIntegerType()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5578 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5579 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5580 | break; |
| 5581 | case UnaryOperator::LNot: // logical negation |
| 5582 | // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5). |
Steve Naroff | c80b4ee | 2007-07-16 21:54:35 +0000 | [diff] [blame] | 5583 | DefaultFunctionArrayConversion(Input); |
| 5584 | resultType = Input->getType(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5585 | if (resultType->isDependentType()) |
| 5586 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5587 | if (!resultType->isScalarType()) // C99 6.5.3.3p1 |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5588 | return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr) |
| 5589 | << resultType << Input->getSourceRange()); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5590 | // LNot always has type int. C99 6.5.3.3p5. |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5591 | // In C++, it's bool. C++ 5.3.1p8 |
| 5592 | resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5593 | break; |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5594 | case UnaryOperator::Real: |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5595 | case UnaryOperator::Imag: |
Chris Lattner | ba27e2a | 2009-02-17 08:12:06 +0000 | [diff] [blame] | 5596 | resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real); |
Chris Lattner | dbb3697 | 2007-08-24 21:16:53 +0000 | [diff] [blame] | 5597 | break; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5598 | case UnaryOperator::Extension: |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5599 | resultType = Input->getType(); |
| 5600 | break; |
| 5601 | } |
| 5602 | if (resultType.isNull()) |
Sebastian Redl | 0eb2330 | 2009-01-19 00:08:26 +0000 | [diff] [blame] | 5603 | return ExprError(); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5604 | |
| 5605 | InputArg.release(); |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5606 | return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc)); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5607 | } |
| 5608 | |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5609 | // Unary Operators. 'Tok' is the token for the operator. |
| 5610 | Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc, |
| 5611 | tok::TokenKind Op, ExprArg input) { |
| 5612 | Expr *Input = (Expr*)input.get(); |
| 5613 | UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op); |
| 5614 | |
| 5615 | if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) { |
| 5616 | // Find all of the overloaded operators visible from this |
| 5617 | // point. We perform both an operator-name lookup from the local |
| 5618 | // scope and an argument-dependent lookup based on the types of |
| 5619 | // the arguments. |
| 5620 | FunctionSet Functions; |
| 5621 | OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc); |
| 5622 | if (OverOp != OO_None) { |
| 5623 | LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(), |
| 5624 | Functions); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5625 | DeclarationName OpName |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5626 | = Context.DeclarationNames.getCXXOperatorName(OverOp); |
Sebastian Redl | 644be85 | 2009-10-23 19:23:15 +0000 | [diff] [blame] | 5627 | ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions); |
Douglas Gregor | bc736fc | 2009-03-13 23:49:33 +0000 | [diff] [blame] | 5628 | } |
| 5629 | |
| 5630 | return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input)); |
| 5631 | } |
| 5632 | |
| 5633 | return CreateBuiltinUnaryOp(OpLoc, Opc, move(input)); |
| 5634 | } |
| 5635 | |
Steve Naroff | 1b273c4 | 2007-09-16 14:56:35 +0000 | [diff] [blame] | 5636 | /// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo". |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5637 | Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, |
| 5638 | SourceLocation LabLoc, |
| 5639 | IdentifierInfo *LabelII) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5640 | // Look up the record for this label identifier. |
Chris Lattner | ea29a3a | 2009-04-18 20:01:55 +0000 | [diff] [blame] | 5641 | LabelStmt *&LabelDecl = getLabelMap()[LabelII]; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5642 | |
Daniel Dunbar | 0ffb125 | 2008-08-04 16:51:22 +0000 | [diff] [blame] | 5643 | // If we haven't seen this label yet, create a forward reference. It |
| 5644 | // will be validated and/or cleaned up in ActOnFinishFunctionBody. |
Steve Naroff | caaacec | 2009-03-13 15:38:40 +0000 | [diff] [blame] | 5645 | if (LabelDecl == 0) |
Steve Naroff | 6ece14c | 2009-01-21 00:14:39 +0000 | [diff] [blame] | 5646 | LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5647 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5648 | // 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] | 5649 | return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl, |
| 5650 | Context.getPointerType(Context.VoidTy))); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 5651 | } |
| 5652 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5653 | Sema::OwningExprResult |
| 5654 | Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt, |
| 5655 | SourceLocation RPLoc) { // "({..})" |
| 5656 | Stmt *SubStmt = static_cast<Stmt*>(substmt.get()); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5657 | assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!"); |
| 5658 | CompoundStmt *Compound = cast<CompoundStmt>(SubStmt); |
| 5659 | |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5660 | bool isFileScope = getCurFunctionOrMethodDecl() == 0; |
Chris Lattner | 4a049f0 | 2009-04-25 19:11:05 +0000 | [diff] [blame] | 5661 | if (isFileScope) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5662 | return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope)); |
Eli Friedman | dca2b73 | 2009-01-24 23:09:00 +0000 | [diff] [blame] | 5663 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5664 | // FIXME: there are a variety of strange constraints to enforce here, for |
| 5665 | // example, it is not possible to goto into a stmt expression apparently. |
| 5666 | // More semantic analysis is needed. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5667 | |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5668 | // If there are sub stmts in the compound stmt, take the type of the last one |
| 5669 | // as the type of the stmtexpr. |
| 5670 | QualType Ty = Context.VoidTy; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5671 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5672 | if (!Compound->body_empty()) { |
| 5673 | Stmt *LastStmt = Compound->body_back(); |
| 5674 | // If LastStmt is a label, skip down through into the body. |
| 5675 | while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) |
| 5676 | LastStmt = Label->getSubStmt(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5677 | |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5678 | if (Expr *LastExpr = dyn_cast<Expr>(LastStmt)) |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5679 | Ty = LastExpr->getType(); |
Chris Lattner | 611b2ec | 2008-07-26 19:51:01 +0000 | [diff] [blame] | 5680 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5681 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5682 | // FIXME: Check that expression type is complete/non-abstract; statement |
| 5683 | // expressions are not lvalues. |
| 5684 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5685 | substmt.release(); |
| 5686 | return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc)); |
Chris Lattner | ab18c4c | 2007-07-24 16:58:17 +0000 | [diff] [blame] | 5687 | } |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5688 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5689 | Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S, |
| 5690 | SourceLocation BuiltinLoc, |
| 5691 | SourceLocation TypeLoc, |
| 5692 | TypeTy *argty, |
| 5693 | OffsetOfComponent *CompPtr, |
| 5694 | unsigned NumComponents, |
| 5695 | SourceLocation RPLoc) { |
| 5696 | // FIXME: This function leaks all expressions in the offset components on |
| 5697 | // error. |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5698 | // FIXME: Preserve type source info. |
| 5699 | QualType ArgTy = GetTypeFromParser(argty); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5700 | assert(!ArgTy.isNull() && "Missing type argument!"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5701 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5702 | bool Dependent = ArgTy->isDependentType(); |
| 5703 | |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5704 | // We must have at least one component that refers to the type, and the first |
| 5705 | // one is known to be a field designator. Verify that the ArgTy represents |
| 5706 | // a struct/union/class. |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5707 | if (!Dependent && !ArgTy->isRecordType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5708 | return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5709 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 5710 | // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable |
| 5711 | // with an incomplete type would be illegal. |
Douglas Gregor | 4fdf1fa | 2009-03-11 16:48:53 +0000 | [diff] [blame] | 5712 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5713 | // Otherwise, create a null pointer as the base, and iteratively process |
| 5714 | // the offsetof designators. |
| 5715 | QualType ArgTyPtr = Context.getPointerType(ArgTy); |
| 5716 | Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5717 | Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref, |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5718 | ArgTy, SourceLocation()); |
Eli Friedman | 1d24259 | 2009-01-26 01:33:06 +0000 | [diff] [blame] | 5719 | |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5720 | // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a |
| 5721 | // GCC extension, diagnose them. |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5722 | // FIXME: This diagnostic isn't actually visible because the location is in |
| 5723 | // a system header! |
Chris Lattner | 9e2b75c | 2007-08-31 21:49:13 +0000 | [diff] [blame] | 5724 | if (NumComponents != 1) |
Chris Lattner | dcd5ef1 | 2008-11-19 05:27:50 +0000 | [diff] [blame] | 5725 | Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator) |
| 5726 | << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5727 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5728 | if (!Dependent) { |
Eli Friedman | c0d600c | 2009-05-03 21:22:18 +0000 | [diff] [blame] | 5729 | bool DidWarnAboutNonPOD = false; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5730 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5731 | // FIXME: Dependent case loses a lot of information here. And probably |
| 5732 | // leaks like a sieve. |
| 5733 | for (unsigned i = 0; i != NumComponents; ++i) { |
| 5734 | const OffsetOfComponent &OC = CompPtr[i]; |
| 5735 | if (OC.isBrackets) { |
| 5736 | // Offset of an array sub-field. TODO: Should we allow vector elements? |
| 5737 | const ArrayType *AT = Context.getAsArrayType(Res->getType()); |
| 5738 | if (!AT) { |
| 5739 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5740 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type) |
| 5741 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5742 | } |
| 5743 | |
| 5744 | // FIXME: C++: Verify that operator[] isn't overloaded. |
| 5745 | |
Eli Friedman | 35183ac | 2009-02-27 06:44:11 +0000 | [diff] [blame] | 5746 | // Promote the array so it looks more like a normal array subscript |
| 5747 | // expression. |
| 5748 | DefaultFunctionArrayConversion(Res); |
| 5749 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5750 | // C99 6.5.2.1p1 |
| 5751 | Expr *Idx = static_cast<Expr*>(OC.U.E); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5752 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5753 | if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType()) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5754 | return ExprError(Diag(Idx->getLocStart(), |
Chris Lattner | 338395d | 2009-04-25 22:50:55 +0000 | [diff] [blame] | 5755 | diag::err_typecheck_subscript_not_integer) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5756 | << Idx->getSourceRange()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5757 | |
| 5758 | Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(), |
| 5759 | OC.LocEnd); |
| 5760 | continue; |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5761 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5762 | |
Ted Kremenek | 6217b80 | 2009-07-29 21:53:49 +0000 | [diff] [blame] | 5763 | const RecordType *RC = Res->getType()->getAs<RecordType>(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5764 | if (!RC) { |
| 5765 | Res->Destroy(Context); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5766 | return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type) |
| 5767 | << Res->getType()); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5768 | } |
Chris Lattner | 704fe35 | 2007-08-30 17:59:59 +0000 | [diff] [blame] | 5769 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5770 | // Get the decl corresponding to this. |
| 5771 | RecordDecl *RD = RC->getDecl(); |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5772 | if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) { |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5773 | if (!CRD->isPOD() && !DidWarnAboutNonPOD) { |
Anders Carlsson | f9b8bc6 | 2009-05-02 17:45:47 +0000 | [diff] [blame] | 5774 | ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type) |
| 5775 | << SourceRange(CompPtr[0].LocStart, OC.LocEnd) |
| 5776 | << Res->getType()); |
Anders Carlsson | 5992e4a | 2009-05-02 18:36:10 +0000 | [diff] [blame] | 5777 | DidWarnAboutNonPOD = true; |
| 5778 | } |
Anders Carlsson | 6d7f149 | 2009-05-01 23:20:30 +0000 | [diff] [blame] | 5779 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5780 | |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5781 | LookupResult R; |
| 5782 | LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName); |
| 5783 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5784 | FieldDecl *MemberDecl |
John McCall | f36e02d | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 5785 | = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context)); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5786 | // FIXME: Leaks Res |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5787 | if (!MemberDecl) |
Douglas Gregor | 3f09327 | 2009-10-13 21:16:44 +0000 | [diff] [blame] | 5788 | return ExprError(Diag(BuiltinLoc, diag::err_no_member) |
| 5789 | << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd)); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5790 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5791 | // FIXME: C++: Verify that MemberDecl isn't a static field. |
| 5792 | // FIXME: Verify that MemberDecl isn't a bitfield. |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5793 | if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) { |
Anders Carlsson | f1b1d59 | 2009-05-01 19:30:39 +0000 | [diff] [blame] | 5794 | Res = BuildAnonymousStructUnionMemberReference( |
| 5795 | SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>(); |
Eli Friedman | e935696 | 2009-04-26 20:50:44 +0000 | [diff] [blame] | 5796 | } else { |
| 5797 | // MemberDecl->getType() doesn't get the right qualifiers, but it |
| 5798 | // doesn't matter here. |
| 5799 | Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd, |
| 5800 | MemberDecl->getType().getNonReferenceType()); |
| 5801 | } |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5802 | } |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5803 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5804 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5805 | return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf, |
| 5806 | Context.getSizeType(), BuiltinLoc)); |
Chris Lattner | 73d0d4f | 2007-08-30 17:45:32 +0000 | [diff] [blame] | 5807 | } |
| 5808 | |
| 5809 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5810 | Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc, |
| 5811 | TypeTy *arg1,TypeTy *arg2, |
| 5812 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 5813 | // FIXME: Preserve type source info. |
| 5814 | QualType argT1 = GetTypeFromParser(arg1); |
| 5815 | QualType argT2 = GetTypeFromParser(arg2); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5816 | |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5817 | assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)"); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5818 | |
Douglas Gregor | c12a9c5 | 2009-05-19 22:28:02 +0000 | [diff] [blame] | 5819 | if (getLangOptions().CPlusPlus) { |
| 5820 | Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus) |
| 5821 | << SourceRange(BuiltinLoc, RPLoc); |
| 5822 | return ExprError(); |
| 5823 | } |
| 5824 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5825 | return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc, |
| 5826 | argT1, argT2, RPLoc)); |
Steve Naroff | d34e915 | 2007-08-01 22:05:33 +0000 | [diff] [blame] | 5827 | } |
| 5828 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5829 | Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc, |
| 5830 | ExprArg cond, |
| 5831 | ExprArg expr1, ExprArg expr2, |
| 5832 | SourceLocation RPLoc) { |
| 5833 | Expr *CondExpr = static_cast<Expr*>(cond.get()); |
| 5834 | Expr *LHSExpr = static_cast<Expr*>(expr1.get()); |
| 5835 | Expr *RHSExpr = static_cast<Expr*>(expr2.get()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5836 | |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5837 | assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)"); |
| 5838 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5839 | QualType resType; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5840 | bool ValueDependent = false; |
Douglas Gregor | c9ecc57 | 2009-05-19 22:43:30 +0000 | [diff] [blame] | 5841 | if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) { |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5842 | resType = Context.DependentTy; |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5843 | ValueDependent = true; |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5844 | } else { |
| 5845 | // The conditional expression is required to be a constant expression. |
| 5846 | llvm::APSInt condEval(32); |
| 5847 | SourceLocation ExpLoc; |
| 5848 | if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc)) |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5849 | return ExprError(Diag(ExpLoc, |
| 5850 | diag::err_typecheck_choose_expr_requires_constant) |
| 5851 | << CondExpr->getSourceRange()); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5852 | |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5853 | // If the condition is > zero, then the AST type is the same as the LSHExpr. |
| 5854 | resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType(); |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5855 | ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent() |
| 5856 | : RHSExpr->isValueDependent(); |
Sebastian Redl | 2850784 | 2009-02-26 14:39:58 +0000 | [diff] [blame] | 5857 | } |
| 5858 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5859 | cond.release(); expr1.release(); expr2.release(); |
| 5860 | return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, |
Douglas Gregor | ce94049 | 2009-09-25 04:25:58 +0000 | [diff] [blame] | 5861 | resType, RPLoc, |
| 5862 | resType->isDependentType(), |
| 5863 | ValueDependent)); |
Steve Naroff | d04fdd5 | 2007-08-03 21:21:27 +0000 | [diff] [blame] | 5864 | } |
| 5865 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5866 | //===----------------------------------------------------------------------===// |
| 5867 | // Clang Extensions. |
| 5868 | //===----------------------------------------------------------------------===// |
| 5869 | |
| 5870 | /// ActOnBlockStart - This callback is invoked when a block literal is started. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5871 | void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5872 | // Analyze block parameters. |
| 5873 | BlockSemaInfo *BSI = new BlockSemaInfo(); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5874 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5875 | // Add BSI to CurBlock. |
| 5876 | BSI->PrevBlockInfo = CurBlock; |
| 5877 | CurBlock = BSI; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5878 | |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5879 | BSI->ReturnType = QualType(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5880 | BSI->TheScope = BlockScope; |
Mike Stump | b83d287 | 2009-02-19 22:01:56 +0000 | [diff] [blame] | 5881 | BSI->hasBlockDeclRefExprs = false; |
Daniel Dunbar | 1d2154c | 2009-07-29 01:59:17 +0000 | [diff] [blame] | 5882 | BSI->hasPrototype = false; |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5883 | BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking; |
| 5884 | CurFunctionNeedsScopeChecking = false; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5885 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5886 | BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 5887 | PushDeclContext(BlockScope, BSI->TheDecl); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5888 | } |
| 5889 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5890 | void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) { |
Mike Stump | af199f3 | 2009-05-07 18:43:07 +0000 | [diff] [blame] | 5891 | assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!"); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5892 | |
| 5893 | if (ParamInfo.getNumTypeObjects() == 0 |
| 5894 | || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) { |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5895 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5896 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
| 5897 | |
Mike Stump | 4eeab84 | 2009-04-28 01:10:27 +0000 | [diff] [blame] | 5898 | if (T->isArrayType()) { |
| 5899 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5900 | diag::err_block_returns_array); |
| 5901 | return; |
| 5902 | } |
| 5903 | |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5904 | // The parameter list is optional, if there was none, assume (). |
| 5905 | if (!T->isFunctionType()) |
| 5906 | T = Context.getFunctionType(T, NULL, 0, 0, 0); |
| 5907 | |
| 5908 | CurBlock->hasPrototype = true; |
| 5909 | CurBlock->isVariadic = false; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5910 | // Check for a valid sentinel attribute on this block. |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5911 | if (CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5912 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5913 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5914 | // FIXME: remove the attribute. |
| 5915 | } |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5916 | QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5917 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5918 | // Do not allow returning a objc interface by-value. |
| 5919 | if (RetTy->isObjCInterfaceType()) { |
| 5920 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5921 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5922 | return; |
| 5923 | } |
Mike Stump | 98eb8a7 | 2009-02-04 22:31:32 +0000 | [diff] [blame] | 5924 | return; |
| 5925 | } |
| 5926 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5927 | // Analyze arguments to block. |
| 5928 | assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function && |
| 5929 | "Not a function declarator!"); |
| 5930 | DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5931 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5932 | CurBlock->hasPrototype = FTI.hasPrototype; |
| 5933 | CurBlock->isVariadic = true; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5934 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5935 | // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes |
| 5936 | // no arguments, not a function that takes a single void argument. |
| 5937 | if (FTI.hasPrototype && |
| 5938 | FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 && |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5939 | (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&& |
| 5940 | FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) { |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5941 | // empty arg list, don't push any params. |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5942 | CurBlock->isVariadic = false; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5943 | } else if (FTI.hasPrototype) { |
| 5944 | for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i) |
Chris Lattner | b28317a | 2009-03-28 19:18:32 +0000 | [diff] [blame] | 5945 | CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>()); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5946 | CurBlock->isVariadic = FTI.isVariadic; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5947 | } |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 5948 | CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(), |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5949 | CurBlock->Params.size()); |
Fariborz Jahanian | d66f22d | 2009-05-19 17:08:59 +0000 | [diff] [blame] | 5950 | CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic); |
Douglas Gregor | 9cdda0c | 2009-06-17 21:51:59 +0000 | [diff] [blame] | 5951 | ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 5952 | for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(), |
| 5953 | E = CurBlock->TheDecl->param_end(); AI != E; ++AI) |
| 5954 | // If this has an identifier, add it to the scope stack. |
| 5955 | if ((*AI)->getIdentifier()) |
| 5956 | PushOnScopeChains(*AI, CurBlock->TheScope); |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5957 | |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5958 | // Check for a valid sentinel attribute on this block. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5959 | if (!CurBlock->isVariadic && |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 5960 | CurBlock->TheDecl->getAttr<SentinelAttr>()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5961 | Diag(ParamInfo.getAttributes()->getLoc(), |
Fariborz Jahanian | 3bba33d | 2009-05-15 21:18:04 +0000 | [diff] [blame] | 5962 | diag::warn_attribute_sentinel_not_variadic) << 1; |
Fariborz Jahanian | 2f7c392 | 2009-05-14 20:53:39 +0000 | [diff] [blame] | 5963 | // FIXME: remove the attribute. |
| 5964 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5965 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5966 | // Analyze the return type. |
| 5967 | QualType T = GetTypeForDeclarator(ParamInfo, CurScope); |
John McCall | 183700f | 2009-09-21 23:43:11 +0000 | [diff] [blame] | 5968 | QualType RetTy = T->getAs<FunctionType>()->getResultType(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5969 | |
Chris Lattner | 9097af1 | 2009-04-11 19:27:54 +0000 | [diff] [blame] | 5970 | // Do not allow returning a objc interface by-value. |
| 5971 | if (RetTy->isObjCInterfaceType()) { |
| 5972 | Diag(ParamInfo.getSourceRange().getBegin(), |
| 5973 | diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy; |
| 5974 | } else if (!RetTy->isDependentType()) |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 5975 | CurBlock->ReturnType = RetTy; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5976 | } |
| 5977 | |
| 5978 | /// ActOnBlockError - If there is an error parsing a block, this callback |
| 5979 | /// is invoked to pop the information about the block from the action impl. |
| 5980 | void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) { |
| 5981 | // Ensure that CurBlock is deleted. |
| 5982 | llvm::OwningPtr<BlockSemaInfo> CC(CurBlock); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 5983 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 5984 | CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking; |
| 5985 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5986 | // Pop off CurBlock, handle nested blocks. |
Chris Lattner | 5c59e2b | 2009-04-21 22:38:46 +0000 | [diff] [blame] | 5987 | PopDeclContext(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5988 | CurBlock = CurBlock->PrevBlockInfo; |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5989 | // FIXME: Delete the ParmVarDecl objects as well??? |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 5990 | } |
| 5991 | |
| 5992 | /// ActOnBlockStmtExpr - This is called when the body of a block statement |
| 5993 | /// literal was successfully completed. ^(int x){...} |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 5994 | Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc, |
| 5995 | StmtArg body, Scope *CurScope) { |
Chris Lattner | 9af5500 | 2009-03-27 04:18:06 +0000 | [diff] [blame] | 5996 | // If blocks are disabled, emit an error. |
| 5997 | if (!LangOpts.Blocks) |
| 5998 | Diag(CaretLoc, diag::err_blocks_disable); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 5999 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6000 | // Ensure that CurBlock is deleted. |
| 6001 | llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6002 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 6003 | PopDeclContext(); |
| 6004 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6005 | // Pop off CurBlock, handle nested blocks. |
| 6006 | CurBlock = CurBlock->PrevBlockInfo; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6007 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6008 | QualType RetTy = Context.VoidTy; |
Fariborz Jahanian | 7d5c74e | 2009-06-19 23:37:08 +0000 | [diff] [blame] | 6009 | if (!BSI->ReturnType.isNull()) |
| 6010 | RetTy = BSI->ReturnType; |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6011 | |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6012 | llvm::SmallVector<QualType, 8> ArgTypes; |
| 6013 | for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i) |
| 6014 | ArgTypes.push_back(BSI->Params[i]->getType()); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6015 | |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6016 | bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>(); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6017 | QualType BlockTy; |
| 6018 | if (!BSI->hasPrototype) |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6019 | BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0, |
| 6020 | NoReturn); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6021 | else |
Jay Foad | beaaccd | 2009-05-21 09:52:38 +0000 | [diff] [blame] | 6022 | BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(), |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6023 | BSI->isVariadic, 0, false, false, 0, 0, |
| 6024 | NoReturn); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6025 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6026 | // FIXME: Check that return/parameter types are complete/non-abstract |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6027 | DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end()); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6028 | BlockTy = Context.getBlockPointerType(BlockTy); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6029 | |
Chris Lattner | 17a7830 | 2009-04-19 05:28:12 +0000 | [diff] [blame] | 6030 | // If needed, diagnose invalid gotos and switches in the block. |
| 6031 | if (CurFunctionNeedsScopeChecking) |
| 6032 | DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get())); |
| 6033 | CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6034 | |
Anders Carlsson | e9146f2 | 2009-05-01 19:49:17 +0000 | [diff] [blame] | 6035 | BSI->TheDecl->setBody(body.takeAs<CompoundStmt>()); |
Mike Stump | 5692586 | 2009-07-28 22:04:01 +0000 | [diff] [blame] | 6036 | CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody()); |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6037 | return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy, |
| 6038 | BSI->hasBlockDeclRefExprs)); |
Steve Naroff | 4eb206b | 2008-09-03 18:15:37 +0000 | [diff] [blame] | 6039 | } |
| 6040 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6041 | Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc, |
| 6042 | ExprArg expr, TypeTy *type, |
| 6043 | SourceLocation RPLoc) { |
Argyrios Kyrtzidis | e866190 | 2009-08-19 01:28:28 +0000 | [diff] [blame] | 6044 | QualType T = GetTypeFromParser(type); |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6045 | Expr *E = static_cast<Expr*>(expr.get()); |
| 6046 | Expr *OrigExpr = E; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6047 | |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6048 | InitBuiltinVaListType(); |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6049 | |
| 6050 | // Get the va_list type |
| 6051 | QualType VaListType = Context.getBuiltinVaListType(); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6052 | if (VaListType->isArrayType()) { |
| 6053 | // Deal with implicit array decay; for example, on x86-64, |
| 6054 | // va_list is an array, but it's supposed to decay to |
| 6055 | // a pointer for va_arg. |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6056 | VaListType = Context.getArrayDecayedType(VaListType); |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6057 | // Make sure the input expression also decays appropriately. |
| 6058 | UsualUnaryConversions(E); |
| 6059 | } else { |
| 6060 | // Otherwise, the va_list argument must be an l-value because |
| 6061 | // it is modified by va_arg. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6062 | if (!E->isTypeDependent() && |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6063 | CheckForModifiableLvalue(E, BuiltinLoc, *this)) |
Eli Friedman | 5c091ba | 2009-05-16 12:46:54 +0000 | [diff] [blame] | 6064 | return ExprError(); |
| 6065 | } |
Eli Friedman | c34bcde | 2008-08-09 23:32:40 +0000 | [diff] [blame] | 6066 | |
Douglas Gregor | dd02730 | 2009-05-19 23:10:31 +0000 | [diff] [blame] | 6067 | if (!E->isTypeDependent() && |
| 6068 | !Context.hasSameType(VaListType, E->getType())) { |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6069 | return ExprError(Diag(E->getLocStart(), |
| 6070 | diag::err_first_argument_to_va_arg_not_of_type_va_list) |
Chris Lattner | 0d20b8a | 2009-04-05 15:49:53 +0000 | [diff] [blame] | 6071 | << OrigExpr->getType() << E->getSourceRange()); |
Chris Lattner | 9dc8f19 | 2009-04-05 00:59:53 +0000 | [diff] [blame] | 6072 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6073 | |
Eli Friedman | b1d796d | 2009-03-23 00:24:07 +0000 | [diff] [blame] | 6074 | // FIXME: Check that type is complete/non-abstract |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6075 | // FIXME: Warn if a non-POD type is passed in. |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6076 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6077 | expr.release(); |
| 6078 | return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(), |
| 6079 | RPLoc)); |
Anders Carlsson | 7c50aca | 2007-10-15 20:28:48 +0000 | [diff] [blame] | 6080 | } |
| 6081 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6082 | Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) { |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6083 | // The type of __null will be int or long, depending on the size of |
| 6084 | // pointers on the target. |
| 6085 | QualType Ty; |
| 6086 | if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth()) |
| 6087 | Ty = Context.IntTy; |
| 6088 | else |
| 6089 | Ty = Context.LongTy; |
| 6090 | |
Sebastian Redl | f53597f | 2009-03-15 17:47:39 +0000 | [diff] [blame] | 6091 | return Owned(new (Context) GNUNullExpr(Ty, TokenLoc)); |
Douglas Gregor | 2d8b273 | 2008-11-29 04:51:27 +0000 | [diff] [blame] | 6092 | } |
| 6093 | |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6094 | bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy, |
| 6095 | SourceLocation Loc, |
| 6096 | QualType DstType, QualType SrcType, |
| 6097 | Expr *SrcExpr, const char *Flavor) { |
| 6098 | // Decode the result (notice that AST's are still created for extensions). |
| 6099 | bool isInvalid = false; |
| 6100 | unsigned DiagKind; |
| 6101 | switch (ConvTy) { |
| 6102 | default: assert(0 && "Unknown conversion type"); |
| 6103 | case Compatible: return false; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6104 | case PointerToInt: |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6105 | DiagKind = diag::ext_typecheck_convert_pointer_int; |
| 6106 | break; |
Chris Lattner | b7b6115 | 2008-01-04 18:22:42 +0000 | [diff] [blame] | 6107 | case IntToPointer: |
| 6108 | DiagKind = diag::ext_typecheck_convert_int_pointer; |
| 6109 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6110 | case IncompatiblePointer: |
| 6111 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer; |
| 6112 | break; |
Eli Friedman | f05c05d | 2009-03-22 23:59:44 +0000 | [diff] [blame] | 6113 | case IncompatiblePointerSign: |
| 6114 | DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign; |
| 6115 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6116 | case FunctionVoidPointer: |
| 6117 | DiagKind = diag::ext_typecheck_convert_pointer_void_func; |
| 6118 | break; |
| 6119 | case CompatiblePointerDiscardsQualifiers: |
Douglas Gregor | 77a5223 | 2008-09-12 00:47:35 +0000 | [diff] [blame] | 6120 | // If the qualifiers lost were because we were applying the |
| 6121 | // (deprecated) C++ conversion from a string literal to a char* |
| 6122 | // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME: |
| 6123 | // Ideally, this check would be performed in |
| 6124 | // CheckPointerTypesForAssignment. However, that would require a |
| 6125 | // bit of refactoring (so that the second argument is an |
| 6126 | // expression, rather than a type), which should be done as part |
| 6127 | // of a larger effort to fix CheckPointerTypesForAssignment for |
| 6128 | // C++ semantics. |
| 6129 | if (getLangOptions().CPlusPlus && |
| 6130 | IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType)) |
| 6131 | return false; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6132 | DiagKind = diag::ext_typecheck_convert_discards_qualifiers; |
| 6133 | break; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6134 | case IntToBlockPointer: |
| 6135 | DiagKind = diag::err_int_to_block_pointer; |
| 6136 | break; |
| 6137 | case IncompatibleBlockPointer: |
Mike Stump | 25efa10 | 2009-04-21 22:51:42 +0000 | [diff] [blame] | 6138 | DiagKind = diag::err_typecheck_convert_incompatible_block_pointer; |
Steve Naroff | 1c7d067 | 2008-09-04 15:10:53 +0000 | [diff] [blame] | 6139 | break; |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6140 | case IncompatibleObjCQualifiedId: |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6141 | // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since |
Steve Naroff | 3957907 | 2008-10-14 22:18:38 +0000 | [diff] [blame] | 6142 | // it can give a more specific diagnostic. |
| 6143 | DiagKind = diag::warn_incompatible_qualified_id; |
| 6144 | break; |
Anders Carlsson | b0f90cc | 2009-01-30 23:17:46 +0000 | [diff] [blame] | 6145 | case IncompatibleVectors: |
| 6146 | DiagKind = diag::warn_incompatible_vectors; |
| 6147 | break; |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6148 | case Incompatible: |
| 6149 | DiagKind = diag::err_typecheck_convert_incompatible; |
| 6150 | isInvalid = true; |
| 6151 | break; |
| 6152 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6153 | |
Chris Lattner | d9d22dd | 2008-11-24 05:29:24 +0000 | [diff] [blame] | 6154 | Diag(Loc, DiagKind) << DstType << SrcType << Flavor |
| 6155 | << SrcExpr->getSourceRange(); |
Chris Lattner | 5cf216b | 2008-01-04 18:04:52 +0000 | [diff] [blame] | 6156 | return isInvalid; |
| 6157 | } |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6158 | |
Chris Lattner | 3bf6893 | 2009-04-25 21:59:05 +0000 | [diff] [blame] | 6159 | bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){ |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6160 | llvm::APSInt ICEResult; |
| 6161 | if (E->isIntegerConstantExpr(ICEResult, Context)) { |
| 6162 | if (Result) |
| 6163 | *Result = ICEResult; |
| 6164 | return false; |
| 6165 | } |
| 6166 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6167 | Expr::EvalResult EvalResult; |
| 6168 | |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6169 | if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() || |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6170 | EvalResult.HasSideEffects) { |
| 6171 | Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange(); |
| 6172 | |
| 6173 | if (EvalResult.Diag) { |
| 6174 | // We only show the note if it's not the usual "invalid subexpression" |
| 6175 | // or if it's actually in a subexpression. |
| 6176 | if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice || |
| 6177 | E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens()) |
| 6178 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
| 6179 | } |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6180 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6181 | return true; |
| 6182 | } |
| 6183 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6184 | Diag(E->getExprLoc(), diag::ext_expr_not_ice) << |
| 6185 | E->getSourceRange(); |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6186 | |
Eli Friedman | 3b5ccca | 2009-04-25 22:26:58 +0000 | [diff] [blame] | 6187 | if (EvalResult.Diag && |
| 6188 | Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored) |
| 6189 | Diag(EvalResult.DiagLoc, EvalResult.Diag); |
Mike Stump | eed9cac | 2009-02-19 03:04:26 +0000 | [diff] [blame] | 6190 | |
Anders Carlsson | e21555e | 2008-11-30 19:50:32 +0000 | [diff] [blame] | 6191 | if (Result) |
| 6192 | *Result = EvalResult.Val.getInt(); |
| 6193 | return false; |
| 6194 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6195 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6196 | Sema::ExpressionEvaluationContext |
| 6197 | Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) { |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6198 | // Introduce a new set of potentially referenced declarations to the stack. |
| 6199 | if (NewContext == PotentiallyPotentiallyEvaluated) |
| 6200 | PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6201 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6202 | std::swap(ExprEvalContext, NewContext); |
| 6203 | return NewContext; |
| 6204 | } |
| 6205 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6206 | void |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6207 | Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext, |
| 6208 | ExpressionEvaluationContext NewContext) { |
| 6209 | ExprEvalContext = NewContext; |
| 6210 | |
| 6211 | if (OldContext == PotentiallyPotentiallyEvaluated) { |
| 6212 | // Mark any remaining declarations in the current position of the stack |
| 6213 | // as "referenced". If they were not meant to be referenced, semantic |
| 6214 | // analysis would have eliminated them (e.g., in ActOnCXXTypeId). |
| 6215 | PotentiallyReferencedDecls RemainingDecls; |
| 6216 | RemainingDecls.swap(PotentiallyReferencedDeclStack.back()); |
| 6217 | PotentiallyReferencedDeclStack.pop_back(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6218 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6219 | for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(), |
| 6220 | IEnd = RemainingDecls.end(); |
| 6221 | I != IEnd; ++I) |
| 6222 | MarkDeclarationReferenced(I->first, I->second); |
| 6223 | } |
| 6224 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6225 | |
| 6226 | /// \brief Note that the given declaration was referenced in the source code. |
| 6227 | /// |
| 6228 | /// This routine should be invoke whenever a given declaration is referenced |
| 6229 | /// in the source code, and where that reference occurred. If this declaration |
| 6230 | /// reference means that the the declaration is used (C++ [basic.def.odr]p2, |
| 6231 | /// C99 6.9p3), then the declaration will be marked as used. |
| 6232 | /// |
| 6233 | /// \param Loc the location where the declaration was referenced. |
| 6234 | /// |
| 6235 | /// \param D the declaration that has been referenced by the source code. |
| 6236 | void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) { |
| 6237 | assert(D && "No declaration?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6238 | |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6239 | if (D->isUsed()) |
| 6240 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6241 | |
Douglas Gregor | b5352cf | 2009-10-08 21:35:42 +0000 | [diff] [blame] | 6242 | // Mark a parameter or variable declaration "used", regardless of whether we're in a |
| 6243 | // template or not. The reason for this is that unevaluated expressions |
| 6244 | // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and |
| 6245 | // -Wunused-parameters) |
| 6246 | if (isa<ParmVarDecl>(D) || |
| 6247 | (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6248 | D->setUsed(true); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6249 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6250 | // Do not mark anything as "used" within a dependent context; wait for |
| 6251 | // an instantiation. |
| 6252 | if (CurContext->isDependentContext()) |
| 6253 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6254 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6255 | switch (ExprEvalContext) { |
| 6256 | case Unevaluated: |
| 6257 | // We are in an expression that is not potentially evaluated; do nothing. |
| 6258 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6259 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6260 | case PotentiallyEvaluated: |
| 6261 | // We are in a potentially-evaluated expression, so this declaration is |
| 6262 | // "used"; handle this below. |
| 6263 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6264 | |
Douglas Gregor | ac7610d | 2009-06-22 20:57:11 +0000 | [diff] [blame] | 6265 | case PotentiallyPotentiallyEvaluated: |
| 6266 | // We are in an expression that may be potentially evaluated; queue this |
| 6267 | // declaration reference until we know whether the expression is |
| 6268 | // potentially evaluated. |
| 6269 | PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D)); |
| 6270 | return; |
| 6271 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6272 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6273 | // Note that this declaration has been used. |
Fariborz Jahanian | b7f4cc0 | 2009-06-22 17:30:33 +0000 | [diff] [blame] | 6274 | if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6275 | unsigned TypeQuals; |
Fariborz Jahanian | 05a5c45 | 2009-06-22 20:37:23 +0000 | [diff] [blame] | 6276 | if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) { |
| 6277 | if (!Constructor->isUsed()) |
| 6278 | DefineImplicitDefaultConstructor(Loc, Constructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6279 | } else if (Constructor->isImplicit() && |
Mike Stump | ac5fc7c | 2009-08-04 21:02:39 +0000 | [diff] [blame] | 6280 | Constructor->isCopyConstructor(Context, TypeQuals)) { |
Fariborz Jahanian | 485f087 | 2009-06-22 23:34:40 +0000 | [diff] [blame] | 6281 | if (!Constructor->isUsed()) |
| 6282 | DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals); |
| 6283 | } |
Fariborz Jahanian | 8d2b356 | 2009-06-26 23:49:16 +0000 | [diff] [blame] | 6284 | } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) { |
| 6285 | if (Destructor->isImplicit() && !Destructor->isUsed()) |
| 6286 | DefineImplicitDestructor(Loc, Destructor); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6287 | |
Fariborz Jahanian | c75bc2d | 2009-06-25 21:45:19 +0000 | [diff] [blame] | 6288 | } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) { |
| 6289 | if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() && |
| 6290 | MethodDecl->getOverloadedOperator() == OO_Equal) { |
| 6291 | if (!MethodDecl->isUsed()) |
| 6292 | DefineImplicitOverloadedAssign(Loc, MethodDecl); |
| 6293 | } |
| 6294 | } |
Fariborz Jahanian | f5ed9e0 | 2009-06-24 22:09:44 +0000 | [diff] [blame] | 6295 | if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6296 | // Implicit instantiation of function templates and member functions of |
Douglas Gregor | 1637be7 | 2009-06-26 00:10:03 +0000 | [diff] [blame] | 6297 | // class templates. |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6298 | if (!Function->getBody() && |
| 6299 | Function->getTemplateSpecializationKind() |
| 6300 | == TSK_ImplicitInstantiation) { |
| 6301 | bool AlreadyInstantiated = false; |
| 6302 | if (FunctionTemplateSpecializationInfo *SpecInfo |
| 6303 | = Function->getTemplateSpecializationInfo()) { |
| 6304 | if (SpecInfo->getPointOfInstantiation().isInvalid()) |
| 6305 | SpecInfo->setPointOfInstantiation(Loc); |
| 6306 | else |
| 6307 | AlreadyInstantiated = true; |
| 6308 | } else if (MemberSpecializationInfo *MSInfo |
| 6309 | = Function->getMemberSpecializationInfo()) { |
| 6310 | if (MSInfo->getPointOfInstantiation().isInvalid()) |
| 6311 | MSInfo->setPointOfInstantiation(Loc); |
| 6312 | else |
| 6313 | AlreadyInstantiated = true; |
| 6314 | } |
| 6315 | |
| 6316 | if (!AlreadyInstantiated) |
| 6317 | PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc)); |
| 6318 | } |
| 6319 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6320 | // FIXME: keep track of references to static functions |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6321 | Function->setUsed(true); |
| 6322 | return; |
Douglas Gregor | d7f37bf | 2009-06-22 23:06:13 +0000 | [diff] [blame] | 6323 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6324 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6325 | if (VarDecl *Var = dyn_cast<VarDecl>(D)) { |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6326 | // Implicit instantiation of static data members of class templates. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6327 | if (Var->isStaticDataMember() && |
Douglas Gregor | b3ae4fc | 2009-10-12 20:18:28 +0000 | [diff] [blame] | 6328 | Var->getInstantiatedFromStaticDataMember()) { |
| 6329 | MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo(); |
| 6330 | assert(MSInfo && "Missing member specialization information?"); |
| 6331 | if (MSInfo->getPointOfInstantiation().isInvalid() && |
| 6332 | MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) { |
| 6333 | MSInfo->setPointOfInstantiation(Loc); |
| 6334 | PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc)); |
| 6335 | } |
| 6336 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 6337 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6338 | // FIXME: keep track of references to static data? |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6339 | |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6340 | D->setUsed(true); |
Douglas Gregor | 7caa682 | 2009-07-24 20:34:43 +0000 | [diff] [blame] | 6341 | return; |
Sam Weinig | cce6ebc | 2009-09-11 03:29:30 +0000 | [diff] [blame] | 6342 | } |
Douglas Gregor | e0762c9 | 2009-06-19 23:52:42 +0000 | [diff] [blame] | 6343 | } |
Anders Carlsson | 8c8d919 | 2009-10-09 23:51:55 +0000 | [diff] [blame] | 6344 | |
| 6345 | bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc, |
| 6346 | CallExpr *CE, FunctionDecl *FD) { |
| 6347 | if (ReturnType->isVoidType() || !ReturnType->isIncompleteType()) |
| 6348 | return false; |
| 6349 | |
| 6350 | PartialDiagnostic Note = |
| 6351 | FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here) |
| 6352 | << FD->getDeclName() : PDiag(); |
| 6353 | SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation(); |
| 6354 | |
| 6355 | if (RequireCompleteType(Loc, ReturnType, |
| 6356 | FD ? |
| 6357 | PDiag(diag::err_call_function_incomplete_return) |
| 6358 | << CE->getSourceRange() << FD->getDeclName() : |
| 6359 | PDiag(diag::err_call_incomplete_return) |
| 6360 | << CE->getSourceRange(), |
| 6361 | std::make_pair(NoteLoc, Note))) |
| 6362 | return true; |
| 6363 | |
| 6364 | return false; |
| 6365 | } |
| 6366 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6367 | // Diagnose the common s/=/==/ typo. Note that adding parentheses |
| 6368 | // will prevent this condition from triggering, which is what we want. |
| 6369 | void Sema::DiagnoseAssignmentAsCondition(Expr *E) { |
| 6370 | SourceLocation Loc; |
| 6371 | |
| 6372 | if (isa<BinaryOperator>(E)) { |
| 6373 | BinaryOperator *Op = cast<BinaryOperator>(E); |
| 6374 | if (Op->getOpcode() != BinaryOperator::Assign) |
| 6375 | return; |
| 6376 | |
| 6377 | Loc = Op->getOperatorLoc(); |
| 6378 | } else if (isa<CXXOperatorCallExpr>(E)) { |
| 6379 | CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E); |
| 6380 | if (Op->getOperator() != OO_Equal) |
| 6381 | return; |
| 6382 | |
| 6383 | Loc = Op->getOperatorLoc(); |
| 6384 | } else { |
| 6385 | // Not an assignment. |
| 6386 | return; |
| 6387 | } |
| 6388 | |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6389 | SourceLocation Open = E->getSourceRange().getBegin(); |
John McCall | 2d15215 | 2009-10-12 22:25:59 +0000 | [diff] [blame] | 6390 | SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd()); |
John McCall | 5a881bb | 2009-10-12 21:59:07 +0000 | [diff] [blame] | 6391 | |
| 6392 | Diag(Loc, diag::warn_condition_is_assignment) |
| 6393 | << E->getSourceRange() |
| 6394 | << CodeModificationHint::CreateInsertion(Open, "(") |
| 6395 | << CodeModificationHint::CreateInsertion(Close, ")"); |
| 6396 | } |
| 6397 | |
| 6398 | bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) { |
| 6399 | DiagnoseAssignmentAsCondition(E); |
| 6400 | |
| 6401 | if (!E->isTypeDependent()) { |
| 6402 | DefaultFunctionArrayConversion(E); |
| 6403 | |
| 6404 | QualType T = E->getType(); |
| 6405 | |
| 6406 | if (getLangOptions().CPlusPlus) { |
| 6407 | if (CheckCXXBooleanCondition(E)) // C++ 6.4p4 |
| 6408 | return true; |
| 6409 | } else if (!T->isScalarType()) { // C99 6.8.4.1p1 |
| 6410 | Diag(Loc, diag::err_typecheck_statement_requires_scalar) |
| 6411 | << T << E->getSourceRange(); |
| 6412 | return true; |
| 6413 | } |
| 6414 | } |
| 6415 | |
| 6416 | return false; |
| 6417 | } |