blob: 791948fb2b286158f5e8b3d5bfebd69df6e3a340 [file] [log] [blame]
Chris Lattner5b183d82006-11-10 05:03:26 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183d82006-11-10 05:03:26 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Douglas Gregor85dabae2009-12-16 01:38:02 +000015#include "SemaInit.h"
John McCall5cebab12009-11-18 07:57:50 +000016#include "Lookup.h"
Chris Lattnercb6a3822006-11-10 06:20:45 +000017#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000018#include "clang/AST/DeclObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000019#include "clang/AST/DeclTemplate.h"
Chris Lattneraa9c7ae2008-04-08 04:40:51 +000020#include "clang/AST/ExprCXX.h"
Steve Naroff021ca182008-05-29 21:12:08 +000021#include "clang/AST/ExprObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000022#include "clang/Basic/PartialDiagnostic.h"
Steve Narofff2fb89e2007-03-13 20:29:44 +000023#include "clang/Basic/SourceManager.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000024#include "clang/Basic/TargetInfo.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000025#include "clang/Lex/LiteralSupport.h"
26#include "clang/Lex/Preprocessor.h"
Steve Naroffc540d662008-09-03 18:15:37 +000027#include "clang/Parse/DeclSpec.h"
Chris Lattner07d754a2008-10-26 23:43:26 +000028#include "clang/Parse/Designator.h"
Steve Naroffc540d662008-09-03 18:15:37 +000029#include "clang/Parse/Scope.h"
Douglas Gregorb53edfb2009-11-10 19:49:08 +000030#include "clang/Parse/Template.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000031using namespace clang;
32
David Chisnall9f57c292009-08-17 16:35:33 +000033
Douglas Gregor171c45a2009-02-18 21:56:37 +000034/// \brief Determine whether the use of this declaration is valid, and
35/// emit any corresponding diagnostics.
36///
37/// This routine diagnoses various problems with referencing
38/// declarations that can occur when using a declaration. For example,
39/// it might warn if a deprecated or unavailable declaration is being
40/// used, or produce an error (and return true) if a C++0x deleted
41/// function is being used.
42///
Chris Lattnerb7df3c62009-10-25 22:31:57 +000043/// If IgnoreDeprecated is set to true, this should not want about deprecated
44/// decls.
45///
Douglas Gregor171c45a2009-02-18 21:56:37 +000046/// \returns true if there was an error (this declaration cannot be
47/// referenced), false otherwise.
Chris Lattnerb7df3c62009-10-25 22:31:57 +000048///
John McCall28a6aea2009-11-04 02:18:39 +000049bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner4bf74fd2009-02-15 22:43:40 +000050 // See if the decl is deprecated.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000051 if (D->getAttr<DeprecatedAttr>()) {
John McCall28a6aea2009-11-04 02:18:39 +000052 EmitDeprecationWarning(D, Loc);
Chris Lattner4bf74fd2009-02-15 22:43:40 +000053 }
54
Chris Lattnera27dd592009-10-25 17:21:40 +000055 // See if the decl is unavailable
56 if (D->getAttr<UnavailableAttr>()) {
57 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
58 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
59 }
60
Douglas Gregor171c45a2009-02-18 21:56:37 +000061 // See if this is a deleted function.
Douglas Gregorde681d42009-02-24 04:26:15 +000062 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +000063 if (FD->isDeleted()) {
64 Diag(Loc, diag::err_deleted_function_use);
65 Diag(D->getLocation(), diag::note_unavailable_here) << true;
66 return true;
67 }
Douglas Gregorde681d42009-02-24 04:26:15 +000068 }
Douglas Gregor171c45a2009-02-18 21:56:37 +000069
Douglas Gregor171c45a2009-02-18 21:56:37 +000070 return false;
Chris Lattner4bf74fd2009-02-15 22:43:40 +000071}
72
Fariborz Jahanian027b8862009-05-13 18:09:35 +000073/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump11289f42009-09-09 15:08:12 +000074/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian027b8862009-05-13 18:09:35 +000075/// attribute. It warns if call does not have the sentinel argument.
76///
77void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +000078 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000079 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump11289f42009-09-09 15:08:12 +000080 if (!attr)
Fariborz Jahanian9e877212009-05-13 23:20:50 +000081 return;
Fariborz Jahanian9e877212009-05-13 23:20:50 +000082 int sentinelPos = attr->getSentinel();
83 int nullPos = attr->getNullPos();
Mike Stump11289f42009-09-09 15:08:12 +000084
Mike Stump87c57ac2009-05-16 07:39:55 +000085 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
86 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian9e877212009-05-13 23:20:50 +000087 unsigned int i = 0;
Fariborz Jahanian4a528032009-05-14 18:00:00 +000088 bool warnNotEnoughArgs = false;
89 int isMethod = 0;
90 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
91 // skip over named parameters.
92 ObjCMethodDecl::param_iterator P, E = MD->param_end();
93 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
94 if (nullPos)
95 --nullPos;
96 else
97 ++i;
98 }
99 warnNotEnoughArgs = (P != E || i >= NumArgs);
100 isMethod = 1;
Mike Stump12b8ce12009-08-04 21:02:39 +0000101 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000102 // skip over named parameters.
103 ObjCMethodDecl::param_iterator P, E = FD->param_end();
104 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
105 if (nullPos)
106 --nullPos;
107 else
108 ++i;
109 }
110 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stump12b8ce12009-08-04 21:02:39 +0000111 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000112 // block or function pointer call.
113 QualType Ty = V->getType();
114 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +0000115 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall9dd450b2009-09-21 23:43:11 +0000116 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
117 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000118 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
119 unsigned NumArgsInProto = Proto->getNumArgs();
120 unsigned k;
121 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
122 if (nullPos)
123 --nullPos;
124 else
125 ++i;
126 }
127 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
128 }
129 if (Ty->isBlockPointerType())
130 isMethod = 2;
Mike Stump12b8ce12009-08-04 21:02:39 +0000131 } else
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000132 return;
Mike Stump12b8ce12009-08-04 21:02:39 +0000133 } else
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000134 return;
135
136 if (warnNotEnoughArgs) {
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000137 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000138 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000139 return;
140 }
141 int sentinel = i;
142 while (sentinelPos > 0 && i < NumArgs-1) {
143 --sentinelPos;
144 ++i;
145 }
146 if (sentinelPos > 0) {
147 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000148 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000149 return;
150 }
151 while (i < NumArgs-1) {
152 ++i;
153 ++sentinel;
154 }
155 Expr *sentinelExpr = Args[sentinel];
Anders Carlsson0b11a3e2009-11-24 17:24:21 +0000156 if (sentinelExpr && (!isa<GNUNullExpr>(sentinelExpr) &&
157 (!sentinelExpr->getType()->isPointerType() ||
158 !sentinelExpr->isNullPointerConstant(Context,
159 Expr::NPC_ValueDependentIsNull)))) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000160 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000161 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000162 }
163 return;
Fariborz Jahanian027b8862009-05-13 18:09:35 +0000164}
165
Douglas Gregor87f95b02009-02-26 21:00:50 +0000166SourceRange Sema::getExprRange(ExprTy *E) const {
167 Expr *Ex = (Expr *)E;
168 return Ex? Ex->getSourceRange() : SourceRange();
169}
170
Chris Lattner513165e2008-07-25 21:10:04 +0000171//===----------------------------------------------------------------------===//
172// Standard Promotions and Conversions
173//===----------------------------------------------------------------------===//
174
Chris Lattner513165e2008-07-25 21:10:04 +0000175/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
176void Sema::DefaultFunctionArrayConversion(Expr *&E) {
177 QualType Ty = E->getType();
178 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
179
Chris Lattner513165e2008-07-25 21:10:04 +0000180 if (Ty->isFunctionType())
Mike Stump11289f42009-09-09 15:08:12 +0000181 ImpCastExprToType(E, Context.getPointerType(Ty),
Anders Carlsson6904f642009-09-01 20:37:18 +0000182 CastExpr::CK_FunctionToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000183 else if (Ty->isArrayType()) {
184 // In C90 mode, arrays only promote to pointers if the array expression is
185 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
186 // type 'array of type' is converted to an expression that has type 'pointer
187 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
188 // that has type 'array of type' ...". The relevant change is "an lvalue"
189 // (C90) to "an expression" (C99).
Argyrios Kyrtzidis9321c742008-09-11 04:25:59 +0000190 //
191 // C++ 4.2p1:
192 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
193 // T" can be converted to an rvalue of type "pointer to T".
194 //
195 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
196 E->isLvalue(Context) == Expr::LV_Valid)
Anders Carlsson8fc489d2009-08-07 23:48:20 +0000197 ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
198 CastExpr::CK_ArrayToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000199 }
Chris Lattner513165e2008-07-25 21:10:04 +0000200}
201
202/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump11289f42009-09-09 15:08:12 +0000203/// operators (C99 6.3). The conversions of array and function types are
Chris Lattner513165e2008-07-25 21:10:04 +0000204/// sometimes surpressed. For example, the array->pointer conversion doesn't
205/// apply if the array is an argument to the sizeof or address (&) operators.
206/// In these instances, this routine should *not* be called.
207Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
208 QualType Ty = Expr->getType();
209 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000210
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000211 // C99 6.3.1.1p2:
212 //
213 // The following may be used in an expression wherever an int or
214 // unsigned int may be used:
215 // - an object or expression with an integer type whose integer
216 // conversion rank is less than or equal to the rank of int
217 // and unsigned int.
218 // - A bit-field of type _Bool, int, signed int, or unsigned int.
219 //
220 // If an int can represent all values of the original type, the
221 // value is converted to an int; otherwise, it is converted to an
222 // unsigned int. These are called the integer promotions. All
223 // other types are unchanged by the integer promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000224 QualType PTy = Context.isPromotableBitField(Expr);
225 if (!PTy.isNull()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +0000226 ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast);
Eli Friedman629ffb92009-08-20 04:21:42 +0000227 return Expr;
228 }
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000229 if (Ty->isPromotableIntegerType()) {
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000230 QualType PT = Context.getPromotedIntegerType(Ty);
Eli Friedman06ed2a52009-10-20 08:27:19 +0000231 ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast);
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000232 return Expr;
Eli Friedman629ffb92009-08-20 04:21:42 +0000233 }
234
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000235 DefaultFunctionArrayConversion(Expr);
Chris Lattner513165e2008-07-25 21:10:04 +0000236 return Expr;
237}
238
Chris Lattner2ce500f2008-07-25 22:25:12 +0000239/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump11289f42009-09-09 15:08:12 +0000240/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner2ce500f2008-07-25 22:25:12 +0000241/// double. All other argument types are converted by UsualUnaryConversions().
242void Sema::DefaultArgumentPromotion(Expr *&Expr) {
243 QualType Ty = Expr->getType();
244 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000245
Chris Lattner2ce500f2008-07-25 22:25:12 +0000246 // If this is a 'float' (CVR qualified or typedef) promote to double.
John McCall9dd450b2009-09-21 23:43:11 +0000247 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
Chris Lattner2ce500f2008-07-25 22:25:12 +0000248 if (BT->getKind() == BuiltinType::Float)
Eli Friedman06ed2a52009-10-20 08:27:19 +0000249 return ImpCastExprToType(Expr, Context.DoubleTy,
250 CastExpr::CK_FloatingCast);
Mike Stump11289f42009-09-09 15:08:12 +0000251
Chris Lattner2ce500f2008-07-25 22:25:12 +0000252 UsualUnaryConversions(Expr);
253}
254
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000255/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
256/// will warn if the resulting type is not a POD type, and rejects ObjC
257/// interfaces passed by value. This returns true if the argument type is
258/// completely illegal.
259bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssona7d069d2009-01-16 16:48:51 +0000260 DefaultArgumentPromotion(Expr);
Mike Stump11289f42009-09-09 15:08:12 +0000261
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000262 if (Expr->getType()->isObjCInterfaceType()) {
Douglas Gregor7ca84af2009-12-12 07:25:49 +0000263 switch (ExprEvalContexts.back().Context ) {
264 case Unevaluated:
265 // The argument will never be evaluated, so don't complain.
266 break;
267
268 case PotentiallyEvaluated:
269 Diag(Expr->getLocStart(),
270 diag::err_cannot_pass_objc_interface_to_vararg)
271 << Expr->getType() << CT;
272 return true;
273
274 case PotentiallyPotentiallyEvaluated:
Douglas Gregorfab31f42009-12-12 07:57:52 +0000275 ExprEvalContexts.back().addDiagnostic(Expr->getLocStart(),
276 PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
277 << Expr->getType() << CT);
Douglas Gregor7ca84af2009-12-12 07:25:49 +0000278 break;
279 }
Anders Carlssona7d069d2009-01-16 16:48:51 +0000280 }
Mike Stump11289f42009-09-09 15:08:12 +0000281
Douglas Gregor7ca84af2009-12-12 07:25:49 +0000282 if (!Expr->getType()->isPODType()) {
283 switch (ExprEvalContexts.back().Context ) {
284 case Unevaluated:
285 // The argument will never be evaluated, so don't complain.
286 break;
287
288 case PotentiallyEvaluated:
289 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
290 << Expr->getType() << CT;
291 break;
292
293 case PotentiallyPotentiallyEvaluated:
Douglas Gregorfab31f42009-12-12 07:57:52 +0000294 ExprEvalContexts.back().addDiagnostic(Expr->getLocStart(),
295 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
296 << Expr->getType() << CT);
Douglas Gregor7ca84af2009-12-12 07:25:49 +0000297 break;
298 }
299 }
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000300
301 return false;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000302}
303
304
Chris Lattner513165e2008-07-25 21:10:04 +0000305/// UsualArithmeticConversions - Performs various conversions that are common to
306/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump11289f42009-09-09 15:08:12 +0000307/// routine returns the first non-arithmetic type found. The client is
Chris Lattner513165e2008-07-25 21:10:04 +0000308/// responsible for emitting appropriate error diagnostics.
309/// FIXME: verify the conversion rules for "complex int" are consistent with
310/// GCC.
311QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
312 bool isCompAssign) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000313 if (!isCompAssign)
Chris Lattner513165e2008-07-25 21:10:04 +0000314 UsualUnaryConversions(lhsExpr);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000315
316 UsualUnaryConversions(rhsExpr);
Douglas Gregora11693b2008-11-12 17:17:38 +0000317
Mike Stump11289f42009-09-09 15:08:12 +0000318 // For conversion purposes, we ignore any qualifiers.
Chris Lattner513165e2008-07-25 21:10:04 +0000319 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +0000320 QualType lhs =
321 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
Mike Stump11289f42009-09-09 15:08:12 +0000322 QualType rhs =
Chris Lattner574dee62008-07-26 22:17:49 +0000323 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregora11693b2008-11-12 17:17:38 +0000324
325 // If both types are identical, no conversion is needed.
326 if (lhs == rhs)
327 return lhs;
328
329 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
330 // The caller can deal with this (e.g. pointer + int).
331 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
332 return lhs;
333
Douglas Gregord2c2d172009-05-02 00:36:19 +0000334 // Perform bitfield promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000335 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000336 if (!LHSBitfieldPromoteTy.isNull())
337 lhs = LHSBitfieldPromoteTy;
Eli Friedman629ffb92009-08-20 04:21:42 +0000338 QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000339 if (!RHSBitfieldPromoteTy.isNull())
340 rhs = RHSBitfieldPromoteTy;
341
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000342 QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000343 if (!isCompAssign)
Eli Friedman06ed2a52009-10-20 08:27:19 +0000344 ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown);
345 ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown);
Douglas Gregora11693b2008-11-12 17:17:38 +0000346 return destType;
347}
348
Chris Lattner513165e2008-07-25 21:10:04 +0000349//===----------------------------------------------------------------------===//
350// Semantic Analysis for various Expression Types
351//===----------------------------------------------------------------------===//
352
353
Steve Naroff83895f72007-09-16 03:34:24 +0000354/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner5b183d82006-11-10 05:03:26 +0000355/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
356/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
357/// multiple tokens. However, the common case is that StringToks points to one
358/// string.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000359///
360Action::OwningExprResult
Steve Naroff83895f72007-09-16 03:34:24 +0000361Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner5b183d82006-11-10 05:03:26 +0000362 assert(NumStringToks && "Must have at least one string!");
363
Chris Lattner8a24e582009-01-16 18:51:42 +0000364 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Steve Naroff4f88b312007-03-13 22:37:02 +0000365 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000366 return ExprError();
Chris Lattner5b183d82006-11-10 05:03:26 +0000367
Chris Lattner23b7eb62007-06-15 23:05:46 +0000368 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
Chris Lattner5b183d82006-11-10 05:03:26 +0000369 for (unsigned i = 0; i != NumStringToks; ++i)
370 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattner36fc8792008-02-11 00:02:17 +0000371
Chris Lattner36fc8792008-02-11 00:02:17 +0000372 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidiscbad7252008-08-09 17:20:01 +0000373 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattner36fc8792008-02-11 00:02:17 +0000374 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregoraa1e21d2008-09-12 00:47:35 +0000375
376 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
377 if (getLangOptions().CPlusPlus)
378 StrTy.addConst();
Sebastian Redlffbcf962009-01-18 18:53:16 +0000379
Chris Lattner36fc8792008-02-11 00:02:17 +0000380 // Get an array type for the string, according to C99 6.4.5. This includes
381 // the nul terminator character as well as the string length for pascal
382 // strings.
383 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerd42c29f2009-02-26 23:01:51 +0000384 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattner36fc8792008-02-11 00:02:17 +0000385 ArrayType::Normal, 0);
Mike Stump11289f42009-09-09 15:08:12 +0000386
Chris Lattner5b183d82006-11-10 05:03:26 +0000387 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Mike Stump11289f42009-09-09 15:08:12 +0000388 return Owned(StringLiteral::Create(Context, Literal.GetString(),
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000389 Literal.GetStringLength(),
390 Literal.AnyWide, StrTy,
391 &StringTokLocs[0],
392 StringTokLocs.size()));
Chris Lattner5b183d82006-11-10 05:03:26 +0000393}
394
Chris Lattner2a9d9892008-10-20 05:16:36 +0000395/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
396/// CurBlock to VD should cause it to be snapshotted (as we do for auto
397/// variables defined outside the block) or false if this is not needed (e.g.
398/// for values inside the block or for globals).
399///
Chris Lattner497d7b02009-04-21 22:26:47 +0000400/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
401/// up-to-date.
402///
Chris Lattner2a9d9892008-10-20 05:16:36 +0000403static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
404 ValueDecl *VD) {
405 // If the value is defined inside the block, we couldn't snapshot it even if
406 // we wanted to.
407 if (CurBlock->TheDecl == VD->getDeclContext())
408 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000409
Chris Lattner2a9d9892008-10-20 05:16:36 +0000410 // If this is an enum constant or function, it is constant, don't snapshot.
411 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
412 return false;
413
414 // If this is a reference to an extern, static, or global variable, no need to
415 // snapshot it.
416 // FIXME: What about 'const' variables in C++?
417 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner497d7b02009-04-21 22:26:47 +0000418 if (!Var->hasLocalStorage())
419 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000420
Chris Lattner497d7b02009-04-21 22:26:47 +0000421 // Blocks that have these can't be constant.
422 CurBlock->hasBlockDeclRefExprs = true;
423
424 // If we have nested blocks, the decl may be declared in an outer block (in
425 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
426 // be defined outside all of the current blocks (in which case the blocks do
427 // all get the bit). Walk the nesting chain.
428 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
429 NextBlock = NextBlock->PrevBlockInfo) {
430 // If we found the defining block for the variable, don't mark the block as
431 // having a reference outside it.
432 if (NextBlock->TheDecl == VD->getDeclContext())
433 break;
Mike Stump11289f42009-09-09 15:08:12 +0000434
Chris Lattner497d7b02009-04-21 22:26:47 +0000435 // Otherwise, the DeclRef from the inner block causes the outer one to need
436 // a snapshot as well.
437 NextBlock->hasBlockDeclRefExprs = true;
438 }
Mike Stump11289f42009-09-09 15:08:12 +0000439
Chris Lattner2a9d9892008-10-20 05:16:36 +0000440 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000441}
442
Chris Lattner2a9d9892008-10-20 05:16:36 +0000443
444
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000445/// BuildDeclRefExpr - Build a DeclRefExpr.
Anders Carlsson946b86d2009-06-24 00:10:43 +0000446Sema::OwningExprResult
John McCallce546572009-12-08 09:08:17 +0000447Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, SourceLocation Loc,
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000448 const CXXScopeSpec *SS) {
Anders Carlsson364035d12009-06-26 19:16:07 +0000449 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
450 Diag(Loc,
Mike Stump11289f42009-09-09 15:08:12 +0000451 diag::err_auto_variable_cannot_appear_in_own_initializer)
Anders Carlsson364035d12009-06-26 19:16:07 +0000452 << D->getDeclName();
453 return ExprError();
454 }
Mike Stump11289f42009-09-09 15:08:12 +0000455
Anders Carlsson946b86d2009-06-24 00:10:43 +0000456 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
457 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
458 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
459 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
Mike Stump11289f42009-09-09 15:08:12 +0000460 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000461 << D->getIdentifier() << FD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +0000462 Diag(D->getLocation(), diag::note_local_variable_declared_here)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000463 << D->getIdentifier();
464 return ExprError();
465 }
466 }
467 }
468 }
Mike Stump11289f42009-09-09 15:08:12 +0000469
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000470 MarkDeclarationReferenced(Loc, D);
Mike Stump11289f42009-09-09 15:08:12 +0000471
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000472 return Owned(DeclRefExpr::Create(Context,
473 SS? (NestedNameSpecifier *)SS->getScopeRep() : 0,
474 SS? SS->getRange() : SourceRange(),
Douglas Gregored6c7442009-11-23 11:41:28 +0000475 D, Loc, Ty));
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000476}
477
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000478/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
479/// variable corresponding to the anonymous union or struct whose type
480/// is Record.
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000481static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
482 RecordDecl *Record) {
Mike Stump11289f42009-09-09 15:08:12 +0000483 assert(Record->isAnonymousStructOrUnion() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000484 "Record must be an anonymous struct or union!");
Mike Stump11289f42009-09-09 15:08:12 +0000485
Mike Stump87c57ac2009-05-16 07:39:55 +0000486 // FIXME: Once Decls are directly linked together, this will be an O(1)
487 // operation rather than a slow walk through DeclContext's vector (which
488 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000489 DeclContext *Ctx = Record->getDeclContext();
Mike Stump11289f42009-09-09 15:08:12 +0000490 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000491 DEnd = Ctx->decls_end();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000492 D != DEnd; ++D) {
493 if (*D == Record) {
494 // The object for the anonymous struct/union directly
495 // follows its type in the list of declarations.
496 ++D;
497 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000498 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000499 return *D;
500 }
501 }
502
503 assert(false && "Missing object for anonymous record");
504 return 0;
505}
506
Douglas Gregord5846a12009-04-15 06:41:24 +0000507/// \brief Given a field that represents a member of an anonymous
508/// struct/union, build the path from that field's context to the
509/// actual member.
510///
511/// Construct the sequence of field member references we'll have to
512/// perform to get to the field in the anonymous union/struct. The
513/// list of members is built from the field outward, so traverse it
514/// backwards to go from an object in the current context to the field
515/// we found.
516///
517/// \returns The variable from which the field access should begin,
518/// for an anonymous struct/union that is not a member of another
519/// class. Otherwise, returns NULL.
520VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
521 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000522 assert(Field->getDeclContext()->isRecord() &&
523 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
524 && "Field must be stored inside an anonymous struct or union");
525
Douglas Gregord5846a12009-04-15 06:41:24 +0000526 Path.push_back(Field);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000527 VarDecl *BaseObject = 0;
528 DeclContext *Ctx = Field->getDeclContext();
529 do {
530 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000531 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000532 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregord5846a12009-04-15 06:41:24 +0000533 Path.push_back(AnonField);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000534 else {
535 BaseObject = cast<VarDecl>(AnonObject);
536 break;
537 }
538 Ctx = Ctx->getParent();
Mike Stump11289f42009-09-09 15:08:12 +0000539 } while (Ctx->isRecord() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000540 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregord5846a12009-04-15 06:41:24 +0000541
542 return BaseObject;
543}
544
545Sema::OwningExprResult
546Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
547 FieldDecl *Field,
548 Expr *BaseObjectExpr,
549 SourceLocation OpLoc) {
550 llvm::SmallVector<FieldDecl *, 4> AnonFields;
Mike Stump11289f42009-09-09 15:08:12 +0000551 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
Douglas Gregord5846a12009-04-15 06:41:24 +0000552 AnonFields);
553
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000554 // Build the expression that refers to the base object, from
555 // which we will build a sequence of member references to each
556 // of the anonymous union objects and, eventually, the field we
557 // found via name lookup.
558 bool BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000559 Qualifiers BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000560 if (BaseObject) {
561 // BaseObject is an anonymous struct/union variable (and is,
562 // therefore, not part of another non-anonymous record).
Ted Kremenek5a201952009-02-07 01:47:29 +0000563 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000564 MarkDeclarationReferenced(Loc, BaseObject);
Steve Narofff6009ed2009-01-21 00:14:39 +0000565 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000566 SourceLocation());
John McCall8ccfcb52009-09-24 19:53:00 +0000567 BaseQuals
568 = Context.getCanonicalType(BaseObject->getType()).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000569 } else if (BaseObjectExpr) {
570 // The caller provided the base object expression. Determine
571 // whether its a pointer and whether it adds any qualifiers to the
572 // anonymous struct/union fields we're looking into.
573 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000574 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000575 BaseObjectIsPointer = true;
576 ObjectType = ObjectPtr->getPointeeType();
577 }
John McCall8ccfcb52009-09-24 19:53:00 +0000578 BaseQuals
579 = Context.getCanonicalType(ObjectType).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000580 } else {
581 // We've found a member of an anonymous struct/union that is
582 // inside a non-anonymous struct/union, so in a well-formed
583 // program our base object expression is "this".
584 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
585 if (!MD->isStatic()) {
Mike Stump11289f42009-09-09 15:08:12 +0000586 QualType AnonFieldType
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000587 = Context.getTagDeclType(
588 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
589 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump11289f42009-09-09 15:08:12 +0000590 if ((Context.getCanonicalType(AnonFieldType)
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000591 == Context.getCanonicalType(ThisType)) ||
592 IsDerivedFrom(ThisType, AnonFieldType)) {
593 // Our base object expression is "this".
Steve Narofff6009ed2009-01-21 00:14:39 +0000594 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000595 MD->getThisType(Context));
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000596 BaseObjectIsPointer = true;
597 }
598 } else {
Sebastian Redlffbcf962009-01-18 18:53:16 +0000599 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
600 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000601 }
John McCall8ccfcb52009-09-24 19:53:00 +0000602 BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000603 }
604
Mike Stump11289f42009-09-09 15:08:12 +0000605 if (!BaseObjectExpr)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000606 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
607 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000608 }
609
610 // Build the implicit member references to the field of the
611 // anonymous struct/union.
612 Expr *Result = BaseObjectExpr;
John McCall8ccfcb52009-09-24 19:53:00 +0000613 Qualifiers ResultQuals = BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000614 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
615 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
616 FI != FIEnd; ++FI) {
617 QualType MemberType = (*FI)->getType();
John McCall8ccfcb52009-09-24 19:53:00 +0000618 Qualifiers MemberTypeQuals =
619 Context.getCanonicalType(MemberType).getQualifiers();
620
621 // CVR attributes from the base are picked up by members,
622 // except that 'mutable' members don't pick up 'const'.
623 if ((*FI)->isMutable())
624 ResultQuals.removeConst();
625
626 // GC attributes are never picked up by members.
627 ResultQuals.removeObjCGCAttr();
628
629 // TR 18037 does not allow fields to be declared with address spaces.
630 assert(!MemberTypeQuals.hasAddressSpace());
631
632 Qualifiers NewQuals = ResultQuals + MemberTypeQuals;
633 if (NewQuals != MemberTypeQuals)
634 MemberType = Context.getQualifiedType(MemberType, NewQuals);
635
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000636 MarkDeclarationReferenced(Loc, *FI);
Eli Friedman78cde142009-12-04 07:18:51 +0000637 PerformObjectMemberConversion(Result, *FI);
Douglas Gregorc1905232009-08-26 22:36:53 +0000638 // FIXME: Might this end up being a qualified name?
Steve Narofff6009ed2009-01-21 00:14:39 +0000639 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
640 OpLoc, MemberType);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000641 BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000642 ResultQuals = NewQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000643 }
644
Sebastian Redlffbcf962009-01-18 18:53:16 +0000645 return Owned(Result);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000646}
647
John McCall10eae182009-11-30 22:42:35 +0000648/// Decomposes the given name into a DeclarationName, its location, and
649/// possibly a list of template arguments.
650///
651/// If this produces template arguments, it is permitted to call
652/// DecomposeTemplateName.
653///
654/// This actually loses a lot of source location information for
655/// non-standard name kinds; we should consider preserving that in
656/// some way.
657static void DecomposeUnqualifiedId(Sema &SemaRef,
658 const UnqualifiedId &Id,
659 TemplateArgumentListInfo &Buffer,
660 DeclarationName &Name,
661 SourceLocation &NameLoc,
662 const TemplateArgumentListInfo *&TemplateArgs) {
663 if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
664 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
665 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
666
667 ASTTemplateArgsPtr TemplateArgsPtr(SemaRef,
668 Id.TemplateId->getTemplateArgs(),
669 Id.TemplateId->NumArgs);
670 SemaRef.translateTemplateArguments(TemplateArgsPtr, Buffer);
671 TemplateArgsPtr.release();
672
673 TemplateName TName =
674 Sema::TemplateTy::make(Id.TemplateId->Template).getAsVal<TemplateName>();
675
676 Name = SemaRef.Context.getNameForTemplate(TName);
677 NameLoc = Id.TemplateId->TemplateNameLoc;
678 TemplateArgs = &Buffer;
679 } else {
680 Name = SemaRef.GetNameFromUnqualifiedId(Id);
681 NameLoc = Id.StartLocation;
682 TemplateArgs = 0;
683 }
684}
685
686/// Decompose the given template name into a list of lookup results.
687///
688/// The unqualified ID must name a non-dependent template, which can
689/// be more easily tested by checking whether DecomposeUnqualifiedId
690/// found template arguments.
691static void DecomposeTemplateName(LookupResult &R, const UnqualifiedId &Id) {
692 assert(Id.getKind() == UnqualifiedId::IK_TemplateId);
693 TemplateName TName =
694 Sema::TemplateTy::make(Id.TemplateId->Template).getAsVal<TemplateName>();
695
John McCalle66edc12009-11-24 19:00:30 +0000696 if (TemplateDecl *TD = TName.getAsTemplateDecl())
697 R.addDecl(TD);
John McCalld28ae272009-12-02 08:04:21 +0000698 else if (OverloadedTemplateStorage *OT = TName.getAsOverloadedTemplate())
699 for (OverloadedTemplateStorage::iterator I = OT->begin(), E = OT->end();
700 I != E; ++I)
John McCalle66edc12009-11-24 19:00:30 +0000701 R.addDecl(*I);
John McCalla9ee3252009-11-22 02:49:43 +0000702
John McCalle66edc12009-11-24 19:00:30 +0000703 R.resolveKind();
Douglas Gregora121b752009-11-03 16:56:39 +0000704}
705
John McCall10eae182009-11-30 22:42:35 +0000706static bool IsFullyFormedScope(Sema &SemaRef, CXXRecordDecl *Record) {
707 for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(),
708 E = Record->bases_end(); I != E; ++I) {
709 CanQualType BaseT = SemaRef.Context.getCanonicalType((*I).getType());
710 CanQual<RecordType> BaseRT = BaseT->getAs<RecordType>();
711 if (!BaseRT) return false;
712
713 CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl());
714 if (!BaseRecord->isDefinition() ||
715 !IsFullyFormedScope(SemaRef, BaseRecord))
716 return false;
717 }
718
719 return true;
720}
721
John McCallf786fb12009-11-30 23:50:49 +0000722/// Determines whether we can lookup this id-expression now or whether
723/// we have to wait until template instantiation is complete.
724static bool IsDependentIdExpression(Sema &SemaRef, const CXXScopeSpec &SS) {
John McCall10eae182009-11-30 22:42:35 +0000725 DeclContext *DC = SemaRef.computeDeclContext(SS, false);
John McCall10eae182009-11-30 22:42:35 +0000726
John McCallf786fb12009-11-30 23:50:49 +0000727 // If the qualifier scope isn't computable, it's definitely dependent.
728 if (!DC) return true;
729
730 // If the qualifier scope doesn't name a record, we can always look into it.
731 if (!isa<CXXRecordDecl>(DC)) return false;
732
733 // We can't look into record types unless they're fully-formed.
734 if (!IsFullyFormedScope(SemaRef, cast<CXXRecordDecl>(DC))) return true;
735
John McCall2d74de92009-12-01 22:10:20 +0000736 return false;
737}
John McCallf786fb12009-11-30 23:50:49 +0000738
John McCall2d74de92009-12-01 22:10:20 +0000739/// Determines if the given class is provably not derived from all of
740/// the prospective base classes.
741static bool IsProvablyNotDerivedFrom(Sema &SemaRef,
742 CXXRecordDecl *Record,
743 const llvm::SmallPtrSet<CXXRecordDecl*, 4> &Bases) {
John McCalla6d407c2009-12-01 22:28:41 +0000744 if (Bases.count(Record->getCanonicalDecl()))
John McCall2d74de92009-12-01 22:10:20 +0000745 return false;
746
John McCalla6d407c2009-12-01 22:28:41 +0000747 RecordDecl *RD = Record->getDefinition(SemaRef.Context);
748 if (!RD) return false;
749 Record = cast<CXXRecordDecl>(RD);
750
John McCall2d74de92009-12-01 22:10:20 +0000751 for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(),
752 E = Record->bases_end(); I != E; ++I) {
753 CanQualType BaseT = SemaRef.Context.getCanonicalType((*I).getType());
754 CanQual<RecordType> BaseRT = BaseT->getAs<RecordType>();
755 if (!BaseRT) return false;
756
757 CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl());
John McCall2d74de92009-12-01 22:10:20 +0000758 if (!IsProvablyNotDerivedFrom(SemaRef, BaseRecord, Bases))
759 return false;
760 }
761
762 return true;
763}
764
John McCall5af04502009-12-02 20:26:00 +0000765/// Determines if this is an instance member of a class.
766static bool IsInstanceMember(NamedDecl *D) {
John McCall57500772009-12-16 12:17:52 +0000767 assert(D->isCXXClassMember() &&
John McCall2d74de92009-12-01 22:10:20 +0000768 "checking whether non-member is instance member");
769
770 if (isa<FieldDecl>(D)) return true;
771
772 if (isa<CXXMethodDecl>(D))
773 return !cast<CXXMethodDecl>(D)->isStatic();
774
775 if (isa<FunctionTemplateDecl>(D)) {
776 D = cast<FunctionTemplateDecl>(D)->getTemplatedDecl();
777 return !cast<CXXMethodDecl>(D)->isStatic();
778 }
779
780 return false;
781}
782
783enum IMAKind {
784 /// The reference is definitely not an instance member access.
785 IMA_Static,
786
787 /// The reference may be an implicit instance member access.
788 IMA_Mixed,
789
790 /// The reference may be to an instance member, but it is invalid if
791 /// so, because the context is not an instance method.
792 IMA_Mixed_StaticContext,
793
794 /// The reference may be to an instance member, but it is invalid if
795 /// so, because the context is from an unrelated class.
796 IMA_Mixed_Unrelated,
797
798 /// The reference is definitely an implicit instance member access.
799 IMA_Instance,
800
801 /// The reference may be to an unresolved using declaration.
802 IMA_Unresolved,
803
804 /// The reference may be to an unresolved using declaration and the
805 /// context is not an instance method.
806 IMA_Unresolved_StaticContext,
807
808 /// The reference is to a member of an anonymous structure in a
809 /// non-class context.
810 IMA_AnonymousMember,
811
812 /// All possible referrents are instance members and the current
813 /// context is not an instance method.
814 IMA_Error_StaticContext,
815
816 /// All possible referrents are instance members of an unrelated
817 /// class.
818 IMA_Error_Unrelated
819};
820
821/// The given lookup names class member(s) and is not being used for
822/// an address-of-member expression. Classify the type of access
823/// according to whether it's possible that this reference names an
824/// instance member. This is best-effort; it is okay to
825/// conservatively answer "yes", in which case some errors will simply
826/// not be caught until template-instantiation.
827static IMAKind ClassifyImplicitMemberAccess(Sema &SemaRef,
828 const LookupResult &R) {
John McCall57500772009-12-16 12:17:52 +0000829 assert(!R.empty() && (*R.begin())->isCXXClassMember());
John McCall2d74de92009-12-01 22:10:20 +0000830
831 bool isStaticContext =
832 (!isa<CXXMethodDecl>(SemaRef.CurContext) ||
833 cast<CXXMethodDecl>(SemaRef.CurContext)->isStatic());
834
835 if (R.isUnresolvableResult())
836 return isStaticContext ? IMA_Unresolved_StaticContext : IMA_Unresolved;
837
838 // Collect all the declaring classes of instance members we find.
839 bool hasNonInstance = false;
840 llvm::SmallPtrSet<CXXRecordDecl*, 4> Classes;
841 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
842 NamedDecl *D = (*I)->getUnderlyingDecl();
843 if (IsInstanceMember(D)) {
844 CXXRecordDecl *R = cast<CXXRecordDecl>(D->getDeclContext());
845
846 // If this is a member of an anonymous record, move out to the
847 // innermost non-anonymous struct or union. If there isn't one,
848 // that's a special case.
849 while (R->isAnonymousStructOrUnion()) {
850 R = dyn_cast<CXXRecordDecl>(R->getParent());
851 if (!R) return IMA_AnonymousMember;
852 }
853 Classes.insert(R->getCanonicalDecl());
854 }
855 else
856 hasNonInstance = true;
857 }
858
859 // If we didn't find any instance members, it can't be an implicit
860 // member reference.
861 if (Classes.empty())
862 return IMA_Static;
863
864 // If the current context is not an instance method, it can't be
865 // an implicit member reference.
866 if (isStaticContext)
867 return (hasNonInstance ? IMA_Mixed_StaticContext : IMA_Error_StaticContext);
868
869 // If we can prove that the current context is unrelated to all the
870 // declaring classes, it can't be an implicit member reference (in
871 // which case it's an error if any of those members are selected).
872 if (IsProvablyNotDerivedFrom(SemaRef,
873 cast<CXXMethodDecl>(SemaRef.CurContext)->getParent(),
874 Classes))
875 return (hasNonInstance ? IMA_Mixed_Unrelated : IMA_Error_Unrelated);
876
877 return (hasNonInstance ? IMA_Mixed : IMA_Instance);
878}
879
880/// Diagnose a reference to a field with no object available.
881static void DiagnoseInstanceReference(Sema &SemaRef,
882 const CXXScopeSpec &SS,
883 const LookupResult &R) {
884 SourceLocation Loc = R.getNameLoc();
885 SourceRange Range(Loc);
886 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
887
888 if (R.getAsSingle<FieldDecl>()) {
889 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(SemaRef.CurContext)) {
890 if (MD->isStatic()) {
891 // "invalid use of member 'x' in static member function"
892 SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method)
893 << Range << R.getLookupName();
894 return;
895 }
896 }
897
898 SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use)
899 << R.getLookupName() << Range;
900 return;
901 }
902
903 SemaRef.Diag(Loc, diag::err_member_call_without_object) << Range;
John McCall10eae182009-11-30 22:42:35 +0000904}
905
John McCalld681c392009-12-16 08:11:27 +0000906/// Diagnose an empty lookup.
907///
908/// \return false if new lookup candidates were found
909bool Sema::DiagnoseEmptyLookup(const CXXScopeSpec &SS,
910 LookupResult &R) {
911 DeclarationName Name = R.getLookupName();
912
913 // We don't know how to recover from bad qualified lookups.
914 if (!SS.isEmpty()) {
915 Diag(R.getNameLoc(), diag::err_no_member)
916 << Name << computeDeclContext(SS, false)
917 << SS.getRange();
918 return true;
919 }
920
921 unsigned diagnostic = diag::err_undeclared_var_use;
922 if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
923 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
924 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
925 diagnostic = diag::err_undeclared_use;
926
927 // Fake an unqualified lookup. This is useful when (for example)
928 // the original lookup would not have found something because it was
929 // a dependent name.
930 for (DeclContext *DC = CurContext; DC; DC = DC->getParent()) {
931 if (isa<CXXRecordDecl>(DC)) {
932 LookupQualifiedName(R, DC);
933
934 if (!R.empty()) {
935 // Don't give errors about ambiguities in this lookup.
936 R.suppressDiagnostics();
937
938 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
939 bool isInstance = CurMethod &&
940 CurMethod->isInstance() &&
941 DC == CurMethod->getParent();
942
943 // Give a code modification hint to insert 'this->'.
944 // TODO: fixit for inserting 'Base<T>::' in the other cases.
945 // Actually quite difficult!
946 if (isInstance)
947 Diag(R.getNameLoc(), diagnostic) << Name
948 << CodeModificationHint::CreateInsertion(R.getNameLoc(),
949 "this->");
950 else
951 Diag(R.getNameLoc(), diagnostic) << Name;
952
953 // Do we really want to note all of these?
954 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
955 Diag((*I)->getLocation(), diag::note_dependent_var_use);
956
957 // Tell the callee to try to recover.
958 return false;
959 }
960 }
961 }
962
963 // Give up, we can't recover.
964 Diag(R.getNameLoc(), diagnostic) << Name;
965 return true;
966}
967
John McCalle66edc12009-11-24 19:00:30 +0000968Sema::OwningExprResult Sema::ActOnIdExpression(Scope *S,
969 const CXXScopeSpec &SS,
970 UnqualifiedId &Id,
971 bool HasTrailingLParen,
972 bool isAddressOfOperand) {
973 assert(!(isAddressOfOperand && HasTrailingLParen) &&
974 "cannot be direct & operand and have a trailing lparen");
975
976 if (SS.isInvalid())
Douglas Gregored8f2882009-01-30 01:04:22 +0000977 return ExprError();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000978
John McCall10eae182009-11-30 22:42:35 +0000979 TemplateArgumentListInfo TemplateArgsBuffer;
John McCalle66edc12009-11-24 19:00:30 +0000980
981 // Decompose the UnqualifiedId into the following data.
982 DeclarationName Name;
983 SourceLocation NameLoc;
984 const TemplateArgumentListInfo *TemplateArgs;
John McCall10eae182009-11-30 22:42:35 +0000985 DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer,
986 Name, NameLoc, TemplateArgs);
Douglas Gregor90a1a652009-03-19 17:26:29 +0000987
Douglas Gregor4ea80432008-11-18 15:03:34 +0000988 IdentifierInfo *II = Name.getAsIdentifierInfo();
John McCalld14a8642009-11-21 08:51:07 +0000989
John McCalle66edc12009-11-24 19:00:30 +0000990 // C++ [temp.dep.expr]p3:
991 // An id-expression is type-dependent if it contains:
992 // -- a nested-name-specifier that contains a class-name that
993 // names a dependent type.
994 // Determine whether this is a member of an unknown specialization;
995 // we need to handle these differently.
John McCallf786fb12009-11-30 23:50:49 +0000996 if (SS.isSet() && IsDependentIdExpression(*this, SS)) {
John McCalle66edc12009-11-24 19:00:30 +0000997 return ActOnDependentIdExpression(SS, Name, NameLoc,
John McCallcd4b4772009-12-02 03:53:29 +0000998 isAddressOfOperand,
John McCalle66edc12009-11-24 19:00:30 +0000999 TemplateArgs);
1000 }
John McCalld14a8642009-11-21 08:51:07 +00001001
John McCalle66edc12009-11-24 19:00:30 +00001002 // Perform the required lookup.
1003 LookupResult R(*this, Name, NameLoc, LookupOrdinaryName);
1004 if (TemplateArgs) {
John McCalle66edc12009-11-24 19:00:30 +00001005 // Just re-use the lookup done by isTemplateName.
John McCall10eae182009-11-30 22:42:35 +00001006 DecomposeTemplateName(R, Id);
John McCalle66edc12009-11-24 19:00:30 +00001007 } else {
1008 LookupParsedName(R, S, &SS, true);
Mike Stump11289f42009-09-09 15:08:12 +00001009
John McCalle66edc12009-11-24 19:00:30 +00001010 // If this reference is in an Objective-C method, then we need to do
1011 // some special Objective-C lookup, too.
1012 if (!SS.isSet() && II && getCurMethodDecl()) {
1013 OwningExprResult E(LookupInObjCMethod(R, S, II));
1014 if (E.isInvalid())
1015 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00001016
John McCalle66edc12009-11-24 19:00:30 +00001017 Expr *Ex = E.takeAs<Expr>();
1018 if (Ex) return Owned(Ex);
Steve Naroffebf4cb42008-06-02 23:03:37 +00001019 }
Chris Lattner59a25942008-03-31 00:36:02 +00001020 }
Douglas Gregorf15f5d32009-02-16 19:28:42 +00001021
John McCalle66edc12009-11-24 19:00:30 +00001022 if (R.isAmbiguous())
1023 return ExprError();
1024
Douglas Gregor171c45a2009-02-18 21:56:37 +00001025 // Determine whether this name might be a candidate for
1026 // argument-dependent lookup.
John McCalle66edc12009-11-24 19:00:30 +00001027 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
Douglas Gregor171c45a2009-02-18 21:56:37 +00001028
John McCalle66edc12009-11-24 19:00:30 +00001029 if (R.empty() && !ADL) {
Bill Wendling4073ed52007-02-13 01:51:42 +00001030 // Otherwise, this could be an implicitly declared function reference (legal
John McCalle66edc12009-11-24 19:00:30 +00001031 // in C90, extension in C99, forbidden in C++).
1032 if (HasTrailingLParen && II && !getLangOptions().CPlusPlus) {
1033 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
1034 if (D) R.addDecl(D);
1035 }
1036
1037 // If this name wasn't predeclared and if this is not a function
1038 // call, diagnose the problem.
1039 if (R.empty()) {
John McCalld681c392009-12-16 08:11:27 +00001040 if (DiagnoseEmptyLookup(SS, R))
1041 return ExprError();
1042
1043 assert(!R.empty() &&
1044 "DiagnoseEmptyLookup returned false but added no results");
Steve Naroff92e30f82007-04-02 22:35:25 +00001045 }
Chris Lattner17ed4872006-11-20 04:58:19 +00001046 }
Mike Stump11289f42009-09-09 15:08:12 +00001047
John McCalle66edc12009-11-24 19:00:30 +00001048 // This is guaranteed from this point on.
1049 assert(!R.empty() || ADL);
1050
1051 if (VarDecl *Var = R.getAsSingle<VarDecl>()) {
Douglas Gregor3256d042009-06-30 15:47:41 +00001052 // Warn about constructs like:
1053 // if (void *X = foo()) { ... } else { X }.
1054 // In the else block, the pointer is always false.
Mike Stump11289f42009-09-09 15:08:12 +00001055
Douglas Gregor3256d042009-06-30 15:47:41 +00001056 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
1057 Scope *CheckS = S;
Douglas Gregor13a2c032009-11-05 17:49:26 +00001058 while (CheckS && CheckS->getControlParent()) {
Mike Stump11289f42009-09-09 15:08:12 +00001059 if (CheckS->isWithinElse() &&
Douglas Gregor3256d042009-06-30 15:47:41 +00001060 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
John McCalle66edc12009-11-24 19:00:30 +00001061 ExprError(Diag(NameLoc, diag::warn_value_always_zero)
Douglas Gregor13a2c032009-11-05 17:49:26 +00001062 << Var->getDeclName()
1063 << (Var->getType()->isPointerType()? 2 :
1064 Var->getType()->isBooleanType()? 1 : 0));
Douglas Gregor3256d042009-06-30 15:47:41 +00001065 break;
1066 }
Mike Stump11289f42009-09-09 15:08:12 +00001067
Douglas Gregor13a2c032009-11-05 17:49:26 +00001068 // Move to the parent of this scope.
1069 CheckS = CheckS->getParent();
Douglas Gregor3256d042009-06-30 15:47:41 +00001070 }
1071 }
John McCalle66edc12009-11-24 19:00:30 +00001072 } else if (FunctionDecl *Func = R.getAsSingle<FunctionDecl>()) {
Douglas Gregor3256d042009-06-30 15:47:41 +00001073 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
1074 // C99 DR 316 says that, if a function type comes from a
1075 // function definition (without a prototype), that type is only
1076 // used for checking compatibility. Therefore, when referencing
1077 // the function, we pretend that we don't have the full function
1078 // type.
John McCalle66edc12009-11-24 19:00:30 +00001079 if (DiagnoseUseOfDecl(Func, NameLoc))
Douglas Gregor3256d042009-06-30 15:47:41 +00001080 return ExprError();
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001081
Douglas Gregor3256d042009-06-30 15:47:41 +00001082 QualType T = Func->getType();
1083 QualType NoProtoType = T;
John McCall9dd450b2009-09-21 23:43:11 +00001084 if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>())
Douglas Gregor3256d042009-06-30 15:47:41 +00001085 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
John McCalle66edc12009-11-24 19:00:30 +00001086 return BuildDeclRefExpr(Func, NoProtoType, NameLoc, &SS);
Douglas Gregor3256d042009-06-30 15:47:41 +00001087 }
1088 }
Mike Stump11289f42009-09-09 15:08:12 +00001089
John McCall2d74de92009-12-01 22:10:20 +00001090 // Check whether this might be a C++ implicit instance member access.
1091 // C++ [expr.prim.general]p6:
1092 // Within the definition of a non-static member function, an
1093 // identifier that names a non-static member is transformed to a
1094 // class member access expression.
1095 // But note that &SomeClass::foo is grammatically distinct, even
1096 // though we don't parse it that way.
John McCall57500772009-12-16 12:17:52 +00001097 if (!R.empty() && (*R.begin())->isCXXClassMember()) {
John McCalle66edc12009-11-24 19:00:30 +00001098 bool isAbstractMemberPointer = (isAddressOfOperand && !SS.isEmpty());
John McCall57500772009-12-16 12:17:52 +00001099 if (!isAbstractMemberPointer)
1100 return BuildPossibleImplicitMemberExpr(SS, R, TemplateArgs);
John McCallb53bbd42009-11-22 01:44:31 +00001101 }
1102
John McCalle66edc12009-11-24 19:00:30 +00001103 if (TemplateArgs)
1104 return BuildTemplateIdExpr(SS, R, ADL, *TemplateArgs);
John McCallb53bbd42009-11-22 01:44:31 +00001105
John McCalle66edc12009-11-24 19:00:30 +00001106 return BuildDeclarationNameExpr(SS, R, ADL);
1107}
1108
John McCall57500772009-12-16 12:17:52 +00001109/// Builds an expression which might be an implicit member expression.
1110Sema::OwningExprResult
1111Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS,
1112 LookupResult &R,
1113 const TemplateArgumentListInfo *TemplateArgs) {
1114 switch (ClassifyImplicitMemberAccess(*this, R)) {
1115 case IMA_Instance:
1116 return BuildImplicitMemberExpr(SS, R, TemplateArgs, true);
1117
1118 case IMA_AnonymousMember:
1119 assert(R.isSingleResult());
1120 return BuildAnonymousStructUnionMemberReference(R.getNameLoc(),
1121 R.getAsSingle<FieldDecl>());
1122
1123 case IMA_Mixed:
1124 case IMA_Mixed_Unrelated:
1125 case IMA_Unresolved:
1126 return BuildImplicitMemberExpr(SS, R, TemplateArgs, false);
1127
1128 case IMA_Static:
1129 case IMA_Mixed_StaticContext:
1130 case IMA_Unresolved_StaticContext:
1131 if (TemplateArgs)
1132 return BuildTemplateIdExpr(SS, R, false, *TemplateArgs);
1133 return BuildDeclarationNameExpr(SS, R, false);
1134
1135 case IMA_Error_StaticContext:
1136 case IMA_Error_Unrelated:
1137 DiagnoseInstanceReference(*this, SS, R);
1138 return ExprError();
1139 }
1140
1141 llvm_unreachable("unexpected instance member access kind");
1142 return ExprError();
1143}
1144
John McCall10eae182009-11-30 22:42:35 +00001145/// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
1146/// declaration name, generally during template instantiation.
1147/// There's a large number of things which don't need to be done along
1148/// this path.
John McCalle66edc12009-11-24 19:00:30 +00001149Sema::OwningExprResult
1150Sema::BuildQualifiedDeclarationNameExpr(const CXXScopeSpec &SS,
1151 DeclarationName Name,
1152 SourceLocation NameLoc) {
1153 DeclContext *DC;
1154 if (!(DC = computeDeclContext(SS, false)) ||
1155 DC->isDependentContext() ||
1156 RequireCompleteDeclContext(SS))
1157 return BuildDependentDeclRefExpr(SS, Name, NameLoc, 0);
1158
1159 LookupResult R(*this, Name, NameLoc, LookupOrdinaryName);
1160 LookupQualifiedName(R, DC);
1161
1162 if (R.isAmbiguous())
1163 return ExprError();
1164
1165 if (R.empty()) {
1166 Diag(NameLoc, diag::err_no_member) << Name << DC << SS.getRange();
1167 return ExprError();
1168 }
1169
1170 return BuildDeclarationNameExpr(SS, R, /*ADL*/ false);
1171}
1172
1173/// LookupInObjCMethod - The parser has read a name in, and Sema has
1174/// detected that we're currently inside an ObjC method. Perform some
1175/// additional lookup.
1176///
1177/// Ideally, most of this would be done by lookup, but there's
1178/// actually quite a lot of extra work involved.
1179///
1180/// Returns a null sentinel to indicate trivial success.
1181Sema::OwningExprResult
1182Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
1183 IdentifierInfo *II) {
1184 SourceLocation Loc = Lookup.getNameLoc();
1185
1186 // There are two cases to handle here. 1) scoped lookup could have failed,
1187 // in which case we should look for an ivar. 2) scoped lookup could have
1188 // found a decl, but that decl is outside the current instance method (i.e.
1189 // a global variable). In these two cases, we do a lookup for an ivar with
1190 // this name, if the lookup sucedes, we replace it our current decl.
1191
1192 // If we're in a class method, we don't normally want to look for
1193 // ivars. But if we don't find anything else, and there's an
1194 // ivar, that's an error.
1195 bool IsClassMethod = getCurMethodDecl()->isClassMethod();
1196
1197 bool LookForIvars;
1198 if (Lookup.empty())
1199 LookForIvars = true;
1200 else if (IsClassMethod)
1201 LookForIvars = false;
1202 else
1203 LookForIvars = (Lookup.isSingleResult() &&
1204 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
1205
1206 if (LookForIvars) {
1207 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
1208 ObjCInterfaceDecl *ClassDeclared;
1209 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
1210 // Diagnose using an ivar in a class method.
1211 if (IsClassMethod)
1212 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
1213 << IV->getDeclName());
1214
1215 // If we're referencing an invalid decl, just return this as a silent
1216 // error node. The error diagnostic was already emitted on the decl.
1217 if (IV->isInvalidDecl())
1218 return ExprError();
1219
1220 // Check if referencing a field with __attribute__((deprecated)).
1221 if (DiagnoseUseOfDecl(IV, Loc))
1222 return ExprError();
1223
1224 // Diagnose the use of an ivar outside of the declaring class.
1225 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
1226 ClassDeclared != IFace)
1227 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
1228
1229 // FIXME: This should use a new expr for a direct reference, don't
1230 // turn this into Self->ivar, just return a BareIVarExpr or something.
1231 IdentifierInfo &II = Context.Idents.get("self");
1232 UnqualifiedId SelfName;
1233 SelfName.setIdentifier(&II, SourceLocation());
1234 CXXScopeSpec SelfScopeSpec;
1235 OwningExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec,
1236 SelfName, false, false);
1237 MarkDeclarationReferenced(Loc, IV);
1238 return Owned(new (Context)
1239 ObjCIvarRefExpr(IV, IV->getType(), Loc,
1240 SelfExpr.takeAs<Expr>(), true, true));
1241 }
1242 } else if (getCurMethodDecl()->isInstanceMethod()) {
1243 // We should warn if a local variable hides an ivar.
1244 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
1245 ObjCInterfaceDecl *ClassDeclared;
1246 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
1247 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
1248 IFace == ClassDeclared)
1249 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
1250 }
1251 }
1252
1253 // Needed to implement property "super.method" notation.
1254 if (Lookup.empty() && II->isStr("super")) {
1255 QualType T;
1256
1257 if (getCurMethodDecl()->isInstanceMethod())
1258 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
1259 getCurMethodDecl()->getClassInterface()));
1260 else
1261 T = Context.getObjCClassType();
1262 return Owned(new (Context) ObjCSuperExpr(Loc, T));
1263 }
1264
1265 // Sentinel value saying that we didn't do anything special.
1266 return Owned((Expr*) 0);
Douglas Gregor3256d042009-06-30 15:47:41 +00001267}
John McCalld14a8642009-11-21 08:51:07 +00001268
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001269/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanian3f150832009-07-29 19:40:11 +00001270bool
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001271Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
1272 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
Mike Stump11289f42009-09-09 15:08:12 +00001273 if (CXXRecordDecl *RD =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001274 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
Mike Stump11289f42009-09-09 15:08:12 +00001275 QualType DestType =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001276 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +00001277 if (DestType->isDependentType() || From->getType()->isDependentType())
1278 return false;
1279 QualType FromRecordType = From->getType();
1280 QualType DestRecordType = DestType;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001281 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +00001282 DestType = Context.getPointerType(DestType);
1283 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001284 }
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +00001285 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
1286 CheckDerivedToBaseConversion(FromRecordType,
1287 DestRecordType,
1288 From->getSourceRange().getBegin(),
1289 From->getSourceRange()))
1290 return true;
Anders Carlssona076d142009-07-31 01:23:52 +00001291 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
1292 /*isLvalue=*/true);
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001293 }
Fariborz Jahanian3f150832009-07-29 19:40:11 +00001294 return false;
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00001295}
Douglas Gregor3256d042009-06-30 15:47:41 +00001296
Douglas Gregorf405d7e2009-08-31 23:41:50 +00001297/// \brief Build a MemberExpr AST node.
Mike Stump11289f42009-09-09 15:08:12 +00001298static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
Eli Friedman2cfcef62009-12-04 06:40:45 +00001299 const CXXScopeSpec &SS, ValueDecl *Member,
John McCalle66edc12009-11-24 19:00:30 +00001300 SourceLocation Loc, QualType Ty,
1301 const TemplateArgumentListInfo *TemplateArgs = 0) {
1302 NestedNameSpecifier *Qualifier = 0;
1303 SourceRange QualifierRange;
John McCall10eae182009-11-30 22:42:35 +00001304 if (SS.isSet()) {
1305 Qualifier = (NestedNameSpecifier *) SS.getScopeRep();
1306 QualifierRange = SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00001307 }
Mike Stump11289f42009-09-09 15:08:12 +00001308
John McCalle66edc12009-11-24 19:00:30 +00001309 return MemberExpr::Create(C, Base, isArrow, Qualifier, QualifierRange,
1310 Member, Loc, TemplateArgs, Ty);
Douglas Gregorc1905232009-08-26 22:36:53 +00001311}
1312
John McCall2d74de92009-12-01 22:10:20 +00001313/// Builds an implicit member access expression. The current context
1314/// is known to be an instance method, and the given unqualified lookup
1315/// set is known to contain only instance members, at least one of which
1316/// is from an appropriate type.
John McCallb53bbd42009-11-22 01:44:31 +00001317Sema::OwningExprResult
John McCall2d74de92009-12-01 22:10:20 +00001318Sema::BuildImplicitMemberExpr(const CXXScopeSpec &SS,
1319 LookupResult &R,
1320 const TemplateArgumentListInfo *TemplateArgs,
1321 bool IsKnownInstance) {
John McCalle66edc12009-11-24 19:00:30 +00001322 assert(!R.empty() && !R.isAmbiguous());
1323
John McCalld14a8642009-11-21 08:51:07 +00001324 SourceLocation Loc = R.getNameLoc();
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00001325
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001326 // We may have found a field within an anonymous union or struct
1327 // (C++ [class.union]).
Douglas Gregor6493d9c2009-10-22 07:08:30 +00001328 // FIXME: This needs to happen post-isImplicitMemberReference?
John McCalle66edc12009-11-24 19:00:30 +00001329 // FIXME: template-ids inside anonymous structs?
John McCall10eae182009-11-30 22:42:35 +00001330 if (FieldDecl *FD = R.getAsSingle<FieldDecl>())
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001331 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
John McCallb53bbd42009-11-22 01:44:31 +00001332 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001333
John McCall2d74de92009-12-01 22:10:20 +00001334 // If this is known to be an instance access, go ahead and build a
1335 // 'this' expression now.
1336 QualType ThisType = cast<CXXMethodDecl>(CurContext)->getThisType(Context);
1337 Expr *This = 0; // null signifies implicit access
1338 if (IsKnownInstance) {
1339 This = new (Context) CXXThisExpr(SourceLocation(), ThisType);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00001340 }
1341
John McCall2d74de92009-12-01 22:10:20 +00001342 return BuildMemberReferenceExpr(ExprArg(*this, This), ThisType,
1343 /*OpLoc*/ SourceLocation(),
1344 /*IsArrow*/ true,
1345 SS, R, TemplateArgs);
John McCalld14a8642009-11-21 08:51:07 +00001346}
1347
John McCalle66edc12009-11-24 19:00:30 +00001348bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
John McCallb53bbd42009-11-22 01:44:31 +00001349 const LookupResult &R,
1350 bool HasTrailingLParen) {
John McCalld14a8642009-11-21 08:51:07 +00001351 // Only when used directly as the postfix-expression of a call.
1352 if (!HasTrailingLParen)
1353 return false;
1354
1355 // Never if a scope specifier was provided.
John McCalle66edc12009-11-24 19:00:30 +00001356 if (SS.isSet())
John McCalld14a8642009-11-21 08:51:07 +00001357 return false;
1358
1359 // Only in C++ or ObjC++.
John McCallb53bbd42009-11-22 01:44:31 +00001360 if (!getLangOptions().CPlusPlus)
John McCalld14a8642009-11-21 08:51:07 +00001361 return false;
1362
1363 // Turn off ADL when we find certain kinds of declarations during
1364 // normal lookup:
1365 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
1366 NamedDecl *D = *I;
1367
1368 // C++0x [basic.lookup.argdep]p3:
1369 // -- a declaration of a class member
1370 // Since using decls preserve this property, we check this on the
1371 // original decl.
John McCall57500772009-12-16 12:17:52 +00001372 if (D->isCXXClassMember())
John McCalld14a8642009-11-21 08:51:07 +00001373 return false;
1374
1375 // C++0x [basic.lookup.argdep]p3:
1376 // -- a block-scope function declaration that is not a
1377 // using-declaration
1378 // NOTE: we also trigger this for function templates (in fact, we
1379 // don't check the decl type at all, since all other decl types
1380 // turn off ADL anyway).
1381 if (isa<UsingShadowDecl>(D))
1382 D = cast<UsingShadowDecl>(D)->getTargetDecl();
1383 else if (D->getDeclContext()->isFunctionOrMethod())
1384 return false;
1385
1386 // C++0x [basic.lookup.argdep]p3:
1387 // -- a declaration that is neither a function or a function
1388 // template
1389 // And also for builtin functions.
1390 if (isa<FunctionDecl>(D)) {
1391 FunctionDecl *FDecl = cast<FunctionDecl>(D);
1392
1393 // But also builtin functions.
1394 if (FDecl->getBuiltinID() && FDecl->isImplicit())
1395 return false;
1396 } else if (!isa<FunctionTemplateDecl>(D))
1397 return false;
1398 }
1399
1400 return true;
1401}
1402
1403
John McCalld14a8642009-11-21 08:51:07 +00001404/// Diagnoses obvious problems with the use of the given declaration
1405/// as an expression. This is only actually called for lookups that
1406/// were not overloaded, and it doesn't promise that the declaration
1407/// will in fact be used.
1408static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
1409 if (isa<TypedefDecl>(D)) {
1410 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
1411 return true;
1412 }
1413
1414 if (isa<ObjCInterfaceDecl>(D)) {
1415 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
1416 return true;
1417 }
1418
1419 if (isa<NamespaceDecl>(D)) {
1420 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
1421 return true;
1422 }
1423
1424 return false;
1425}
1426
1427Sema::OwningExprResult
John McCalle66edc12009-11-24 19:00:30 +00001428Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
John McCallb53bbd42009-11-22 01:44:31 +00001429 LookupResult &R,
1430 bool NeedsADL) {
John McCall3a60c872009-12-08 22:45:53 +00001431 // If this is a single, fully-resolved result and we don't need ADL,
1432 // just build an ordinary singleton decl ref.
1433 if (!NeedsADL && R.isSingleResult())
John McCallb53bbd42009-11-22 01:44:31 +00001434 return BuildDeclarationNameExpr(SS, R.getNameLoc(), R.getFoundDecl());
John McCalld14a8642009-11-21 08:51:07 +00001435
1436 // We only need to check the declaration if there's exactly one
1437 // result, because in the overloaded case the results can only be
1438 // functions and function templates.
John McCallb53bbd42009-11-22 01:44:31 +00001439 if (R.isSingleResult() &&
1440 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
John McCalld14a8642009-11-21 08:51:07 +00001441 return ExprError();
1442
John McCalle66edc12009-11-24 19:00:30 +00001443 bool Dependent
1444 = UnresolvedLookupExpr::ComputeDependence(R.begin(), R.end(), 0);
John McCalld14a8642009-11-21 08:51:07 +00001445 UnresolvedLookupExpr *ULE
John McCalle66edc12009-11-24 19:00:30 +00001446 = UnresolvedLookupExpr::Create(Context, Dependent,
1447 (NestedNameSpecifier*) SS.getScopeRep(),
1448 SS.getRange(),
John McCallb53bbd42009-11-22 01:44:31 +00001449 R.getLookupName(), R.getNameLoc(),
1450 NeedsADL, R.isOverloadedResult());
1451 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
1452 ULE->addDecl(*I);
John McCalld14a8642009-11-21 08:51:07 +00001453
1454 return Owned(ULE);
1455}
1456
1457
1458/// \brief Complete semantic analysis for a reference to the given declaration.
1459Sema::OwningExprResult
John McCalle66edc12009-11-24 19:00:30 +00001460Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
John McCalld14a8642009-11-21 08:51:07 +00001461 SourceLocation Loc, NamedDecl *D) {
1462 assert(D && "Cannot refer to a NULL declaration");
John McCall283b9012009-11-22 00:44:51 +00001463 assert(!isa<FunctionTemplateDecl>(D) &&
1464 "Cannot refer unambiguously to a function template");
John McCalld14a8642009-11-21 08:51:07 +00001465 DeclarationName Name = D->getDeclName();
1466
1467 if (CheckDeclInExpr(*this, Loc, D))
1468 return ExprError();
Steve Narofff1e53692007-03-23 22:27:02 +00001469
Douglas Gregore7488b92009-12-01 16:58:18 +00001470 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
1471 // Specifically diagnose references to class templates that are missing
1472 // a template argument list.
1473 Diag(Loc, diag::err_template_decl_ref)
1474 << Template << SS.getRange();
1475 Diag(Template->getLocation(), diag::note_template_decl_here);
1476 return ExprError();
1477 }
1478
1479 // Make sure that we're referring to a value.
1480 ValueDecl *VD = dyn_cast<ValueDecl>(D);
1481 if (!VD) {
1482 Diag(Loc, diag::err_ref_non_value)
1483 << D << SS.getRange();
John McCallb48971d2009-12-18 18:35:10 +00001484 Diag(D->getLocation(), diag::note_declared_at);
Douglas Gregore7488b92009-12-01 16:58:18 +00001485 return ExprError();
1486 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001487
Douglas Gregor171c45a2009-02-18 21:56:37 +00001488 // Check whether this declaration can be used. Note that we suppress
1489 // this check when we're going to perform argument-dependent lookup
1490 // on this function name, because this might not be the function
1491 // that overload resolution actually selects.
John McCalld14a8642009-11-21 08:51:07 +00001492 if (DiagnoseUseOfDecl(VD, Loc))
Douglas Gregor171c45a2009-02-18 21:56:37 +00001493 return ExprError();
1494
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001495 // Only create DeclRefExpr's for valid Decl's.
1496 if (VD->isInvalidDecl())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001497 return ExprError();
1498
Chris Lattner2a9d9892008-10-20 05:16:36 +00001499 // If the identifier reference is inside a block, and it refers to a value
1500 // that is outside the block, create a BlockDeclRefExpr instead of a
1501 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1502 // the block is formed.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001503 //
Chris Lattner2a9d9892008-10-20 05:16:36 +00001504 // We do not do this for things like enum constants, global variables, etc,
1505 // as they do not get snapshotted.
1506 //
1507 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001508 MarkDeclarationReferenced(Loc, VD);
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001509 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001510 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001511 if (VD->getAttr<BlocksAttr>())
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001512 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001513 // This is to record that a 'const' was actually synthesize and added.
1514 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001515 // Variable will be bound by-copy, make it const within the closure.
Mike Stump11289f42009-09-09 15:08:12 +00001516
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001517 ExprTy.addConst();
Mike Stump11289f42009-09-09 15:08:12 +00001518 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001519 constAdded));
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001520 }
1521 // If this reference is not in a block or if the referenced variable is
1522 // within the block, create a normal DeclRefExpr.
Douglas Gregor4619e432008-12-05 23:32:09 +00001523
John McCalle66edc12009-11-24 19:00:30 +00001524 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc, &SS);
Chris Lattner17ed4872006-11-20 04:58:19 +00001525}
Chris Lattnere168f762006-11-10 05:29:30 +00001526
Sebastian Redlffbcf962009-01-18 18:53:16 +00001527Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1528 tok::TokenKind Kind) {
Chris Lattner6307f192008-08-10 01:53:14 +00001529 PredefinedExpr::IdentType IT;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001530
Chris Lattnere168f762006-11-10 05:29:30 +00001531 switch (Kind) {
Chris Lattner317e6ba2008-01-12 18:39:25 +00001532 default: assert(0 && "Unknown simple primary expr!");
Chris Lattner6307f192008-08-10 01:53:14 +00001533 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1534 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1535 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Chris Lattnere168f762006-11-10 05:29:30 +00001536 }
Chris Lattner317e6ba2008-01-12 18:39:25 +00001537
Chris Lattnera81a0272008-01-12 08:14:25 +00001538 // Pre-defined identifiers are of type char[x], where x is the length of the
1539 // string.
Mike Stump11289f42009-09-09 15:08:12 +00001540
Anders Carlsson2fb08242009-09-08 18:24:21 +00001541 Decl *currentDecl = getCurFunctionOrMethodDecl();
1542 if (!currentDecl) {
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001543 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson2fb08242009-09-08 18:24:21 +00001544 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001545 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001546
Anders Carlsson0b209a82009-09-11 01:22:35 +00001547 QualType ResTy;
1548 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
1549 ResTy = Context.DependentTy;
1550 } else {
1551 unsigned Length =
1552 PredefinedExpr::ComputeName(Context, IT, currentDecl).length();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001553
Anders Carlsson0b209a82009-09-11 01:22:35 +00001554 llvm::APInt LengthI(32, Length + 1);
John McCall8ccfcb52009-09-24 19:53:00 +00001555 ResTy = Context.CharTy.withConst();
Anders Carlsson0b209a82009-09-11 01:22:35 +00001556 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
1557 }
Steve Narofff6009ed2009-01-21 00:14:39 +00001558 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Chris Lattnere168f762006-11-10 05:29:30 +00001559}
1560
Sebastian Redlffbcf962009-01-18 18:53:16 +00001561Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner23b7eb62007-06-15 23:05:46 +00001562 llvm::SmallString<16> CharBuffer;
Steve Naroffae4143e2007-04-26 20:39:23 +00001563 CharBuffer.resize(Tok.getLength());
1564 const char *ThisTokBegin = &CharBuffer[0];
1565 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001566
Steve Naroffae4143e2007-04-26 20:39:23 +00001567 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1568 Tok.getLocation(), PP);
1569 if (Literal.hadError())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001570 return ExprError();
Chris Lattneref24b382008-03-01 08:32:21 +00001571
1572 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1573
Sebastian Redl20614a72009-01-20 22:23:13 +00001574 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1575 Literal.isWide(),
1576 type, Tok.getLocation()));
Steve Naroffae4143e2007-04-26 20:39:23 +00001577}
1578
Sebastian Redlffbcf962009-01-18 18:53:16 +00001579Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1580 // Fast path for a single digit (which is quite common). A single digit
Steve Narofff2fb89e2007-03-13 20:29:44 +00001581 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1582 if (Tok.getLength() == 1) {
Chris Lattner9240b3e2009-01-26 22:36:52 +00001583 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattnerc4c18192009-01-16 07:10:29 +00001584 unsigned IntSize = Context.Target.getIntWidth();
Steve Narofff6009ed2009-01-21 00:14:39 +00001585 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff5faaef72009-01-20 19:53:53 +00001586 Context.IntTy, Tok.getLocation()));
Steve Narofff2fb89e2007-03-13 20:29:44 +00001587 }
Ted Kremeneke9814182009-01-13 23:19:12 +00001588
Chris Lattner23b7eb62007-06-15 23:05:46 +00001589 llvm::SmallString<512> IntegerBuffer;
Chris Lattnera1cf5f92008-09-30 20:53:45 +00001590 // Add padding so that NumericLiteralParser can overread by one character.
1591 IntegerBuffer.resize(Tok.getLength()+1);
Steve Naroff8160ea22007-03-06 01:09:46 +00001592 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlffbcf962009-01-18 18:53:16 +00001593
Chris Lattner67ca9252007-05-21 01:08:44 +00001594 // Get the spelling of the token, which eliminates trigraphs, etc.
Steve Naroff8160ea22007-03-06 01:09:46 +00001595 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001596
Mike Stump11289f42009-09-09 15:08:12 +00001597 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Steve Naroff451d8f162007-03-12 23:22:38 +00001598 Tok.getLocation(), PP);
Steve Narofff2fb89e2007-03-13 20:29:44 +00001599 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +00001600 return ExprError();
1601
Chris Lattner1c20a172007-08-26 03:42:43 +00001602 Expr *Res;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001603
Chris Lattner1c20a172007-08-26 03:42:43 +00001604 if (Literal.isFloatingLiteral()) {
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001605 QualType Ty;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001606 if (Literal.isFloat)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001607 Ty = Context.FloatTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001608 else if (!Literal.isLong)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001609 Ty = Context.DoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001610 else
Chris Lattner7570e9c2008-03-08 08:52:55 +00001611 Ty = Context.LongDoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001612
1613 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1614
Ted Kremenek3a2c9502007-11-29 00:56:49 +00001615 // isExact will be set by GetFloatValue().
1616 bool isExact = false;
Chris Lattnere4edb8e2009-06-29 17:34:55 +00001617 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1618 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlffbcf962009-01-18 18:53:16 +00001619
Chris Lattner1c20a172007-08-26 03:42:43 +00001620 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlffbcf962009-01-18 18:53:16 +00001621 return ExprError();
Chris Lattner1c20a172007-08-26 03:42:43 +00001622 } else {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001623 QualType Ty;
Chris Lattner67ca9252007-05-21 01:08:44 +00001624
Neil Boothac582c52007-08-29 22:00:19 +00001625 // long long is a C99 feature.
1626 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth4a1ee052007-08-29 22:13:52 +00001627 Literal.isLongLong)
Neil Boothac582c52007-08-29 22:00:19 +00001628 Diag(Tok.getLocation(), diag::ext_longlong);
1629
Chris Lattner67ca9252007-05-21 01:08:44 +00001630 // Get the value in the widest-possible width.
Chris Lattner37e05872008-03-05 18:54:05 +00001631 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001632
Chris Lattner67ca9252007-05-21 01:08:44 +00001633 if (Literal.GetIntegerValue(ResultVal)) {
1634 // If this value didn't fit into uintmax_t, warn and force to ull.
1635 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001636 Ty = Context.UnsignedLongLongTy;
1637 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner37e05872008-03-05 18:54:05 +00001638 "long long is not intmax_t?");
Steve Naroff09ef4742007-03-09 23:16:33 +00001639 } else {
Chris Lattner67ca9252007-05-21 01:08:44 +00001640 // If this value fits into a ULL, try to figure out what else it fits into
1641 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlffbcf962009-01-18 18:53:16 +00001642
Chris Lattner67ca9252007-05-21 01:08:44 +00001643 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1644 // be an unsigned int.
1645 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1646
1647 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner55258cf2008-05-09 05:59:00 +00001648 unsigned Width = 0;
Chris Lattner7b939cf2007-08-23 21:58:08 +00001649 if (!Literal.isLong && !Literal.isLongLong) {
1650 // Are int/unsigned possibilities?
Chris Lattner55258cf2008-05-09 05:59:00 +00001651 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001652
Chris Lattner67ca9252007-05-21 01:08:44 +00001653 // Does it fit in a unsigned int?
1654 if (ResultVal.isIntN(IntSize)) {
1655 // Does it fit in a signed int?
1656 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001657 Ty = Context.IntTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001658 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001659 Ty = Context.UnsignedIntTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001660 Width = IntSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001661 }
Chris Lattner67ca9252007-05-21 01:08:44 +00001662 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001663
Chris Lattner67ca9252007-05-21 01:08:44 +00001664 // Are long/unsigned long possibilities?
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001665 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001666 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001667
Chris Lattner67ca9252007-05-21 01:08:44 +00001668 // Does it fit in a unsigned long?
1669 if (ResultVal.isIntN(LongSize)) {
1670 // Does it fit in a signed long?
1671 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001672 Ty = Context.LongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001673 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001674 Ty = Context.UnsignedLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001675 Width = LongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001676 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001677 }
1678
Chris Lattner67ca9252007-05-21 01:08:44 +00001679 // Finally, check long long if needed.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001680 if (Ty.isNull()) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001681 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001682
Chris Lattner67ca9252007-05-21 01:08:44 +00001683 // Does it fit in a unsigned long long?
1684 if (ResultVal.isIntN(LongLongSize)) {
1685 // Does it fit in a signed long long?
1686 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001687 Ty = Context.LongLongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001688 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001689 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001690 Width = LongLongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001691 }
1692 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001693
Chris Lattner67ca9252007-05-21 01:08:44 +00001694 // If we still couldn't decide a type, we probably have something that
1695 // does not fit in a signed long long, but has no U suffix.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001696 if (Ty.isNull()) {
Chris Lattner67ca9252007-05-21 01:08:44 +00001697 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001698 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001699 Width = Context.Target.getLongLongWidth();
Chris Lattner67ca9252007-05-21 01:08:44 +00001700 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001701
Chris Lattner55258cf2008-05-09 05:59:00 +00001702 if (ResultVal.getBitWidth() != Width)
1703 ResultVal.trunc(Width);
Steve Naroff09ef4742007-03-09 23:16:33 +00001704 }
Sebastian Redl20614a72009-01-20 22:23:13 +00001705 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Steve Naroff09ef4742007-03-09 23:16:33 +00001706 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001707
Chris Lattner1c20a172007-08-26 03:42:43 +00001708 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1709 if (Literal.isImaginary)
Mike Stump11289f42009-09-09 15:08:12 +00001710 Res = new (Context) ImaginaryLiteral(Res,
Steve Narofff6009ed2009-01-21 00:14:39 +00001711 Context.getComplexType(Res->getType()));
Sebastian Redlffbcf962009-01-18 18:53:16 +00001712
1713 return Owned(Res);
Chris Lattnere168f762006-11-10 05:29:30 +00001714}
1715
Sebastian Redlffbcf962009-01-18 18:53:16 +00001716Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1717 SourceLocation R, ExprArg Val) {
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001718 Expr *E = Val.takeAs<Expr>();
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001719 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Narofff6009ed2009-01-21 00:14:39 +00001720 return Owned(new (Context) ParenExpr(L, R, E));
Chris Lattnere168f762006-11-10 05:29:30 +00001721}
1722
Steve Naroff71b59a92007-06-04 22:22:31 +00001723/// The UsualUnaryConversions() function is *not* called by this routine.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00001724/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001725bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl6f282892008-11-11 17:56:53 +00001726 SourceLocation OpLoc,
1727 const SourceRange &ExprRange,
1728 bool isSizeof) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001729 if (exprType->isDependentType())
1730 return false;
1731
Sebastian Redl22e2e5c2009-11-23 17:18:46 +00001732 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
1733 // the result is the size of the referenced type."
1734 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
1735 // result shall be the alignment of the referenced type."
1736 if (const ReferenceType *Ref = exprType->getAs<ReferenceType>())
1737 exprType = Ref->getPointeeType();
1738
Steve Naroff043d45d2007-05-15 02:32:35 +00001739 // C99 6.5.3.4p1:
John McCall4c98fd82009-11-04 07:28:41 +00001740 if (exprType->isFunctionType()) {
Chris Lattner62975a72009-04-24 00:30:45 +00001741 // alignof(function) is allowed as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001742 if (isSizeof)
1743 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1744 return false;
1745 }
Mike Stump11289f42009-09-09 15:08:12 +00001746
Chris Lattner62975a72009-04-24 00:30:45 +00001747 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001748 if (exprType->isVoidType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001749 Diag(OpLoc, diag::ext_sizeof_void_type)
1750 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattnerb1355b12009-01-24 19:46:37 +00001751 return false;
1752 }
Mike Stump11289f42009-09-09 15:08:12 +00001753
Chris Lattner62975a72009-04-24 00:30:45 +00001754 if (RequireCompleteType(OpLoc, exprType,
Douglas Gregor906db8a2009-12-15 16:44:32 +00001755 PDiag(diag::err_sizeof_alignof_incomplete_type)
1756 << int(!isSizeof) << ExprRange))
Chris Lattner62975a72009-04-24 00:30:45 +00001757 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001758
Chris Lattner62975a72009-04-24 00:30:45 +00001759 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanian1dcb3222009-04-24 17:34:33 +00001760 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner62975a72009-04-24 00:30:45 +00001761 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattnercd2a8c52009-04-24 22:30:50 +00001762 << exprType << isSizeof << ExprRange;
1763 return true;
Chris Lattner37920f52009-04-21 19:55:16 +00001764 }
Mike Stump11289f42009-09-09 15:08:12 +00001765
Chris Lattner62975a72009-04-24 00:30:45 +00001766 return false;
Steve Naroff043d45d2007-05-15 02:32:35 +00001767}
1768
Chris Lattner8dff0172009-01-24 20:17:12 +00001769bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1770 const SourceRange &ExprRange) {
1771 E = E->IgnoreParens();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001772
Mike Stump11289f42009-09-09 15:08:12 +00001773 // alignof decl is always ok.
Chris Lattner8dff0172009-01-24 20:17:12 +00001774 if (isa<DeclRefExpr>(E))
1775 return false;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001776
1777 // Cannot know anything else if the expression is dependent.
1778 if (E->isTypeDependent())
1779 return false;
1780
Douglas Gregor71235ec2009-05-02 02:18:30 +00001781 if (E->getBitField()) {
1782 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1783 return true;
Chris Lattner8dff0172009-01-24 20:17:12 +00001784 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00001785
1786 // Alignment of a field access is always okay, so long as it isn't a
1787 // bit-field.
1788 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump212005c2009-07-22 18:58:19 +00001789 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor71235ec2009-05-02 02:18:30 +00001790 return false;
1791
Chris Lattner8dff0172009-01-24 20:17:12 +00001792 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1793}
1794
Douglas Gregor0950e412009-03-13 21:01:28 +00001795/// \brief Build a sizeof or alignof expression given a type operand.
Mike Stump11289f42009-09-09 15:08:12 +00001796Action::OwningExprResult
John McCallbcd03502009-12-07 02:54:59 +00001797Sema::CreateSizeOfAlignOfExpr(TypeSourceInfo *TInfo,
John McCall4c98fd82009-11-04 07:28:41 +00001798 SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001799 bool isSizeOf, SourceRange R) {
John McCallbcd03502009-12-07 02:54:59 +00001800 if (!TInfo)
Douglas Gregor0950e412009-03-13 21:01:28 +00001801 return ExprError();
1802
John McCallbcd03502009-12-07 02:54:59 +00001803 QualType T = TInfo->getType();
John McCall4c98fd82009-11-04 07:28:41 +00001804
Douglas Gregor0950e412009-03-13 21:01:28 +00001805 if (!T->isDependentType() &&
1806 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1807 return ExprError();
1808
1809 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
John McCallbcd03502009-12-07 02:54:59 +00001810 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, TInfo,
Douglas Gregor0950e412009-03-13 21:01:28 +00001811 Context.getSizeType(), OpLoc,
1812 R.getEnd()));
1813}
1814
1815/// \brief Build a sizeof or alignof expression given an expression
1816/// operand.
Mike Stump11289f42009-09-09 15:08:12 +00001817Action::OwningExprResult
1818Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001819 bool isSizeOf, SourceRange R) {
1820 // Verify that the operand is valid.
1821 bool isInvalid = false;
1822 if (E->isTypeDependent()) {
1823 // Delay type-checking for type-dependent expressions.
1824 } else if (!isSizeOf) {
1825 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor71235ec2009-05-02 02:18:30 +00001826 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregor0950e412009-03-13 21:01:28 +00001827 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1828 isInvalid = true;
1829 } else {
1830 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1831 }
1832
1833 if (isInvalid)
1834 return ExprError();
1835
1836 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1837 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1838 Context.getSizeType(), OpLoc,
1839 R.getEnd()));
1840}
1841
Sebastian Redl6f282892008-11-11 17:56:53 +00001842/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1843/// the same for @c alignof and @c __alignof
1844/// Note that the ArgRange is invalid if isType is false.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001845Action::OwningExprResult
Sebastian Redl6f282892008-11-11 17:56:53 +00001846Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1847 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner0d8b1a12006-11-20 04:34:45 +00001848 // If error parsing type, ignore.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001849 if (TyOrEx == 0) return ExprError();
Steve Naroff043d45d2007-05-15 02:32:35 +00001850
Sebastian Redl6f282892008-11-11 17:56:53 +00001851 if (isType) {
John McCallbcd03502009-12-07 02:54:59 +00001852 TypeSourceInfo *TInfo;
1853 (void) GetTypeFromParser(TyOrEx, &TInfo);
1854 return CreateSizeOfAlignOfExpr(TInfo, OpLoc, isSizeof, ArgRange);
Mike Stump11289f42009-09-09 15:08:12 +00001855 }
Sebastian Redl6f282892008-11-11 17:56:53 +00001856
Douglas Gregor0950e412009-03-13 21:01:28 +00001857 Expr *ArgEx = (Expr *)TyOrEx;
1858 Action::OwningExprResult Result
1859 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1860
1861 if (Result.isInvalid())
1862 DeleteExpr(ArgEx);
1863
1864 return move(Result);
Chris Lattnere168f762006-11-10 05:29:30 +00001865}
1866
Chris Lattner709322b2009-02-17 08:12:06 +00001867QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001868 if (V->isTypeDependent())
1869 return Context.DependentTy;
Mike Stump11289f42009-09-09 15:08:12 +00001870
Chris Lattnere267f5d2007-08-26 05:39:26 +00001871 // These operators return the element type of a complex type.
John McCall9dd450b2009-09-21 23:43:11 +00001872 if (const ComplexType *CT = V->getType()->getAs<ComplexType>())
Chris Lattner30b5dd02007-08-24 21:16:53 +00001873 return CT->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00001874
Chris Lattnere267f5d2007-08-26 05:39:26 +00001875 // Otherwise they pass through real integer and floating point types here.
1876 if (V->getType()->isArithmeticType())
1877 return V->getType();
Mike Stump11289f42009-09-09 15:08:12 +00001878
Chris Lattnere267f5d2007-08-26 05:39:26 +00001879 // Reject anything else.
Chris Lattner709322b2009-02-17 08:12:06 +00001880 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1881 << (isReal ? "__real" : "__imag");
Chris Lattnere267f5d2007-08-26 05:39:26 +00001882 return QualType();
Chris Lattner30b5dd02007-08-24 21:16:53 +00001883}
1884
1885
Chris Lattnere168f762006-11-10 05:29:30 +00001886
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001887Action::OwningExprResult
1888Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1889 tok::TokenKind Kind, ExprArg Input) {
Chris Lattnere168f762006-11-10 05:29:30 +00001890 UnaryOperator::Opcode Opc;
1891 switch (Kind) {
1892 default: assert(0 && "Unknown unary op!");
1893 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1894 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1895 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001896
Eli Friedmancfdd40c2009-11-18 03:38:04 +00001897 return BuildUnaryOp(S, OpLoc, Opc, move(Input));
Chris Lattnere168f762006-11-10 05:29:30 +00001898}
1899
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001900Action::OwningExprResult
1901Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1902 ExprArg Idx, SourceLocation RLoc) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00001903 // Since this might be a postfix expression, get rid of ParenListExprs.
1904 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1905
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001906 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1907 *RHSExp = static_cast<Expr*>(Idx.get());
Mike Stump11289f42009-09-09 15:08:12 +00001908
Douglas Gregor40412ac2008-11-19 17:17:41 +00001909 if (getLangOptions().CPlusPlus &&
Douglas Gregor7a77a6b2009-05-19 00:01:19 +00001910 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1911 Base.release();
1912 Idx.release();
1913 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1914 Context.DependentTy, RLoc));
1915 }
1916
Mike Stump11289f42009-09-09 15:08:12 +00001917 if (getLangOptions().CPlusPlus &&
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001918 (LHSExp->getType()->isRecordType() ||
Eli Friedman254a1a22008-12-15 22:34:21 +00001919 LHSExp->getType()->isEnumeralType() ||
1920 RHSExp->getType()->isRecordType() ||
1921 RHSExp->getType()->isEnumeralType())) {
Sebastian Redladba46e2009-10-29 20:17:01 +00001922 return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, move(Base),move(Idx));
Douglas Gregor40412ac2008-11-19 17:17:41 +00001923 }
1924
Sebastian Redladba46e2009-10-29 20:17:01 +00001925 return CreateBuiltinArraySubscriptExpr(move(Base), LLoc, move(Idx), RLoc);
1926}
1927
1928
1929Action::OwningExprResult
1930Sema::CreateBuiltinArraySubscriptExpr(ExprArg Base, SourceLocation LLoc,
1931 ExprArg Idx, SourceLocation RLoc) {
1932 Expr *LHSExp = static_cast<Expr*>(Base.get());
1933 Expr *RHSExp = static_cast<Expr*>(Idx.get());
1934
Chris Lattner36d572b2007-07-16 00:14:47 +00001935 // Perform default conversions.
1936 DefaultFunctionArrayConversion(LHSExp);
1937 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001938
Chris Lattner36d572b2007-07-16 00:14:47 +00001939 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Steve Narofff1e53692007-03-23 22:27:02 +00001940
Steve Naroffc1aadb12007-03-28 21:49:40 +00001941 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattnerf17bd422007-08-30 17:45:32 +00001942 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump4e1f26a2009-02-19 03:04:26 +00001943 // in the subscript position. As a result, we need to derive the array base
Steve Narofff1e53692007-03-23 22:27:02 +00001944 // and index from the expression types.
Chris Lattner36d572b2007-07-16 00:14:47 +00001945 Expr *BaseExpr, *IndexExpr;
1946 QualType ResultType;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001947 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1948 BaseExpr = LHSExp;
1949 IndexExpr = RHSExp;
1950 ResultType = Context.DependentTy;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001951 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner36d572b2007-07-16 00:14:47 +00001952 BaseExpr = LHSExp;
1953 IndexExpr = RHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001954 ResultType = PTy->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001955 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattneraee0cfd2007-07-16 00:23:25 +00001956 // Handle the uncommon case of "123[Ptr]".
Chris Lattner36d572b2007-07-16 00:14:47 +00001957 BaseExpr = RHSExp;
1958 IndexExpr = LHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001959 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001960 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001961 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001962 BaseExpr = LHSExp;
1963 IndexExpr = RHSExp;
1964 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001965 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001966 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001967 // Handle the uncommon case of "123[Ptr]".
1968 BaseExpr = RHSExp;
1969 IndexExpr = LHSExp;
1970 ResultType = PTy->getPointeeType();
John McCall9dd450b2009-09-21 23:43:11 +00001971 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattner41977962007-07-31 19:29:30 +00001972 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner36d572b2007-07-16 00:14:47 +00001973 IndexExpr = RHSExp;
Nate Begemanc1bf0612009-01-18 00:45:31 +00001974
Chris Lattner36d572b2007-07-16 00:14:47 +00001975 // FIXME: need to deal with const...
1976 ResultType = VTy->getElementType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001977 } else if (LHSTy->isArrayType()) {
1978 // If we see an array that wasn't promoted by
1979 // DefaultFunctionArrayConversion, it must be an array that
1980 // wasn't promoted because of the C90 rule that doesn't
1981 // allow promoting non-lvalue arrays. Warn, then
1982 // force the promotion here.
1983 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1984 LHSExp->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00001985 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
1986 CastExpr::CK_ArrayToPointerDecay);
Eli Friedmanab2784f2009-04-25 23:46:54 +00001987 LHSTy = LHSExp->getType();
1988
1989 BaseExpr = LHSExp;
1990 IndexExpr = RHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001991 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001992 } else if (RHSTy->isArrayType()) {
1993 // Same as previous, except for 123[f().a] case
1994 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1995 RHSExp->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00001996 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
1997 CastExpr::CK_ArrayToPointerDecay);
Eli Friedmanab2784f2009-04-25 23:46:54 +00001998 RHSTy = RHSExp->getType();
1999
2000 BaseExpr = RHSExp;
2001 IndexExpr = LHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002002 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroffb3096442007-06-09 03:47:53 +00002003 } else {
Chris Lattner003af242009-04-25 22:50:55 +00002004 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
2005 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002006 }
Steve Naroffc1aadb12007-03-28 21:49:40 +00002007 // C99 6.5.2.1p1
Nate Begeman5ec4b312009-08-10 23:49:36 +00002008 if (!(IndexExpr->getType()->isIntegerType() &&
2009 IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent())
Chris Lattner003af242009-04-25 22:50:55 +00002010 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
2011 << IndexExpr->getSourceRange());
Steve Naroffb29cdd52007-07-10 18:23:31 +00002012
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00002013 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinigb7608d72009-09-14 20:14:57 +00002014 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
2015 && !IndexExpr->isTypeDependent())
Sam Weinig914244e2009-09-14 01:58:58 +00002016 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
2017
Douglas Gregorac1fb652009-03-24 19:52:54 +00002018 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump11289f42009-09-09 15:08:12 +00002019 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
2020 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregorac1fb652009-03-24 19:52:54 +00002021 // incomplete types are not object types.
2022 if (ResultType->isFunctionType()) {
2023 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
2024 << ResultType << BaseExpr->getSourceRange();
2025 return ExprError();
2026 }
Mike Stump11289f42009-09-09 15:08:12 +00002027
Douglas Gregorac1fb652009-03-24 19:52:54 +00002028 if (!ResultType->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00002029 RequireCompleteType(LLoc, ResultType,
Anders Carlssond624e162009-08-26 23:45:07 +00002030 PDiag(diag::err_subscript_incomplete_type)
2031 << BaseExpr->getSourceRange()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00002032 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002033
Chris Lattner62975a72009-04-24 00:30:45 +00002034 // Diagnose bad cases where we step over interface counts.
2035 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
2036 Diag(LLoc, diag::err_subscript_nonfragile_interface)
2037 << ResultType << BaseExpr->getSourceRange();
2038 return ExprError();
2039 }
Mike Stump11289f42009-09-09 15:08:12 +00002040
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002041 Base.release();
2042 Idx.release();
Mike Stump4e1f26a2009-02-19 03:04:26 +00002043 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Narofff6009ed2009-01-21 00:14:39 +00002044 ResultType, RLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00002045}
2046
Steve Narofff8fd09e2007-07-27 22:15:19 +00002047QualType Sema::
Nate Begemance4d7fc2008-04-18 23:10:10 +00002048CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002049 const IdentifierInfo *CompName,
Anders Carlssonf571c112009-08-26 18:25:21 +00002050 SourceLocation CompLoc) {
Daniel Dunbarc0429402009-10-18 02:09:38 +00002051 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
2052 // see FIXME there.
2053 //
2054 // FIXME: This logic can be greatly simplified by splitting it along
2055 // halving/not halving and reworking the component checking.
John McCall9dd450b2009-09-21 23:43:11 +00002056 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begemanf322eab2008-05-09 06:41:27 +00002057
Steve Narofff8fd09e2007-07-27 22:15:19 +00002058 // The vector accessor can't exceed the number of elements.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00002059 const char *compStr = CompName->getNameStart();
Nate Begemanbb70bf62009-01-18 01:47:54 +00002060
Mike Stump4e1f26a2009-02-19 03:04:26 +00002061 // This flag determines whether or not the component is one of the four
Nate Begemanbb70bf62009-01-18 01:47:54 +00002062 // special names that indicate a subset of exactly half the elements are
2063 // to be selected.
2064 bool HalvingSwizzle = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00002065
Nate Begemanbb70bf62009-01-18 01:47:54 +00002066 // This flag determines whether or not CompName has an 's' char prefix,
2067 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman0359e122009-06-25 21:06:09 +00002068 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begemanf322eab2008-05-09 06:41:27 +00002069
2070 // Check that we've found one of the special components, or that the component
2071 // names must come from the same set.
Mike Stump4e1f26a2009-02-19 03:04:26 +00002072 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begemanbb70bf62009-01-18 01:47:54 +00002073 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
2074 HalvingSwizzle = true;
Nate Begemanf322eab2008-05-09 06:41:27 +00002075 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00002076 do
2077 compStr++;
2078 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begemanbb70bf62009-01-18 01:47:54 +00002079 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00002080 do
2081 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00002082 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner7e152db2007-08-02 22:33:49 +00002083 }
Nate Begemanbb70bf62009-01-18 01:47:54 +00002084
Mike Stump4e1f26a2009-02-19 03:04:26 +00002085 if (!HalvingSwizzle && *compStr) {
Steve Narofff8fd09e2007-07-27 22:15:19 +00002086 // We didn't get to the end of the string. This means the component names
2087 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattner3b054132008-11-19 05:08:23 +00002088 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
2089 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Narofff8fd09e2007-07-27 22:15:19 +00002090 return QualType();
2091 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00002092
Nate Begemanbb70bf62009-01-18 01:47:54 +00002093 // Ensure no component accessor exceeds the width of the vector type it
2094 // operates on.
2095 if (!HalvingSwizzle) {
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00002096 compStr = CompName->getNameStart();
Nate Begemanbb70bf62009-01-18 01:47:54 +00002097
2098 if (HexSwizzle)
Steve Narofff8fd09e2007-07-27 22:15:19 +00002099 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00002100
2101 while (*compStr) {
2102 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
2103 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
2104 << baseType << SourceRange(CompLoc);
2105 return QualType();
2106 }
2107 }
Steve Narofff8fd09e2007-07-27 22:15:19 +00002108 }
Nate Begemanf322eab2008-05-09 06:41:27 +00002109
Steve Narofff8fd09e2007-07-27 22:15:19 +00002110 // The component accessor looks fine - now we need to compute the actual type.
Mike Stump4e1f26a2009-02-19 03:04:26 +00002111 // The vector type is implied by the component accessor. For example,
Steve Narofff8fd09e2007-07-27 22:15:19 +00002112 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begemanbb70bf62009-01-18 01:47:54 +00002113 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begemanf322eab2008-05-09 06:41:27 +00002114 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begemanac8183a2009-12-15 18:13:04 +00002115 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
Anders Carlssonf571c112009-08-26 18:25:21 +00002116 : CompName->getLength();
Nate Begemanbb70bf62009-01-18 01:47:54 +00002117 if (HexSwizzle)
2118 CompSize--;
2119
Steve Narofff8fd09e2007-07-27 22:15:19 +00002120 if (CompSize == 1)
2121 return vecType->getElementType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00002122
Nate Begemance4d7fc2008-04-18 23:10:10 +00002123 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stump4e1f26a2009-02-19 03:04:26 +00002124 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begemance4d7fc2008-04-18 23:10:10 +00002125 // diagostics look bad. We want extended vector types to appear built-in.
2126 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
2127 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
2128 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffddf5a1d2007-07-29 16:33:31 +00002129 }
2130 return VT; // should never get here (a typedef type should always be found).
Steve Narofff8fd09e2007-07-27 22:15:19 +00002131}
2132
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002133static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlssonf571c112009-08-26 18:25:21 +00002134 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002135 const Selector &Sel,
2136 ASTContext &Context) {
Mike Stump11289f42009-09-09 15:08:12 +00002137
Anders Carlssonf571c112009-08-26 18:25:21 +00002138 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002139 return PD;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002140 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002141 return OMD;
Mike Stump11289f42009-09-09 15:08:12 +00002142
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002143 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
2144 E = PDecl->protocol_end(); I != E; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +00002145 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002146 Context))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002147 return D;
2148 }
2149 return 0;
2150}
2151
Steve Narofffb4330f2009-06-17 22:40:22 +00002152static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Anders Carlssonf571c112009-08-26 18:25:21 +00002153 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002154 const Selector &Sel,
2155 ASTContext &Context) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002156 // Check protocols on qualified interfaces.
2157 Decl *GDecl = 0;
Steve Narofffb4330f2009-06-17 22:40:22 +00002158 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002159 E = QIdTy->qual_end(); I != E; ++I) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002160 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002161 GDecl = PD;
2162 break;
2163 }
2164 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002165 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002166 GDecl = OMD;
2167 break;
2168 }
2169 }
2170 if (!GDecl) {
Steve Narofffb4330f2009-06-17 22:40:22 +00002171 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002172 E = QIdTy->qual_end(); I != E; ++I) {
2173 // Search in the protocol-qualifier list of current protocol.
Douglas Gregorbcced4e2009-04-09 21:40:53 +00002174 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00002175 if (GDecl)
2176 return GDecl;
2177 }
2178 }
2179 return GDecl;
2180}
Chris Lattner4bf74fd2009-02-15 22:43:40 +00002181
John McCall10eae182009-11-30 22:42:35 +00002182Sema::OwningExprResult
John McCall2d74de92009-12-01 22:10:20 +00002183Sema::ActOnDependentMemberExpr(ExprArg Base, QualType BaseType,
2184 bool IsArrow, SourceLocation OpLoc,
John McCall10eae182009-11-30 22:42:35 +00002185 const CXXScopeSpec &SS,
2186 NamedDecl *FirstQualifierInScope,
2187 DeclarationName Name, SourceLocation NameLoc,
2188 const TemplateArgumentListInfo *TemplateArgs) {
2189 Expr *BaseExpr = Base.takeAs<Expr>();
2190
2191 // Even in dependent contexts, try to diagnose base expressions with
2192 // obviously wrong types, e.g.:
2193 //
2194 // T* t;
2195 // t.f;
2196 //
2197 // In Obj-C++, however, the above expression is valid, since it could be
2198 // accessing the 'f' property if T is an Obj-C interface. The extra check
2199 // allows this, while still reporting an error if T is a struct pointer.
2200 if (!IsArrow) {
John McCall2d74de92009-12-01 22:10:20 +00002201 const PointerType *PT = BaseType->getAs<PointerType>();
John McCall10eae182009-11-30 22:42:35 +00002202 if (PT && (!getLangOptions().ObjC1 ||
2203 PT->getPointeeType()->isRecordType())) {
John McCall2d74de92009-12-01 22:10:20 +00002204 assert(BaseExpr && "cannot happen with implicit member accesses");
John McCall10eae182009-11-30 22:42:35 +00002205 Diag(NameLoc, diag::err_typecheck_member_reference_struct_union)
John McCall2d74de92009-12-01 22:10:20 +00002206 << BaseType << BaseExpr->getSourceRange();
John McCall10eae182009-11-30 22:42:35 +00002207 return ExprError();
2208 }
2209 }
2210
John McCall2d74de92009-12-01 22:10:20 +00002211 assert(BaseType->isDependentType());
John McCall10eae182009-11-30 22:42:35 +00002212
2213 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2214 // must have pointer type, and the accessed type is the pointee.
John McCall2d74de92009-12-01 22:10:20 +00002215 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
John McCall10eae182009-11-30 22:42:35 +00002216 IsArrow, OpLoc,
2217 static_cast<NestedNameSpecifier*>(SS.getScopeRep()),
2218 SS.getRange(),
2219 FirstQualifierInScope,
2220 Name, NameLoc,
2221 TemplateArgs));
2222}
2223
2224/// We know that the given qualified member reference points only to
2225/// declarations which do not belong to the static type of the base
2226/// expression. Diagnose the problem.
2227static void DiagnoseQualifiedMemberReference(Sema &SemaRef,
2228 Expr *BaseExpr,
2229 QualType BaseType,
John McCallcd4b4772009-12-02 03:53:29 +00002230 const CXXScopeSpec &SS,
John McCall10eae182009-11-30 22:42:35 +00002231 const LookupResult &R) {
John McCallcd4b4772009-12-02 03:53:29 +00002232 // If this is an implicit member access, use a different set of
2233 // diagnostics.
2234 if (!BaseExpr)
2235 return DiagnoseInstanceReference(SemaRef, SS, R);
John McCall10eae182009-11-30 22:42:35 +00002236
2237 // FIXME: this is an exceedingly lame diagnostic for some of the more
2238 // complicated cases here.
John McCallcd4b4772009-12-02 03:53:29 +00002239 DeclContext *DC = R.getRepresentativeDecl()->getDeclContext();
John McCall10eae182009-11-30 22:42:35 +00002240 SemaRef.Diag(R.getNameLoc(), diag::err_not_direct_base_or_virtual)
John McCallcd4b4772009-12-02 03:53:29 +00002241 << SS.getRange() << DC << BaseType;
John McCall10eae182009-11-30 22:42:35 +00002242}
2243
2244// Check whether the declarations we found through a nested-name
2245// specifier in a member expression are actually members of the base
2246// type. The restriction here is:
2247//
2248// C++ [expr.ref]p2:
2249// ... In these cases, the id-expression shall name a
2250// member of the class or of one of its base classes.
2251//
2252// So it's perfectly legitimate for the nested-name specifier to name
2253// an unrelated class, and for us to find an overload set including
2254// decls from classes which are not superclasses, as long as the decl
2255// we actually pick through overload resolution is from a superclass.
2256bool Sema::CheckQualifiedMemberReference(Expr *BaseExpr,
2257 QualType BaseType,
John McCallcd4b4772009-12-02 03:53:29 +00002258 const CXXScopeSpec &SS,
John McCall10eae182009-11-30 22:42:35 +00002259 const LookupResult &R) {
John McCall2d74de92009-12-01 22:10:20 +00002260 const RecordType *BaseRT = BaseType->getAs<RecordType>();
2261 if (!BaseRT) {
2262 // We can't check this yet because the base type is still
2263 // dependent.
2264 assert(BaseType->isDependentType());
2265 return false;
2266 }
2267 CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl());
John McCall10eae182009-11-30 22:42:35 +00002268
2269 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
John McCall2d74de92009-12-01 22:10:20 +00002270 // If this is an implicit member reference and we find a
2271 // non-instance member, it's not an error.
2272 if (!BaseExpr && !IsInstanceMember((*I)->getUnderlyingDecl()))
2273 return false;
John McCall10eae182009-11-30 22:42:35 +00002274
John McCall2d74de92009-12-01 22:10:20 +00002275 // Note that we use the DC of the decl, not the underlying decl.
2276 CXXRecordDecl *RecordD = cast<CXXRecordDecl>((*I)->getDeclContext());
2277 while (RecordD->isAnonymousStructOrUnion())
2278 RecordD = cast<CXXRecordDecl>(RecordD->getParent());
2279
2280 llvm::SmallPtrSet<CXXRecordDecl*,4> MemberRecord;
2281 MemberRecord.insert(RecordD->getCanonicalDecl());
2282
2283 if (!IsProvablyNotDerivedFrom(*this, BaseRecord, MemberRecord))
2284 return false;
2285 }
2286
John McCallcd4b4772009-12-02 03:53:29 +00002287 DiagnoseQualifiedMemberReference(*this, BaseExpr, BaseType, SS, R);
John McCall2d74de92009-12-01 22:10:20 +00002288 return true;
2289}
2290
2291static bool
2292LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R,
2293 SourceRange BaseRange, const RecordType *RTy,
2294 SourceLocation OpLoc, const CXXScopeSpec &SS) {
2295 RecordDecl *RDecl = RTy->getDecl();
2296 if (SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
2297 PDiag(diag::err_typecheck_incomplete_tag)
2298 << BaseRange))
2299 return true;
2300
2301 DeclContext *DC = RDecl;
2302 if (SS.isSet()) {
2303 // If the member name was a qualified-id, look into the
2304 // nested-name-specifier.
2305 DC = SemaRef.computeDeclContext(SS, false);
2306
John McCallcd4b4772009-12-02 03:53:29 +00002307 if (SemaRef.RequireCompleteDeclContext(SS)) {
2308 SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag)
2309 << SS.getRange() << DC;
2310 return true;
2311 }
2312
John McCall2d74de92009-12-01 22:10:20 +00002313 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2314
2315 if (!isa<TypeDecl>(DC)) {
2316 SemaRef.Diag(R.getNameLoc(), diag::err_qualified_member_nonclass)
2317 << DC << SS.getRange();
2318 return true;
John McCall10eae182009-11-30 22:42:35 +00002319 }
2320 }
2321
John McCall2d74de92009-12-01 22:10:20 +00002322 // The record definition is complete, now look up the member.
2323 SemaRef.LookupQualifiedName(R, DC);
John McCall10eae182009-11-30 22:42:35 +00002324
2325 return false;
2326}
2327
2328Sema::OwningExprResult
John McCall2d74de92009-12-01 22:10:20 +00002329Sema::BuildMemberReferenceExpr(ExprArg BaseArg, QualType BaseType,
John McCall10eae182009-11-30 22:42:35 +00002330 SourceLocation OpLoc, bool IsArrow,
2331 const CXXScopeSpec &SS,
2332 NamedDecl *FirstQualifierInScope,
2333 DeclarationName Name, SourceLocation NameLoc,
2334 const TemplateArgumentListInfo *TemplateArgs) {
2335 Expr *Base = BaseArg.takeAs<Expr>();
2336
John McCallcd4b4772009-12-02 03:53:29 +00002337 if (BaseType->isDependentType() ||
2338 (SS.isSet() && isDependentScopeSpecifier(SS)))
John McCall2d74de92009-12-01 22:10:20 +00002339 return ActOnDependentMemberExpr(ExprArg(*this, Base), BaseType,
John McCall10eae182009-11-30 22:42:35 +00002340 IsArrow, OpLoc,
2341 SS, FirstQualifierInScope,
2342 Name, NameLoc,
2343 TemplateArgs);
2344
2345 LookupResult R(*this, Name, NameLoc, LookupMemberName);
John McCall10eae182009-11-30 22:42:35 +00002346
John McCall2d74de92009-12-01 22:10:20 +00002347 // Implicit member accesses.
2348 if (!Base) {
2349 QualType RecordTy = BaseType;
2350 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
2351 if (LookupMemberExprInRecord(*this, R, SourceRange(),
2352 RecordTy->getAs<RecordType>(),
2353 OpLoc, SS))
2354 return ExprError();
2355
2356 // Explicit member accesses.
2357 } else {
2358 OwningExprResult Result =
2359 LookupMemberExpr(R, Base, IsArrow, OpLoc,
2360 SS, FirstQualifierInScope,
2361 /*ObjCImpDecl*/ DeclPtrTy());
2362
2363 if (Result.isInvalid()) {
2364 Owned(Base);
2365 return ExprError();
2366 }
2367
2368 if (Result.get())
2369 return move(Result);
John McCall10eae182009-11-30 22:42:35 +00002370 }
2371
John McCall2d74de92009-12-01 22:10:20 +00002372 return BuildMemberReferenceExpr(ExprArg(*this, Base), BaseType,
2373 OpLoc, IsArrow, SS, R, TemplateArgs);
John McCall10eae182009-11-30 22:42:35 +00002374}
2375
2376Sema::OwningExprResult
John McCall2d74de92009-12-01 22:10:20 +00002377Sema::BuildMemberReferenceExpr(ExprArg Base, QualType BaseExprType,
2378 SourceLocation OpLoc, bool IsArrow,
2379 const CXXScopeSpec &SS,
John McCall10eae182009-11-30 22:42:35 +00002380 LookupResult &R,
2381 const TemplateArgumentListInfo *TemplateArgs) {
2382 Expr *BaseExpr = Base.takeAs<Expr>();
John McCall2d74de92009-12-01 22:10:20 +00002383 QualType BaseType = BaseExprType;
John McCall10eae182009-11-30 22:42:35 +00002384 if (IsArrow) {
2385 assert(BaseType->isPointerType());
2386 BaseType = BaseType->getAs<PointerType>()->getPointeeType();
2387 }
2388
2389 NestedNameSpecifier *Qualifier =
2390 static_cast<NestedNameSpecifier*>(SS.getScopeRep());
2391 DeclarationName MemberName = R.getLookupName();
2392 SourceLocation MemberLoc = R.getNameLoc();
2393
2394 if (R.isAmbiguous())
Douglas Gregord8061562009-08-06 03:17:00 +00002395 return ExprError();
2396
John McCall10eae182009-11-30 22:42:35 +00002397 if (R.empty()) {
2398 // Rederive where we looked up.
2399 DeclContext *DC = (SS.isSet()
2400 ? computeDeclContext(SS, false)
2401 : BaseType->getAs<RecordType>()->getDecl());
Nate Begeman5ec4b312009-08-10 23:49:36 +00002402
John McCall10eae182009-11-30 22:42:35 +00002403 Diag(R.getNameLoc(), diag::err_no_member)
John McCall2d74de92009-12-01 22:10:20 +00002404 << MemberName << DC
2405 << (BaseExpr ? BaseExpr->getSourceRange() : SourceRange());
John McCall10eae182009-11-30 22:42:35 +00002406 return ExprError();
2407 }
2408
John McCallcd4b4772009-12-02 03:53:29 +00002409 // Diagnose qualified lookups that find only declarations from a
2410 // non-base type. Note that it's okay for lookup to find
2411 // declarations from a non-base type as long as those aren't the
2412 // ones picked by overload resolution.
2413 if (SS.isSet() && CheckQualifiedMemberReference(BaseExpr, BaseType, SS, R))
John McCall10eae182009-11-30 22:42:35 +00002414 return ExprError();
2415
2416 // Construct an unresolved result if we in fact got an unresolved
2417 // result.
2418 if (R.isOverloadedResult() || R.isUnresolvableResult()) {
John McCall2d74de92009-12-01 22:10:20 +00002419 bool Dependent =
John McCall71739032009-12-19 02:05:44 +00002420 BaseExprType->isDependentType() ||
John McCall2d74de92009-12-01 22:10:20 +00002421 R.isUnresolvableResult() ||
2422 UnresolvedLookupExpr::ComputeDependence(R.begin(), R.end(), TemplateArgs);
John McCall10eae182009-11-30 22:42:35 +00002423
2424 UnresolvedMemberExpr *MemExpr
2425 = UnresolvedMemberExpr::Create(Context, Dependent,
2426 R.isUnresolvableResult(),
John McCall2d74de92009-12-01 22:10:20 +00002427 BaseExpr, BaseExprType,
2428 IsArrow, OpLoc,
John McCall10eae182009-11-30 22:42:35 +00002429 Qualifier, SS.getRange(),
2430 MemberName, MemberLoc,
2431 TemplateArgs);
2432 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
2433 MemExpr->addDecl(*I);
2434
2435 return Owned(MemExpr);
2436 }
2437
2438 assert(R.isSingleResult());
2439 NamedDecl *MemberDecl = R.getFoundDecl();
2440
2441 // FIXME: diagnose the presence of template arguments now.
2442
2443 // If the decl being referenced had an error, return an error for this
2444 // sub-expr without emitting another error, in order to avoid cascading
2445 // error cases.
2446 if (MemberDecl->isInvalidDecl())
2447 return ExprError();
2448
John McCall2d74de92009-12-01 22:10:20 +00002449 // Handle the implicit-member-access case.
2450 if (!BaseExpr) {
2451 // If this is not an instance member, convert to a non-member access.
2452 if (!IsInstanceMember(MemberDecl))
2453 return BuildDeclarationNameExpr(SS, R.getNameLoc(), MemberDecl);
2454
2455 BaseExpr = new (Context) CXXThisExpr(SourceLocation(), BaseExprType);
2456 }
2457
John McCall10eae182009-11-30 22:42:35 +00002458 bool ShouldCheckUse = true;
2459 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
2460 // Don't diagnose the use of a virtual member function unless it's
2461 // explicitly qualified.
2462 if (MD->isVirtual() && !SS.isSet())
2463 ShouldCheckUse = false;
2464 }
2465
2466 // Check the use of this member.
2467 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) {
2468 Owned(BaseExpr);
2469 return ExprError();
2470 }
2471
2472 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
2473 // We may have found a field within an anonymous union or struct
2474 // (C++ [class.union]).
Eli Friedman78cde142009-12-04 07:18:51 +00002475 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion() &&
2476 !BaseType->getAs<RecordType>()->getDecl()->isAnonymousStructOrUnion())
John McCall10eae182009-11-30 22:42:35 +00002477 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
2478 BaseExpr, OpLoc);
2479
2480 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
2481 QualType MemberType = FD->getType();
2482 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
2483 MemberType = Ref->getPointeeType();
2484 else {
2485 Qualifiers BaseQuals = BaseType.getQualifiers();
2486 BaseQuals.removeObjCGCAttr();
2487 if (FD->isMutable()) BaseQuals.removeConst();
2488
2489 Qualifiers MemberQuals
2490 = Context.getCanonicalType(MemberType).getQualifiers();
2491
2492 Qualifiers Combined = BaseQuals + MemberQuals;
2493 if (Combined != MemberQuals)
2494 MemberType = Context.getQualifiedType(MemberType, Combined);
2495 }
2496
2497 MarkDeclarationReferenced(MemberLoc, FD);
2498 if (PerformObjectMemberConversion(BaseExpr, FD))
2499 return ExprError();
2500 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
2501 FD, MemberLoc, MemberType));
2502 }
2503
2504 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2505 MarkDeclarationReferenced(MemberLoc, Var);
2506 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
2507 Var, MemberLoc,
2508 Var->getType().getNonReferenceType()));
2509 }
2510
2511 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2512 MarkDeclarationReferenced(MemberLoc, MemberDecl);
2513 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
2514 MemberFn, MemberLoc,
2515 MemberFn->getType()));
2516 }
2517
2518 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2519 MarkDeclarationReferenced(MemberLoc, MemberDecl);
2520 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
2521 Enum, MemberLoc, Enum->getType()));
2522 }
2523
2524 Owned(BaseExpr);
2525
2526 if (isa<TypeDecl>(MemberDecl))
2527 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
2528 << MemberName << int(IsArrow));
2529
2530 // We found a declaration kind that we didn't expect. This is a
2531 // generic error message that tells the user that she can't refer
2532 // to this member with '.' or '->'.
2533 return ExprError(Diag(MemberLoc,
2534 diag::err_typecheck_member_reference_unknown)
2535 << MemberName << int(IsArrow));
2536}
2537
2538/// Look up the given member of the given non-type-dependent
2539/// expression. This can return in one of two ways:
2540/// * If it returns a sentinel null-but-valid result, the caller will
2541/// assume that lookup was performed and the results written into
2542/// the provided structure. It will take over from there.
2543/// * Otherwise, the returned expression will be produced in place of
2544/// an ordinary member expression.
2545///
2546/// The ObjCImpDecl bit is a gross hack that will need to be properly
2547/// fixed for ObjC++.
2548Sema::OwningExprResult
2549Sema::LookupMemberExpr(LookupResult &R, Expr *&BaseExpr,
John McCalla928c652009-12-07 22:46:59 +00002550 bool &IsArrow, SourceLocation OpLoc,
John McCall10eae182009-11-30 22:42:35 +00002551 const CXXScopeSpec &SS,
2552 NamedDecl *FirstQualifierInScope,
2553 DeclPtrTy ObjCImpDecl) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00002554 assert(BaseExpr && "no base expression");
Mike Stump11289f42009-09-09 15:08:12 +00002555
Steve Naroffeaaae462007-12-16 21:42:28 +00002556 // Perform default conversions.
2557 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002558
Steve Naroff185616f2007-07-26 03:11:44 +00002559 QualType BaseType = BaseExpr->getType();
John McCall10eae182009-11-30 22:42:35 +00002560 assert(!BaseType->isDependentType());
2561
2562 DeclarationName MemberName = R.getLookupName();
2563 SourceLocation MemberLoc = R.getNameLoc();
Douglas Gregord82ae382009-11-06 06:30:47 +00002564
2565 // If the user is trying to apply -> or . to a function pointer
John McCall10eae182009-11-30 22:42:35 +00002566 // type, it's probably because they forgot parentheses to call that
Douglas Gregord82ae382009-11-06 06:30:47 +00002567 // function. Suggest the addition of those parentheses, build the
2568 // call, and continue on.
2569 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
2570 if (const FunctionProtoType *Fun
2571 = Ptr->getPointeeType()->getAs<FunctionProtoType>()) {
2572 QualType ResultTy = Fun->getResultType();
2573 if (Fun->getNumArgs() == 0 &&
John McCall10eae182009-11-30 22:42:35 +00002574 ((!IsArrow && ResultTy->isRecordType()) ||
2575 (IsArrow && ResultTy->isPointerType() &&
Douglas Gregord82ae382009-11-06 06:30:47 +00002576 ResultTy->getAs<PointerType>()->getPointeeType()
2577 ->isRecordType()))) {
2578 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2579 Diag(Loc, diag::err_member_reference_needs_call)
2580 << QualType(Fun, 0)
2581 << CodeModificationHint::CreateInsertion(Loc, "()");
2582
2583 OwningExprResult NewBase
John McCall10eae182009-11-30 22:42:35 +00002584 = ActOnCallExpr(0, ExprArg(*this, BaseExpr), Loc,
Douglas Gregord82ae382009-11-06 06:30:47 +00002585 MultiExprArg(*this, 0, 0), 0, Loc);
2586 if (NewBase.isInvalid())
John McCall10eae182009-11-30 22:42:35 +00002587 return ExprError();
Douglas Gregord82ae382009-11-06 06:30:47 +00002588
2589 BaseExpr = NewBase.takeAs<Expr>();
2590 DefaultFunctionArrayConversion(BaseExpr);
2591 BaseType = BaseExpr->getType();
2592 }
2593 }
2594 }
2595
David Chisnall9f57c292009-08-17 16:35:33 +00002596 // If this is an Objective-C pseudo-builtin and a definition is provided then
2597 // use that.
2598 if (BaseType->isObjCIdType()) {
Fariborz Jahanianc2949f92009-12-07 20:09:25 +00002599 if (IsArrow) {
2600 // Handle the following exceptional case PObj->isa.
2601 if (const ObjCObjectPointerType *OPT =
2602 BaseType->getAs<ObjCObjectPointerType>()) {
2603 if (OPT->getPointeeType()->isSpecificBuiltinType(BuiltinType::ObjCId) &&
2604 MemberName.getAsIdentifierInfo()->isStr("isa"))
Fariborz Jahaniana5fee262009-12-09 19:05:56 +00002605 return Owned(new (Context) ObjCIsaExpr(BaseExpr, true, MemberLoc,
2606 Context.getObjCClassType()));
Fariborz Jahanianc2949f92009-12-07 20:09:25 +00002607 }
2608 }
David Chisnall9f57c292009-08-17 16:35:33 +00002609 // We have an 'id' type. Rather than fall through, we check if this
2610 // is a reference to 'isa'.
2611 if (BaseType != Context.ObjCIdRedefinitionType) {
2612 BaseType = Context.ObjCIdRedefinitionType;
Eli Friedman06ed2a52009-10-20 08:27:19 +00002613 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00002614 }
David Chisnall9f57c292009-08-17 16:35:33 +00002615 }
John McCall10eae182009-11-30 22:42:35 +00002616
Fariborz Jahanian04b258c2009-11-25 23:07:42 +00002617 // If this is an Objective-C pseudo-builtin and a definition is provided then
2618 // use that.
2619 if (Context.isObjCSelType(BaseType)) {
2620 // We have an 'SEL' type. Rather than fall through, we check if this
2621 // is a reference to 'sel_id'.
2622 if (BaseType != Context.ObjCSelRedefinitionType) {
2623 BaseType = Context.ObjCSelRedefinitionType;
2624 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
2625 }
2626 }
John McCall10eae182009-11-30 22:42:35 +00002627
Steve Naroff185616f2007-07-26 03:11:44 +00002628 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002629
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002630 // Handle properties on ObjC 'Class' types.
John McCall10eae182009-11-30 22:42:35 +00002631 if (!IsArrow && BaseType->isObjCClassType()) {
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002632 // Also must look for a getter name which uses property syntax.
2633 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2634 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
2635 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
2636 ObjCInterfaceDecl *IFace = MD->getClassInterface();
2637 ObjCMethodDecl *Getter;
2638 // FIXME: need to also look locally in the implementation.
2639 if ((Getter = IFace->lookupClassMethod(Sel))) {
2640 // Check the use of this method.
2641 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2642 return ExprError();
2643 }
2644 // If we found a getter then this may be a valid dot-reference, we
2645 // will look for the matching setter, in case it is needed.
2646 Selector SetterSel =
2647 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2648 PP.getSelectorTable(), Member);
2649 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2650 if (!Setter) {
2651 // If this reference is in an @implementation, also check for 'private'
2652 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00002653 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002654 }
2655 // Look through local category implementations associated with the class.
2656 if (!Setter)
2657 Setter = IFace->getCategoryClassMethod(SetterSel);
2658
2659 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2660 return ExprError();
2661
2662 if (Getter || Setter) {
2663 QualType PType;
2664
2665 if (Getter)
2666 PType = Getter->getResultType();
2667 else
2668 // Get the expression type from Setter's incoming parameter.
2669 PType = (*(Setter->param_end() -1))->getType();
2670 // FIXME: we must check that the setter has property type.
2671 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter,
2672 PType,
2673 Setter, MemberLoc, BaseExpr));
2674 }
2675 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2676 << MemberName << BaseType);
2677 }
2678 }
2679
2680 if (BaseType->isObjCClassType() &&
2681 BaseType != Context.ObjCClassRedefinitionType) {
2682 BaseType = Context.ObjCClassRedefinitionType;
Eli Friedman06ed2a52009-10-20 08:27:19 +00002683 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002684 }
Mike Stump11289f42009-09-09 15:08:12 +00002685
John McCall10eae182009-11-30 22:42:35 +00002686 if (IsArrow) {
2687 if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroff185616f2007-07-26 03:11:44 +00002688 BaseType = PT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00002689 else if (BaseType->isObjCObjectPointerType())
2690 ;
John McCalla928c652009-12-07 22:46:59 +00002691 else if (BaseType->isRecordType()) {
2692 // Recover from arrow accesses to records, e.g.:
2693 // struct MyRecord foo;
2694 // foo->bar
2695 // This is actually well-formed in C++ if MyRecord has an
2696 // overloaded operator->, but that should have been dealt with
2697 // by now.
2698 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
2699 << BaseType << int(IsArrow) << BaseExpr->getSourceRange()
2700 << CodeModificationHint::CreateReplacement(OpLoc, ".");
2701 IsArrow = false;
2702 } else {
John McCall10eae182009-11-30 22:42:35 +00002703 Diag(MemberLoc, diag::err_typecheck_member_reference_arrow)
2704 << BaseType << BaseExpr->getSourceRange();
2705 return ExprError();
Anders Carlsson524d5a42009-05-16 20:31:20 +00002706 }
John McCalla928c652009-12-07 22:46:59 +00002707 } else {
2708 // Recover from dot accesses to pointers, e.g.:
2709 // type *foo;
2710 // foo.bar
2711 // This is actually well-formed in two cases:
2712 // - 'type' is an Objective C type
2713 // - 'bar' is a pseudo-destructor name which happens to refer to
2714 // the appropriate pointer type
2715 if (MemberName.getNameKind() != DeclarationName::CXXDestructorName) {
2716 const PointerType *PT = BaseType->getAs<PointerType>();
2717 if (PT && PT->getPointeeType()->isRecordType()) {
2718 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
2719 << BaseType << int(IsArrow) << BaseExpr->getSourceRange()
2720 << CodeModificationHint::CreateReplacement(OpLoc, "->");
2721 BaseType = PT->getPointeeType();
2722 IsArrow = true;
2723 }
2724 }
John McCall10eae182009-11-30 22:42:35 +00002725 }
John McCalla928c652009-12-07 22:46:59 +00002726
John McCall10eae182009-11-30 22:42:35 +00002727 // Handle field access to simple records. This also handles access
2728 // to fields of the ObjC 'id' struct.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002729 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
John McCall2d74de92009-12-01 22:10:20 +00002730 if (LookupMemberExprInRecord(*this, R, BaseExpr->getSourceRange(),
2731 RTy, OpLoc, SS))
Douglas Gregordd430f72009-01-19 19:26:10 +00002732 return ExprError();
John McCall10eae182009-11-30 22:42:35 +00002733 return Owned((Expr*) 0);
Chris Lattnerb63a7452008-07-21 04:28:12 +00002734 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002735
Douglas Gregorad8a3362009-09-04 17:36:40 +00002736 // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring
2737 // into a record type was handled above, any destructor we see here is a
2738 // pseudo-destructor.
2739 if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) {
2740 // C++ [expr.pseudo]p2:
Mike Stump11289f42009-09-09 15:08:12 +00002741 // The left hand side of the dot operator shall be of scalar type. The
2742 // left hand side of the arrow operator shall be of pointer to scalar
Douglas Gregorad8a3362009-09-04 17:36:40 +00002743 // type.
2744 if (!BaseType->isScalarType())
2745 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2746 << BaseType << BaseExpr->getSourceRange());
Mike Stump11289f42009-09-09 15:08:12 +00002747
Douglas Gregorad8a3362009-09-04 17:36:40 +00002748 // [...] The type designated by the pseudo-destructor-name shall be the
2749 // same as the object type.
2750 if (!MemberName.getCXXNameType()->isDependentType() &&
2751 !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType()))
2752 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch)
2753 << BaseType << MemberName.getCXXNameType()
2754 << BaseExpr->getSourceRange() << SourceRange(MemberLoc));
Mike Stump11289f42009-09-09 15:08:12 +00002755
2756 // [...] Furthermore, the two type-names in a pseudo-destructor-name of
Douglas Gregorad8a3362009-09-04 17:36:40 +00002757 // the form
2758 //
Mike Stump11289f42009-09-09 15:08:12 +00002759 // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name
2760 //
Douglas Gregorad8a3362009-09-04 17:36:40 +00002761 // shall designate the same scalar type.
2762 //
2763 // FIXME: DPG can't see any way to trigger this particular clause, so it
2764 // isn't checked here.
Mike Stump11289f42009-09-09 15:08:12 +00002765
Douglas Gregorad8a3362009-09-04 17:36:40 +00002766 // FIXME: We've lost the precise spelling of the type by going through
2767 // DeclarationName. Can we do better?
2768 return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr,
John McCall10eae182009-11-30 22:42:35 +00002769 IsArrow, OpLoc,
2770 (NestedNameSpecifier *) SS.getScopeRep(),
2771 SS.getRange(),
Douglas Gregorad8a3362009-09-04 17:36:40 +00002772 MemberName.getCXXNameType(),
2773 MemberLoc));
2774 }
Mike Stump11289f42009-09-09 15:08:12 +00002775
Chris Lattnerdc420f42008-07-21 04:59:05 +00002776 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2777 // (*Obj).ivar.
John McCall10eae182009-11-30 22:42:35 +00002778 if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
2779 (!IsArrow && BaseType->isObjCInterfaceType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002780 const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>();
Mike Stump11289f42009-09-09 15:08:12 +00002781 const ObjCInterfaceType *IFaceT =
John McCall9dd450b2009-09-21 23:43:11 +00002782 OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>();
Steve Naroffa057ba92009-07-16 00:25:06 +00002783 if (IFaceT) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002784 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2785
Steve Naroffa057ba92009-07-16 00:25:06 +00002786 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2787 ObjCInterfaceDecl *ClassDeclared;
Anders Carlssonf571c112009-08-26 18:25:21 +00002788 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
Mike Stump11289f42009-09-09 15:08:12 +00002789
Steve Naroffa057ba92009-07-16 00:25:06 +00002790 if (IV) {
2791 // If the decl being referenced had an error, return an error for this
2792 // sub-expr without emitting another error, in order to avoid cascading
2793 // error cases.
2794 if (IV->isInvalidDecl())
2795 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00002796
Steve Naroffa057ba92009-07-16 00:25:06 +00002797 // Check whether we can reference this field.
2798 if (DiagnoseUseOfDecl(IV, MemberLoc))
2799 return ExprError();
2800 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2801 IV->getAccessControl() != ObjCIvarDecl::Package) {
2802 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2803 if (ObjCMethodDecl *MD = getCurMethodDecl())
2804 ClassOfMethodDecl = MD->getClassInterface();
2805 else if (ObjCImpDecl && getCurFunctionDecl()) {
2806 // Case of a c-function declared inside an objc implementation.
2807 // FIXME: For a c-style function nested inside an objc implementation
2808 // class, there is no implementation context available, so we pass
2809 // down the context as argument to this routine. Ideally, this context
2810 // need be passed down in the AST node and somehow calculated from the
2811 // AST for a function decl.
2812 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Mike Stump11289f42009-09-09 15:08:12 +00002813 if (ObjCImplementationDecl *IMPD =
Steve Naroffa057ba92009-07-16 00:25:06 +00002814 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2815 ClassOfMethodDecl = IMPD->getClassInterface();
2816 else if (ObjCCategoryImplDecl* CatImplClass =
2817 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2818 ClassOfMethodDecl = CatImplClass->getClassInterface();
2819 }
Mike Stump11289f42009-09-09 15:08:12 +00002820
2821 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2822 if (ClassDeclared != IDecl ||
Steve Naroffa057ba92009-07-16 00:25:06 +00002823 ClassOfMethodDecl != ClassDeclared)
Mike Stump11289f42009-09-09 15:08:12 +00002824 Diag(MemberLoc, diag::error_private_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002825 << IV->getDeclName();
Mike Stump12b8ce12009-08-04 21:02:39 +00002826 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2827 // @protected
Mike Stump11289f42009-09-09 15:08:12 +00002828 Diag(MemberLoc, diag::error_protected_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002829 << IV->getDeclName();
Steve Naroffd1b64be2009-03-04 18:34:24 +00002830 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002831
2832 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2833 MemberLoc, BaseExpr,
John McCall10eae182009-11-30 22:42:35 +00002834 IsArrow));
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +00002835 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002836 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Anders Carlssonf571c112009-08-26 18:25:21 +00002837 << IDecl->getDeclName() << MemberName
Steve Naroffa057ba92009-07-16 00:25:06 +00002838 << BaseExpr->getSourceRange());
Fariborz Jahanianb1378f92008-12-13 22:20:28 +00002839 }
Chris Lattnerb63a7452008-07-21 04:28:12 +00002840 }
Steve Naroff1329fa02009-07-15 18:40:39 +00002841 // Handle properties on 'id' and qualified "id".
John McCall10eae182009-11-30 22:42:35 +00002842 if (!IsArrow && (BaseType->isObjCIdType() ||
2843 BaseType->isObjCQualifiedIdType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002844 const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>();
Anders Carlssonf571c112009-08-26 18:25:21 +00002845 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002846
Steve Naroff7cae42b2009-07-10 23:34:53 +00002847 // Check protocols on qualified interfaces.
Anders Carlssonf571c112009-08-26 18:25:21 +00002848 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002849 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2850 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2851 // Check the use of this declaration
2852 if (DiagnoseUseOfDecl(PD, MemberLoc))
2853 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002854
Steve Naroff7cae42b2009-07-10 23:34:53 +00002855 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2856 MemberLoc, BaseExpr));
2857 }
2858 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2859 // Check the use of this method.
2860 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2861 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002862
Steve Naroff7cae42b2009-07-10 23:34:53 +00002863 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Mike Stump11289f42009-09-09 15:08:12 +00002864 OMD->getResultType(),
2865 OMD, OpLoc, MemberLoc,
Steve Naroff7cae42b2009-07-10 23:34:53 +00002866 NULL, 0));
2867 }
2868 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002869
Steve Naroff7cae42b2009-07-10 23:34:53 +00002870 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002871 << MemberName << BaseType);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002872 }
Chris Lattnerdc420f42008-07-21 04:59:05 +00002873 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2874 // pointer to a (potentially qualified) interface type.
Steve Naroff7cae42b2009-07-10 23:34:53 +00002875 const ObjCObjectPointerType *OPT;
John McCall10eae182009-11-30 22:42:35 +00002876 if (!IsArrow && (OPT = BaseType->getAsObjCInterfacePointerType())) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00002877 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2878 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Anders Carlssonf571c112009-08-26 18:25:21 +00002879 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002880
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002881 // Search for a declared property first.
Anders Carlssonf571c112009-08-26 18:25:21 +00002882 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002883 // Check whether we can reference this property.
2884 if (DiagnoseUseOfDecl(PD, MemberLoc))
2885 return ExprError();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002886 QualType ResTy = PD->getType();
Anders Carlssonf571c112009-08-26 18:25:21 +00002887 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002888 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianfe9e3942009-05-08 20:20:55 +00002889 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2890 ResTy = Getter->getResultType();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002891 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner43df5562009-02-16 18:35:08 +00002892 MemberLoc, BaseExpr));
2893 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002894 // Check protocols on qualified interfaces.
Steve Naroffaccc4882009-07-20 17:56:53 +00002895 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2896 E = OPT->qual_end(); I != E; ++I)
Anders Carlssonf571c112009-08-26 18:25:21 +00002897 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002898 // Check whether we can reference this property.
2899 if (DiagnoseUseOfDecl(PD, MemberLoc))
2900 return ExprError();
Chris Lattner43df5562009-02-16 18:35:08 +00002901
Steve Narofff6009ed2009-01-21 00:14:39 +00002902 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner43df5562009-02-16 18:35:08 +00002903 MemberLoc, BaseExpr));
2904 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002905 // If that failed, look for an "implicit" property by seeing if the nullary
2906 // selector is implemented.
2907
2908 // FIXME: The logic for looking up nullary and unary selectors should be
2909 // shared with the code in ActOnInstanceMessage.
2910
Anders Carlssonf571c112009-08-26 18:25:21 +00002911 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002912 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002913
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002914 // If this reference is in an @implementation, check for 'private' methods.
2915 if (!Getter)
Steve Naroffbb69c942009-10-01 23:46:04 +00002916 Getter = IFace->lookupPrivateInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002917
Steve Naroff1df62692008-10-22 19:16:27 +00002918 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002919 if (!Getter)
2920 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002921 if (Getter) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002922 // Check if we can reference this property.
2923 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2924 return ExprError();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002925 }
2926 // If we found a getter then this may be a valid dot-reference, we
2927 // will look for the matching setter, in case it is needed.
Mike Stump11289f42009-09-09 15:08:12 +00002928 Selector SetterSel =
2929 SelectorTable::constructSetterName(PP.getIdentifierTable(),
Anders Carlssonf571c112009-08-26 18:25:21 +00002930 PP.getSelectorTable(), Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002931 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002932 if (!Setter) {
2933 // If this reference is in an @implementation, also check for 'private'
2934 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00002935 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002936 }
2937 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002938 if (!Setter)
2939 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002940
Steve Naroff1d984fe2009-03-11 13:48:17 +00002941 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2942 return ExprError();
2943
2944 if (Getter || Setter) {
2945 QualType PType;
2946
2947 if (Getter)
2948 PType = Getter->getResultType();
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002949 else
2950 // Get the expression type from Setter's incoming parameter.
2951 PType = (*(Setter->param_end() -1))->getType();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002952 // FIXME: we must check that the setter has property type.
Fariborz Jahanian9a846652009-08-20 17:02:02 +00002953 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
Steve Naroff1d984fe2009-03-11 13:48:17 +00002954 Setter, MemberLoc, BaseExpr));
2955 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002956 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002957 << MemberName << BaseType);
Fariborz Jahanian21f54ee2007-11-12 22:29:28 +00002958 }
Mike Stump11289f42009-09-09 15:08:12 +00002959
Steve Naroffe87026a2009-07-24 17:54:45 +00002960 // Handle the following exceptional case (*Obj).isa.
John McCall10eae182009-11-30 22:42:35 +00002961 if (!IsArrow &&
Steve Naroffe87026a2009-07-24 17:54:45 +00002962 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Anders Carlssonf571c112009-08-26 18:25:21 +00002963 MemberName.getAsIdentifierInfo()->isStr("isa"))
Steve Naroffe87026a2009-07-24 17:54:45 +00002964 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
Fariborz Jahaniana5fee262009-12-09 19:05:56 +00002965 Context.getObjCClassType()));
Steve Naroffe87026a2009-07-24 17:54:45 +00002966
Chris Lattnerb63a7452008-07-21 04:28:12 +00002967 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner6c7ce102009-02-16 21:11:58 +00002968 if (BaseType->isExtVectorType()) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002969 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Chris Lattnerb63a7452008-07-21 04:28:12 +00002970 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2971 if (ret.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002972 return ExprError();
Anders Carlssonf571c112009-08-26 18:25:21 +00002973 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member,
Steve Narofff6009ed2009-01-21 00:14:39 +00002974 MemberLoc));
Chris Lattnerb63a7452008-07-21 04:28:12 +00002975 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002976
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002977 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2978 << BaseType << BaseExpr->getSourceRange();
2979
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002980 return ExprError();
Chris Lattnere168f762006-11-10 05:29:30 +00002981}
2982
John McCall10eae182009-11-30 22:42:35 +00002983static Sema::OwningExprResult DiagnoseDtorReference(Sema &SemaRef,
2984 SourceLocation NameLoc,
2985 Sema::ExprArg MemExpr) {
2986 Expr *E = (Expr *) MemExpr.get();
2987 SourceLocation ExpectedLParenLoc = SemaRef.PP.getLocForEndOfToken(NameLoc);
2988 SemaRef.Diag(E->getLocStart(), diag::err_dtor_expr_without_call)
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002989 << isa<CXXPseudoDestructorExpr>(E)
2990 << CodeModificationHint::CreateInsertion(ExpectedLParenLoc, "()");
2991
John McCall10eae182009-11-30 22:42:35 +00002992 return SemaRef.ActOnCallExpr(/*Scope*/ 0,
2993 move(MemExpr),
2994 /*LPLoc*/ ExpectedLParenLoc,
2995 Sema::MultiExprArg(SemaRef, 0, 0),
2996 /*CommaLocs*/ 0,
2997 /*RPLoc*/ ExpectedLParenLoc);
2998}
2999
3000/// The main callback when the parser finds something like
3001/// expression . [nested-name-specifier] identifier
3002/// expression -> [nested-name-specifier] identifier
3003/// where 'identifier' encompasses a fairly broad spectrum of
3004/// possibilities, including destructor and operator references.
3005///
3006/// \param OpKind either tok::arrow or tok::period
3007/// \param HasTrailingLParen whether the next token is '(', which
3008/// is used to diagnose mis-uses of special members that can
3009/// only be called
3010/// \param ObjCImpDecl the current ObjC @implementation decl;
3011/// this is an ugly hack around the fact that ObjC @implementations
3012/// aren't properly put in the context chain
3013Sema::OwningExprResult Sema::ActOnMemberAccessExpr(Scope *S, ExprArg BaseArg,
3014 SourceLocation OpLoc,
3015 tok::TokenKind OpKind,
3016 const CXXScopeSpec &SS,
3017 UnqualifiedId &Id,
3018 DeclPtrTy ObjCImpDecl,
3019 bool HasTrailingLParen) {
3020 if (SS.isSet() && SS.isInvalid())
3021 return ExprError();
3022
3023 TemplateArgumentListInfo TemplateArgsBuffer;
3024
3025 // Decompose the name into its component parts.
3026 DeclarationName Name;
3027 SourceLocation NameLoc;
3028 const TemplateArgumentListInfo *TemplateArgs;
3029 DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer,
3030 Name, NameLoc, TemplateArgs);
3031
3032 bool IsArrow = (OpKind == tok::arrow);
3033
3034 NamedDecl *FirstQualifierInScope
3035 = (!SS.isSet() ? 0 : FindFirstQualifierInScope(S,
3036 static_cast<NestedNameSpecifier*>(SS.getScopeRep())));
3037
3038 // This is a postfix expression, so get rid of ParenListExprs.
3039 BaseArg = MaybeConvertParenListExprToParenExpr(S, move(BaseArg));
3040
3041 Expr *Base = BaseArg.takeAs<Expr>();
3042 OwningExprResult Result(*this);
3043 if (Base->getType()->isDependentType()) {
John McCall2d74de92009-12-01 22:10:20 +00003044 Result = ActOnDependentMemberExpr(ExprArg(*this, Base), Base->getType(),
John McCall10eae182009-11-30 22:42:35 +00003045 IsArrow, OpLoc,
3046 SS, FirstQualifierInScope,
3047 Name, NameLoc,
3048 TemplateArgs);
3049 } else {
3050 LookupResult R(*this, Name, NameLoc, LookupMemberName);
3051 if (TemplateArgs) {
3052 // Re-use the lookup done for the template name.
3053 DecomposeTemplateName(R, Id);
3054 } else {
3055 Result = LookupMemberExpr(R, Base, IsArrow, OpLoc,
3056 SS, FirstQualifierInScope,
3057 ObjCImpDecl);
3058
3059 if (Result.isInvalid()) {
3060 Owned(Base);
3061 return ExprError();
3062 }
3063
3064 if (Result.get()) {
3065 // The only way a reference to a destructor can be used is to
3066 // immediately call it, which falls into this case. If the
3067 // next token is not a '(', produce a diagnostic and build the
3068 // call now.
3069 if (!HasTrailingLParen &&
3070 Id.getKind() == UnqualifiedId::IK_DestructorName)
3071 return DiagnoseDtorReference(*this, NameLoc, move(Result));
3072
3073 return move(Result);
3074 }
3075 }
3076
John McCall2d74de92009-12-01 22:10:20 +00003077 Result = BuildMemberReferenceExpr(ExprArg(*this, Base), Base->getType(),
3078 OpLoc, IsArrow, SS, R, TemplateArgs);
John McCall10eae182009-11-30 22:42:35 +00003079 }
3080
3081 return move(Result);
Anders Carlssonf571c112009-08-26 18:25:21 +00003082}
3083
Anders Carlsson355933d2009-08-25 03:49:14 +00003084Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
3085 FunctionDecl *FD,
3086 ParmVarDecl *Param) {
3087 if (Param->hasUnparsedDefaultArg()) {
3088 Diag (CallLoc,
3089 diag::err_use_of_default_argument_to_function_declared_later) <<
3090 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00003091 Diag(UnparsedDefaultArgLocs[Param],
Anders Carlsson355933d2009-08-25 03:49:14 +00003092 diag::note_default_argument_declared_here);
3093 } else {
3094 if (Param->hasUninstantiatedDefaultArg()) {
3095 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
3096
3097 // Instantiate the expression.
Douglas Gregor01afeef2009-08-28 20:31:08 +00003098 MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD);
Anders Carlsson657bad42009-09-05 05:14:19 +00003099
Mike Stump11289f42009-09-09 15:08:12 +00003100 InstantiatingTemplate Inst(*this, CallLoc, Param,
3101 ArgList.getInnermost().getFlatArgumentList(),
Douglas Gregor01afeef2009-08-28 20:31:08 +00003102 ArgList.getInnermost().flat_size());
Anders Carlsson355933d2009-08-25 03:49:14 +00003103
John McCall76d824f2009-08-25 22:02:44 +00003104 OwningExprResult Result = SubstExpr(UninstExpr, ArgList);
Mike Stump11289f42009-09-09 15:08:12 +00003105 if (Result.isInvalid())
Anders Carlsson355933d2009-08-25 03:49:14 +00003106 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00003107
3108 if (SetParamDefaultArgument(Param, move(Result),
Anders Carlsson355933d2009-08-25 03:49:14 +00003109 /*FIXME:EqualLoc*/
3110 UninstExpr->getSourceRange().getBegin()))
3111 return ExprError();
3112 }
Mike Stump11289f42009-09-09 15:08:12 +00003113
Anders Carlsson355933d2009-08-25 03:49:14 +00003114 // If the default expression creates temporaries, we need to
3115 // push them to the current stack of expression temporaries so they'll
3116 // be properly destroyed.
Anders Carlsson714d0962009-12-15 19:16:31 +00003117 for (unsigned i = 0, e = Param->getNumDefaultArgTemporaries(); i != e; ++i)
3118 ExprTemporaries.push_back(Param->getDefaultArgTemporary(i));
Anders Carlsson355933d2009-08-25 03:49:14 +00003119 }
3120
3121 // We already type-checked the argument, so we know it works.
3122 return Owned(CXXDefaultArgExpr::Create(Context, Param));
3123}
3124
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003125/// ConvertArgumentsForCall - Converts the arguments specified in
3126/// Args/NumArgs to the parameter types of the function FDecl with
3127/// function prototype Proto. Call is the call expression itself, and
3128/// Fn is the function expression. For a C++ member function, this
3129/// routine does not attempt to convert the object argument. Returns
3130/// true if the call is ill-formed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003131bool
3132Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003133 FunctionDecl *FDecl,
Douglas Gregordeaad8c2009-02-26 23:50:07 +00003134 const FunctionProtoType *Proto,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003135 Expr **Args, unsigned NumArgs,
3136 SourceLocation RParenLoc) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00003137 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003138 // assignment, to the types of the corresponding parameter, ...
3139 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregorb6b99612009-01-23 21:30:56 +00003140 bool Invalid = false;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003141
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003142 // If too few arguments are available (and we don't have default
3143 // arguments for the remaining parameters), don't make the call.
3144 if (NumArgs < NumArgsInProto) {
3145 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
3146 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
3147 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
Ted Kremenek5a201952009-02-07 01:47:29 +00003148 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003149 }
3150
3151 // If too many are passed and not variadic, error on the extras and drop
3152 // them.
3153 if (NumArgs > NumArgsInProto) {
3154 if (!Proto->isVariadic()) {
3155 Diag(Args[NumArgsInProto]->getLocStart(),
3156 diag::err_typecheck_call_too_many_args)
3157 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
3158 << SourceRange(Args[NumArgsInProto]->getLocStart(),
3159 Args[NumArgs-1]->getLocEnd());
3160 // This deletes the extra arguments.
Ted Kremenek5a201952009-02-07 01:47:29 +00003161 Call->setNumArgs(Context, NumArgsInProto);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003162 return true;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003163 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003164 }
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003165 llvm::SmallVector<Expr *, 8> AllArgs;
Fariborz Jahanian6f2d25e2009-11-24 19:27:49 +00003166 VariadicCallType CallType =
3167 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
3168 if (Fn->getType()->isBlockPointerType())
3169 CallType = VariadicBlock; // Block
3170 else if (isa<MemberExpr>(Fn))
3171 CallType = VariadicMethod;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003172 Invalid = GatherArgumentsForCall(Call->getSourceRange().getBegin(), FDecl,
Fariborz Jahanian4fa66ce2009-11-24 21:37:28 +00003173 Proto, 0, Args, NumArgs, AllArgs, CallType);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003174 if (Invalid)
3175 return true;
3176 unsigned TotalNumArgs = AllArgs.size();
3177 for (unsigned i = 0; i < TotalNumArgs; ++i)
3178 Call->setArg(i, AllArgs[i]);
3179
3180 return false;
3181}
Mike Stump4e1f26a2009-02-19 03:04:26 +00003182
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003183bool Sema::GatherArgumentsForCall(SourceLocation CallLoc,
3184 FunctionDecl *FDecl,
3185 const FunctionProtoType *Proto,
3186 unsigned FirstProtoArg,
3187 Expr **Args, unsigned NumArgs,
3188 llvm::SmallVector<Expr *, 8> &AllArgs,
Fariborz Jahanian6f2d25e2009-11-24 19:27:49 +00003189 VariadicCallType CallType) {
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003190 unsigned NumArgsInProto = Proto->getNumArgs();
3191 unsigned NumArgsToCheck = NumArgs;
3192 bool Invalid = false;
3193 if (NumArgs != NumArgsInProto)
3194 // Use default arguments for missing arguments
3195 NumArgsToCheck = NumArgsInProto;
3196 unsigned ArgIx = 0;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003197 // Continue to check argument types (even if we have too few/many args).
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003198 for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003199 QualType ProtoArgType = Proto->getArgType(i);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003200
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003201 Expr *Arg;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003202 if (ArgIx < NumArgs) {
3203 Arg = Args[ArgIx++];
3204
Eli Friedman3164fb12009-03-22 22:00:50 +00003205 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
3206 ProtoArgType,
Anders Carlssond624e162009-08-26 23:45:07 +00003207 PDiag(diag::err_call_incomplete_argument)
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003208 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00003209 return true;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003210
Douglas Gregor58354032008-12-24 00:01:03 +00003211 // Pass the argument.
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00003212 if (PerformCopyInitialization(Arg, ProtoArgType, AA_Passing))
Douglas Gregor58354032008-12-24 00:01:03 +00003213 return true;
Anders Carlsson78cfaa92009-11-13 04:34:45 +00003214
Anders Carlsson97df0b42009-11-13 17:04:35 +00003215 if (!ProtoArgType->isReferenceType())
3216 Arg = MaybeBindToTemporary(Arg).takeAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00003217 } else {
Anders Carlssonc80a1272009-08-25 02:29:20 +00003218 ParmVarDecl *Param = FDecl->getParamDecl(i);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003219
Mike Stump11289f42009-09-09 15:08:12 +00003220 OwningExprResult ArgExpr =
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003221 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
Anders Carlsson355933d2009-08-25 03:49:14 +00003222 if (ArgExpr.isInvalid())
3223 return true;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003224
Anders Carlsson355933d2009-08-25 03:49:14 +00003225 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00003226 }
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003227 AllArgs.push_back(Arg);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003228 }
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003229
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003230 // If this is a variadic call, handle args passed through "...".
Fariborz Jahanian6f2d25e2009-11-24 19:27:49 +00003231 if (CallType != VariadicDoesNotApply) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003232 // Promote the arguments (C99 6.5.2.2p7).
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003233 for (unsigned i = ArgIx; i < NumArgs; i++) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003234 Expr *Arg = Args[i];
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00003235 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00003236 AllArgs.push_back(Arg);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003237 }
3238 }
Douglas Gregorb6b99612009-01-23 21:30:56 +00003239 return Invalid;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003240}
3241
Steve Naroff83895f72007-09-16 03:34:24 +00003242/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattnere168f762006-11-10 05:29:30 +00003243/// This provides the location of the left/right parens and a list of comma
3244/// locations.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003245Action::OwningExprResult
3246Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
3247 MultiExprArg args,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003248 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003249 unsigned NumArgs = args.size();
Nate Begeman5ec4b312009-08-10 23:49:36 +00003250
3251 // Since this might be a postfix expression, get rid of ParenListExprs.
3252 fn = MaybeConvertParenListExprToParenExpr(S, move(fn));
Mike Stump11289f42009-09-09 15:08:12 +00003253
Anders Carlsson3cbc8592009-05-01 19:30:39 +00003254 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003255 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner38dbdb22007-07-21 03:03:59 +00003256 assert(Fn && "no function call expression");
Mike Stump11289f42009-09-09 15:08:12 +00003257
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003258 if (getLangOptions().CPlusPlus) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00003259 // If this is a pseudo-destructor expression, build the call immediately.
3260 if (isa<CXXPseudoDestructorExpr>(Fn)) {
3261 if (NumArgs > 0) {
3262 // Pseudo-destructor calls should not have any arguments.
3263 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
3264 << CodeModificationHint::CreateRemoval(
3265 SourceRange(Args[0]->getLocStart(),
3266 Args[NumArgs-1]->getLocEnd()));
Mike Stump11289f42009-09-09 15:08:12 +00003267
Douglas Gregorad8a3362009-09-04 17:36:40 +00003268 for (unsigned I = 0; I != NumArgs; ++I)
3269 Args[I]->Destroy(Context);
Mike Stump11289f42009-09-09 15:08:12 +00003270
Douglas Gregorad8a3362009-09-04 17:36:40 +00003271 NumArgs = 0;
3272 }
Mike Stump11289f42009-09-09 15:08:12 +00003273
Douglas Gregorad8a3362009-09-04 17:36:40 +00003274 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
3275 RParenLoc));
3276 }
Mike Stump11289f42009-09-09 15:08:12 +00003277
Douglas Gregorb8a9a412009-02-04 15:01:18 +00003278 // Determine whether this is a dependent call inside a C++ template,
Mike Stump4e1f26a2009-02-19 03:04:26 +00003279 // in which case we won't do any semantic analysis now.
Mike Stump87c57ac2009-05-16 07:39:55 +00003280 // FIXME: Will need to cache the results of name lookup (including ADL) in
3281 // Fn.
Douglas Gregorb8a9a412009-02-04 15:01:18 +00003282 bool Dependent = false;
3283 if (Fn->isTypeDependent())
3284 Dependent = true;
3285 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
3286 Dependent = true;
3287
3288 if (Dependent)
Ted Kremenekd7b4f402009-02-09 20:51:47 +00003289 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregorb8a9a412009-02-04 15:01:18 +00003290 Context.DependentTy, RParenLoc));
3291
3292 // Determine whether this is a call to an object (C++ [over.call.object]).
3293 if (Fn->getType()->isRecordType())
3294 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
3295 CommaLocs, RParenLoc));
3296
John McCall10eae182009-11-30 22:42:35 +00003297 Expr *NakedFn = Fn->IgnoreParens();
3298
3299 // Determine whether this is a call to an unresolved member function.
3300 if (UnresolvedMemberExpr *MemE = dyn_cast<UnresolvedMemberExpr>(NakedFn)) {
3301 // If lookup was unresolved but not dependent (i.e. didn't find
3302 // an unresolved using declaration), it has to be an overloaded
3303 // function set, which means it must contain either multiple
3304 // declarations (all methods or method templates) or a single
3305 // method template.
3306 assert((MemE->getNumDecls() > 1) ||
3307 isa<FunctionTemplateDecl>(*MemE->decls_begin()));
Douglas Gregor8f184a32009-12-01 03:34:29 +00003308 (void)MemE;
John McCall10eae182009-11-30 22:42:35 +00003309
John McCall2d74de92009-12-01 22:10:20 +00003310 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
3311 CommaLocs, RParenLoc);
John McCall10eae182009-11-30 22:42:35 +00003312 }
3313
Douglas Gregore254f902009-02-04 00:32:51 +00003314 // Determine whether this is a call to a member function.
John McCall10eae182009-11-30 22:42:35 +00003315 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(NakedFn)) {
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003316 NamedDecl *MemDecl = MemExpr->getMemberDecl();
John McCall10eae182009-11-30 22:42:35 +00003317 if (isa<CXXMethodDecl>(MemDecl))
John McCall2d74de92009-12-01 22:10:20 +00003318 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
3319 CommaLocs, RParenLoc);
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00003320 }
Anders Carlsson61914b52009-10-03 17:40:22 +00003321
3322 // Determine whether this is a call to a pointer-to-member function.
John McCall10eae182009-11-30 22:42:35 +00003323 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(NakedFn)) {
Anders Carlsson61914b52009-10-03 17:40:22 +00003324 if (BO->getOpcode() == BinaryOperator::PtrMemD ||
3325 BO->getOpcode() == BinaryOperator::PtrMemI) {
Fariborz Jahanian42f66632009-10-28 16:49:46 +00003326 if (const FunctionProtoType *FPT =
3327 dyn_cast<FunctionProtoType>(BO->getType())) {
3328 QualType ResultTy = FPT->getResultType().getNonReferenceType();
Anders Carlsson61914b52009-10-03 17:40:22 +00003329
Fariborz Jahanian42f66632009-10-28 16:49:46 +00003330 ExprOwningPtr<CXXMemberCallExpr>
3331 TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args,
3332 NumArgs, ResultTy,
3333 RParenLoc));
Anders Carlsson61914b52009-10-03 17:40:22 +00003334
Fariborz Jahanian42f66632009-10-28 16:49:46 +00003335 if (CheckCallReturnType(FPT->getResultType(),
3336 BO->getRHS()->getSourceRange().getBegin(),
3337 TheCall.get(), 0))
3338 return ExprError();
Anders Carlsson63dce022009-10-15 00:41:48 +00003339
Fariborz Jahanian42f66632009-10-28 16:49:46 +00003340 if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs,
3341 RParenLoc))
3342 return ExprError();
Anders Carlsson61914b52009-10-03 17:40:22 +00003343
Fariborz Jahanian42f66632009-10-28 16:49:46 +00003344 return Owned(MaybeBindToTemporary(TheCall.release()).release());
3345 }
3346 return ExprError(Diag(Fn->getLocStart(),
3347 diag::err_typecheck_call_not_function)
3348 << Fn->getType() << Fn->getSourceRange());
Anders Carlsson61914b52009-10-03 17:40:22 +00003349 }
3350 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003351 }
3352
Douglas Gregore254f902009-02-04 00:32:51 +00003353 // If we're directly calling a function, get the appropriate declaration.
Mike Stump11289f42009-09-09 15:08:12 +00003354 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor89026b52009-06-30 23:57:56 +00003355 // lookup and whether there were any explicitly-specified template arguments.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003356
John McCall57500772009-12-16 12:17:52 +00003357 Expr *NakedFn = Fn->IgnoreParenCasts();
3358 if (isa<UnresolvedLookupExpr>(NakedFn)) {
3359 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(NakedFn);
3360 return BuildOverloadedCallExpr(Fn, ULE, LParenLoc, Args, NumArgs,
3361 CommaLocs, RParenLoc);
Douglas Gregor5251f1b2008-10-21 16:13:35 +00003362 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00003363
John McCall57500772009-12-16 12:17:52 +00003364 NamedDecl *NDecl = 0;
3365 if (isa<DeclRefExpr>(NakedFn))
3366 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
3367
John McCall2d74de92009-12-01 22:10:20 +00003368 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc);
3369}
3370
John McCall57500772009-12-16 12:17:52 +00003371/// BuildResolvedCallExpr - Build a call to a resolved expression,
3372/// i.e. an expression not of \p OverloadTy. The expression should
John McCall2d74de92009-12-01 22:10:20 +00003373/// unary-convert to an expression of function-pointer or
3374/// block-pointer type.
3375///
3376/// \param NDecl the declaration being called, if available
3377Sema::OwningExprResult
3378Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
3379 SourceLocation LParenLoc,
3380 Expr **Args, unsigned NumArgs,
3381 SourceLocation RParenLoc) {
3382 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
3383
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00003384 // Promote the function operand.
3385 UsualUnaryConversions(Fn);
3386
Chris Lattner08464942007-12-28 05:29:59 +00003387 // Make the call expr early, before semantic checks. This guarantees cleanup
3388 // of arguments and function on error.
Ted Kremenekd7b4f402009-02-09 20:51:47 +00003389 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
3390 Args, NumArgs,
3391 Context.BoolTy,
3392 RParenLoc));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003393
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003394 const FunctionType *FuncT;
3395 if (!Fn->getType()->isBlockPointerType()) {
3396 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
3397 // have type pointer to function".
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003398 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003399 if (PT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003400 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3401 << Fn->getType() << Fn->getSourceRange());
John McCall9dd450b2009-09-21 23:43:11 +00003402 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003403 } else { // This is a block call.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003404 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
John McCall9dd450b2009-09-21 23:43:11 +00003405 getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00003406 }
Chris Lattner08464942007-12-28 05:29:59 +00003407 if (FuncT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003408 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
3409 << Fn->getType() << Fn->getSourceRange());
3410
Eli Friedman3164fb12009-03-22 22:00:50 +00003411 // Check for a valid return type
Anders Carlsson7f84ed92009-10-09 23:51:55 +00003412 if (CheckCallReturnType(FuncT->getResultType(),
3413 Fn->getSourceRange().getBegin(), TheCall.get(),
3414 FDecl))
Eli Friedman3164fb12009-03-22 22:00:50 +00003415 return ExprError();
3416
Chris Lattner08464942007-12-28 05:29:59 +00003417 // We know the result type of the call, set it.
Douglas Gregor786ab212008-10-29 02:00:59 +00003418 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003419
Douglas Gregordeaad8c2009-02-26 23:50:07 +00003420 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00003421 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003422 RParenLoc))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003423 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00003424 } else {
Douglas Gregordeaad8c2009-02-26 23:50:07 +00003425 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003426
Douglas Gregord8e97de2009-04-02 15:37:10 +00003427 if (FDecl) {
3428 // Check if we have too few/too many template arguments, based
3429 // on our knowledge of the function definition.
3430 const FunctionDecl *Def = 0;
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +00003431 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00003432 const FunctionProtoType *Proto =
John McCall9dd450b2009-09-21 23:43:11 +00003433 Def->getType()->getAs<FunctionProtoType>();
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00003434 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
3435 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
3436 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
3437 }
3438 }
Douglas Gregord8e97de2009-04-02 15:37:10 +00003439 }
3440
Steve Naroff0b661582007-08-28 23:30:39 +00003441 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner08464942007-12-28 05:29:59 +00003442 for (unsigned i = 0; i != NumArgs; i++) {
3443 Expr *Arg = Args[i];
3444 DefaultArgumentPromotion(Arg);
Eli Friedman3164fb12009-03-22 22:00:50 +00003445 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
3446 Arg->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00003447 PDiag(diag::err_call_incomplete_argument)
3448 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00003449 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00003450 TheCall->setArg(i, Arg);
Steve Naroff0b661582007-08-28 23:30:39 +00003451 }
Steve Naroffae4143e2007-04-26 20:39:23 +00003452 }
Chris Lattner08464942007-12-28 05:29:59 +00003453
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003454 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
3455 if (!Method->isStatic())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003456 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3457 << Fn->getSourceRange());
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003458
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00003459 // Check for sentinels
3460 if (NDecl)
3461 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump11289f42009-09-09 15:08:12 +00003462
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003463 // Do special checking on direct calls to functions.
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003464 if (FDecl) {
3465 if (CheckFunctionCall(FDecl, TheCall.get()))
3466 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00003467
Douglas Gregor15fc9562009-09-12 00:22:50 +00003468 if (unsigned BuiltinID = FDecl->getBuiltinID())
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003469 return CheckBuiltinFunctionCall(BuiltinID, TheCall.take());
3470 } else if (NDecl) {
3471 if (CheckBlockCall(NDecl, TheCall.get()))
3472 return ExprError();
3473 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003474
Anders Carlssonf8984012009-08-16 03:06:32 +00003475 return MaybeBindToTemporary(TheCall.take());
Chris Lattnere168f762006-11-10 05:29:30 +00003476}
3477
Sebastian Redlb5d49352009-01-19 22:31:54 +00003478Action::OwningExprResult
3479Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
3480 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Naroff83895f72007-09-16 03:34:24 +00003481 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Douglas Gregor85dabae2009-12-16 01:38:02 +00003482
3483 TypeSourceInfo *TInfo = 0;
3484 QualType literalType = GetTypeFromParser(Ty, &TInfo);
3485 if (!TInfo)
3486 TInfo = Context.getTrivialTypeSourceInfo(literalType, LParenLoc);
3487
Steve Naroff57eb2c52007-07-19 21:32:11 +00003488 // FIXME: put back this assert when initializers are worked out.
Steve Naroff83895f72007-09-16 03:34:24 +00003489 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb5d49352009-01-19 22:31:54 +00003490 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlsson2c1ec6d2007-12-05 07:24:19 +00003491
Eli Friedman37a186d2008-05-20 05:22:08 +00003492 if (literalType->isArrayType()) {
Chris Lattner7adf0762008-08-04 07:31:14 +00003493 if (literalType->isVariableArrayType())
Sebastian Redlb5d49352009-01-19 22:31:54 +00003494 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3495 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor1c37d9e2009-05-21 23:48:18 +00003496 } else if (!literalType->isDependentType() &&
3497 RequireCompleteType(LParenLoc, literalType,
Anders Carlssond624e162009-08-26 23:45:07 +00003498 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00003499 << SourceRange(LParenLoc,
Anders Carlssond624e162009-08-26 23:45:07 +00003500 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003501 return ExprError();
Eli Friedman37a186d2008-05-20 05:22:08 +00003502
Douglas Gregor85dabae2009-12-16 01:38:02 +00003503 InitializedEntity Entity
3504 = InitializedEntity::InitializeTemporary(TInfo->getTypeLoc());
3505 InitializationKind Kind
3506 = InitializationKind::CreateCast(SourceRange(LParenLoc, RParenLoc),
3507 /*IsCStyleCast=*/true);
3508 if (CheckInitializerTypes(literalExpr, literalType, Entity, Kind))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003509 return ExprError();
Steve Naroffd32419d2008-01-14 18:19:28 +00003510
Chris Lattner79413952008-12-04 23:50:19 +00003511 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffd32419d2008-01-14 18:19:28 +00003512 if (isFileScope) { // 6.5.2.5p3
Steve Naroff98f72032008-01-10 22:15:12 +00003513 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003514 return ExprError();
Steve Naroff98f72032008-01-10 22:15:12 +00003515 }
Sebastian Redlb5d49352009-01-19 22:31:54 +00003516 InitExpr.release();
Douglas Gregor85dabae2009-12-16 01:38:02 +00003517
3518 // FIXME: Store the TInfo to preserve type information better.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003519 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Narofff6009ed2009-01-21 00:14:39 +00003520 literalExpr, isFileScope));
Steve Narofffbd09832007-07-19 01:06:55 +00003521}
3522
Sebastian Redlb5d49352009-01-19 22:31:54 +00003523Action::OwningExprResult
3524Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003525 SourceLocation RBraceLoc) {
3526 unsigned NumInit = initlist.size();
3527 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson4692db02007-08-31 04:56:16 +00003528
Steve Naroff30d242c2007-09-15 18:49:24 +00003529 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump4e1f26a2009-02-19 03:04:26 +00003530 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003531
Mike Stump4e1f26a2009-02-19 03:04:26 +00003532 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00003533 RBraceLoc);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003534 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003535 return Owned(E);
Steve Narofffbd09832007-07-19 01:06:55 +00003536}
3537
Anders Carlsson094c4592009-10-18 18:12:03 +00003538static CastExpr::CastKind getScalarCastKind(ASTContext &Context,
3539 QualType SrcTy, QualType DestTy) {
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00003540 if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
Anders Carlsson094c4592009-10-18 18:12:03 +00003541 return CastExpr::CK_NoOp;
3542
3543 if (SrcTy->hasPointerRepresentation()) {
3544 if (DestTy->hasPointerRepresentation())
Fariborz Jahanian2b9fc832009-12-15 21:34:52 +00003545 return DestTy->isObjCObjectPointerType() ?
3546 CastExpr::CK_AnyPointerToObjCPointerCast :
3547 CastExpr::CK_BitCast;
Anders Carlsson094c4592009-10-18 18:12:03 +00003548 if (DestTy->isIntegerType())
3549 return CastExpr::CK_PointerToIntegral;
3550 }
3551
3552 if (SrcTy->isIntegerType()) {
3553 if (DestTy->isIntegerType())
3554 return CastExpr::CK_IntegralCast;
3555 if (DestTy->hasPointerRepresentation())
3556 return CastExpr::CK_IntegralToPointer;
3557 if (DestTy->isRealFloatingType())
3558 return CastExpr::CK_IntegralToFloating;
3559 }
3560
3561 if (SrcTy->isRealFloatingType()) {
3562 if (DestTy->isRealFloatingType())
3563 return CastExpr::CK_FloatingCast;
3564 if (DestTy->isIntegerType())
3565 return CastExpr::CK_FloatingToIntegral;
3566 }
3567
3568 // FIXME: Assert here.
3569 // assert(false && "Unhandled cast combination!");
3570 return CastExpr::CK_Unknown;
3571}
3572
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003573/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redl955a0672009-07-29 13:50:23 +00003574bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Mike Stump11289f42009-09-09 15:08:12 +00003575 CastExpr::CastKind& Kind,
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003576 CXXMethodDecl *& ConversionDecl,
3577 bool FunctionalStyle) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00003578 if (getLangOptions().CPlusPlus)
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003579 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle,
3580 ConversionDecl);
Sebastian Redl9f831db2009-07-25 15:41:38 +00003581
Eli Friedmanda8d4de2009-08-15 19:02:19 +00003582 DefaultFunctionArrayConversion(castExpr);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003583
3584 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
3585 // type needs to be scalar.
3586 if (castType->isVoidType()) {
3587 // Cast to void allows any expr type.
Anders Carlssonef918ac2009-10-16 02:35:04 +00003588 Kind = CastExpr::CK_ToVoid;
3589 return false;
3590 }
3591
3592 if (!castType->isScalarType() && !castType->isVectorType()) {
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00003593 if (Context.hasSameUnqualifiedType(castType, castExpr->getType()) &&
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003594 (castType->isStructureType() || castType->isUnionType())) {
3595 // GCC struct/union extension: allow cast to self.
Eli Friedmanba961a92009-03-23 00:24:07 +00003596 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003597 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
3598 << castType << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003599 Kind = CastExpr::CK_NoOp;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003600 return false;
3601 }
3602
3603 if (castType->isUnionType()) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003604 // GCC cast to union extension
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003605 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003606 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003607 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003608 Field != FieldEnd; ++Field) {
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00003609 if (Context.hasSameUnqualifiedType(Field->getType(),
3610 castExpr->getType())) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003611 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3612 << castExpr->getSourceRange();
3613 break;
3614 }
3615 }
3616 if (Field == FieldEnd)
3617 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3618 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003619 Kind = CastExpr::CK_ToUnion;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003620 return false;
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003621 }
Anders Carlsson525b76b2009-10-16 02:48:28 +00003622
3623 // Reject any other conversions to non-scalar types.
3624 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
3625 << castType << castExpr->getSourceRange();
3626 }
3627
3628 if (!castExpr->getType()->isScalarType() &&
3629 !castExpr->getType()->isVectorType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00003630 return Diag(castExpr->getLocStart(),
3631 diag::err_typecheck_expect_scalar_operand)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003632 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlsson525b76b2009-10-16 02:48:28 +00003633 }
3634
Anders Carlsson43d70f82009-10-16 05:23:41 +00003635 if (castType->isExtVectorType())
3636 return CheckExtVectorCast(TyR, castType, castExpr, Kind);
3637
Anders Carlsson525b76b2009-10-16 02:48:28 +00003638 if (castType->isVectorType())
3639 return CheckVectorCast(TyR, castType, castExpr->getType(), Kind);
3640 if (castExpr->getType()->isVectorType())
3641 return CheckVectorCast(TyR, castExpr->getType(), castType, Kind);
3642
3643 if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr))
Steve Naroffb47acdb2009-04-08 23:52:26 +00003644 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003645
Anders Carlsson43d70f82009-10-16 05:23:41 +00003646 if (isa<ObjCSelectorExpr>(castExpr))
3647 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
3648
Anders Carlsson525b76b2009-10-16 02:48:28 +00003649 if (!castType->isArithmeticType()) {
Eli Friedmanf4e3ad62009-05-01 02:23:58 +00003650 QualType castExprType = castExpr->getType();
3651 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3652 return Diag(castExpr->getLocStart(),
3653 diag::err_cast_pointer_from_non_pointer_int)
3654 << castExprType << castExpr->getSourceRange();
3655 } else if (!castExpr->getType()->isArithmeticType()) {
3656 if (!castType->isIntegralType() && castType->isArithmeticType())
3657 return Diag(castExpr->getLocStart(),
3658 diag::err_cast_pointer_to_non_pointer_int)
3659 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003660 }
Anders Carlsson094c4592009-10-18 18:12:03 +00003661
3662 Kind = getScalarCastKind(Context, castExpr->getType(), castType);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003663 return false;
3664}
3665
Anders Carlsson525b76b2009-10-16 02:48:28 +00003666bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
3667 CastExpr::CastKind &Kind) {
Anders Carlssonde71adf2007-11-27 05:51:55 +00003668 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00003669
Anders Carlssonde71adf2007-11-27 05:51:55 +00003670 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner37e05872008-03-05 18:54:05 +00003671 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssonde71adf2007-11-27 05:51:55 +00003672 return Diag(R.getBegin(),
Mike Stump4e1f26a2009-02-19 03:04:26 +00003673 Ty->isVectorType() ?
Anders Carlssonde71adf2007-11-27 05:51:55 +00003674 diag::err_invalid_conversion_between_vectors :
Chris Lattner3b054132008-11-19 05:08:23 +00003675 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003676 << VectorTy << Ty << R;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003677 } else
3678 return Diag(R.getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +00003679 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003680 << VectorTy << Ty << R;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003681
Anders Carlsson525b76b2009-10-16 02:48:28 +00003682 Kind = CastExpr::CK_BitCast;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003683 return false;
3684}
3685
Anders Carlsson43d70f82009-10-16 05:23:41 +00003686bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr,
3687 CastExpr::CastKind &Kind) {
Nate Begemanc69b7402009-06-26 00:50:28 +00003688 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Anders Carlsson43d70f82009-10-16 05:23:41 +00003689
3690 QualType SrcTy = CastExpr->getType();
3691
Nate Begemanc8961a42009-06-27 22:05:55 +00003692 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3693 // an ExtVectorType.
Nate Begemanc69b7402009-06-26 00:50:28 +00003694 if (SrcTy->isVectorType()) {
3695 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3696 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3697 << DestTy << SrcTy << R;
Anders Carlsson43d70f82009-10-16 05:23:41 +00003698 Kind = CastExpr::CK_BitCast;
Nate Begemanc69b7402009-06-26 00:50:28 +00003699 return false;
3700 }
3701
Nate Begemanbd956c42009-06-28 02:36:38 +00003702 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begemanc69b7402009-06-26 00:50:28 +00003703 // conversion will take place first from scalar to elt type, and then
3704 // splat from elt type to vector.
Nate Begemanbd956c42009-06-28 02:36:38 +00003705 if (SrcTy->isPointerType())
3706 return Diag(R.getBegin(),
3707 diag::err_invalid_conversion_between_vector_and_scalar)
3708 << DestTy << SrcTy << R;
Eli Friedman06ed2a52009-10-20 08:27:19 +00003709
3710 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
3711 ImpCastExprToType(CastExpr, DestElemTy,
3712 getScalarCastKind(Context, SrcTy, DestElemTy));
Anders Carlsson43d70f82009-10-16 05:23:41 +00003713
3714 Kind = CastExpr::CK_VectorSplat;
Nate Begemanc69b7402009-06-26 00:50:28 +00003715 return false;
3716}
3717
Sebastian Redlb5d49352009-01-19 22:31:54 +00003718Action::OwningExprResult
Nate Begeman5ec4b312009-08-10 23:49:36 +00003719Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003720 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlssonf10e4142009-08-07 22:21:05 +00003721 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Mike Stump11289f42009-09-09 15:08:12 +00003722
Sebastian Redlb5d49352009-01-19 22:31:54 +00003723 assert((Ty != 0) && (Op.get() != 0) &&
3724 "ActOnCastExpr(): missing type or expr");
Steve Naroff1a2cf6b2007-07-16 23:25:18 +00003725
Nate Begeman5ec4b312009-08-10 23:49:36 +00003726 Expr *castExpr = (Expr *)Op.get();
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00003727 //FIXME: Preserve type source info.
3728 QualType castType = GetTypeFromParser(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003729
Nate Begeman5ec4b312009-08-10 23:49:36 +00003730 // If the Expr being casted is a ParenListExpr, handle it specially.
3731 if (isa<ParenListExpr>(castExpr))
3732 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType);
Anders Carlssone9766d52009-09-09 21:33:21 +00003733 CXXMethodDecl *Method = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003734 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
Anders Carlssone9766d52009-09-09 21:33:21 +00003735 Kind, Method))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003736 return ExprError();
Anders Carlssone9766d52009-09-09 21:33:21 +00003737
3738 if (Method) {
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003739 OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind,
Anders Carlssone9766d52009-09-09 21:33:21 +00003740 Method, move(Op));
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003741
Anders Carlssone9766d52009-09-09 21:33:21 +00003742 if (CastArg.isInvalid())
3743 return ExprError();
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003744
Anders Carlssone9766d52009-09-09 21:33:21 +00003745 castExpr = CastArg.takeAs<Expr>();
3746 } else {
3747 Op.release();
Fariborz Jahanian3df87672009-08-29 19:15:16 +00003748 }
Mike Stump11289f42009-09-09 15:08:12 +00003749
Sebastian Redl9f831db2009-07-25 15:41:38 +00003750 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Mike Stump11289f42009-09-09 15:08:12 +00003751 Kind, castExpr, castType,
Anders Carlssonf10e4142009-08-07 22:21:05 +00003752 LParenLoc, RParenLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00003753}
3754
Nate Begeman5ec4b312009-08-10 23:49:36 +00003755/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
3756/// of comma binary operators.
3757Action::OwningExprResult
3758Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) {
3759 Expr *expr = EA.takeAs<Expr>();
3760 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
3761 if (!E)
3762 return Owned(expr);
Mike Stump11289f42009-09-09 15:08:12 +00003763
Nate Begeman5ec4b312009-08-10 23:49:36 +00003764 OwningExprResult Result(*this, E->getExpr(0));
Mike Stump11289f42009-09-09 15:08:12 +00003765
Nate Begeman5ec4b312009-08-10 23:49:36 +00003766 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
3767 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result),
3768 Owned(E->getExpr(i)));
Mike Stump11289f42009-09-09 15:08:12 +00003769
Nate Begeman5ec4b312009-08-10 23:49:36 +00003770 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result));
3771}
3772
3773Action::OwningExprResult
3774Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
3775 SourceLocation RParenLoc, ExprArg Op,
3776 QualType Ty) {
3777 ParenListExpr *PE = (ParenListExpr *)Op.get();
Mike Stump11289f42009-09-09 15:08:12 +00003778
3779 // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')'
Nate Begeman5ec4b312009-08-10 23:49:36 +00003780 // then handle it as such.
3781 if (getLangOptions().AltiVec && Ty->isVectorType()) {
3782 if (PE->getNumExprs() == 0) {
3783 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
3784 return ExprError();
3785 }
3786
3787 llvm::SmallVector<Expr *, 8> initExprs;
3788 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
3789 initExprs.push_back(PE->getExpr(i));
3790
3791 // FIXME: This means that pretty-printing the final AST will produce curly
3792 // braces instead of the original commas.
3793 Op.release();
Mike Stump11289f42009-09-09 15:08:12 +00003794 InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0],
Nate Begeman5ec4b312009-08-10 23:49:36 +00003795 initExprs.size(), RParenLoc);
3796 E->setType(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003797 return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,
Nate Begeman5ec4b312009-08-10 23:49:36 +00003798 Owned(E));
3799 } else {
Mike Stump11289f42009-09-09 15:08:12 +00003800 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman5ec4b312009-08-10 23:49:36 +00003801 // sequence of BinOp comma operators.
3802 Op = MaybeConvertParenListExprToParenExpr(S, move(Op));
3803 return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op));
3804 }
3805}
3806
Fariborz Jahanian906d8712009-11-25 01:26:41 +00003807Action::OwningExprResult Sema::ActOnParenOrParenListExpr(SourceLocation L,
Nate Begeman5ec4b312009-08-10 23:49:36 +00003808 SourceLocation R,
Fariborz Jahanian906d8712009-11-25 01:26:41 +00003809 MultiExprArg Val,
3810 TypeTy *TypeOfCast) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00003811 unsigned nexprs = Val.size();
3812 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
Fariborz Jahanian906d8712009-11-25 01:26:41 +00003813 assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list");
3814 Expr *expr;
3815 if (nexprs == 1 && TypeOfCast && !TypeIsVectorType(TypeOfCast))
3816 expr = new (Context) ParenExpr(L, R, exprs[0]);
3817 else
3818 expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
Nate Begeman5ec4b312009-08-10 23:49:36 +00003819 return Owned(expr);
3820}
3821
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003822/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3823/// In that case, lhs = cond.
Chris Lattner2c486602009-02-18 04:38:20 +00003824/// C99 6.5.15
3825QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3826 SourceLocation QuestionLoc) {
Sebastian Redl1a99f442009-04-16 17:51:27 +00003827 // C++ is sufficiently different to merit its own checker.
3828 if (getLangOptions().CPlusPlus)
3829 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3830
John McCall1fa36b72009-11-05 09:23:39 +00003831 CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional);
3832
Chris Lattner432cff52009-02-18 04:28:32 +00003833 UsualUnaryConversions(Cond);
3834 UsualUnaryConversions(LHS);
3835 UsualUnaryConversions(RHS);
3836 QualType CondTy = Cond->getType();
3837 QualType LHSTy = LHS->getType();
3838 QualType RHSTy = RHS->getType();
Steve Naroff31090012007-07-16 21:54:35 +00003839
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003840 // first, check the condition.
Sebastian Redl1a99f442009-04-16 17:51:27 +00003841 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3842 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3843 << CondTy;
3844 return QualType();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003845 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003846
Chris Lattnere2949f42008-01-06 22:42:25 +00003847 // Now check the two expressions.
Nate Begeman5ec4b312009-08-10 23:49:36 +00003848 if (LHSTy->isVectorType() || RHSTy->isVectorType())
3849 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor4619e432008-12-05 23:32:09 +00003850
Chris Lattnere2949f42008-01-06 22:42:25 +00003851 // If both operands have arithmetic type, do the usual arithmetic conversions
3852 // to find a common type: C99 6.5.15p3,5.
Chris Lattner432cff52009-02-18 04:28:32 +00003853 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3854 UsualArithmeticConversions(LHS, RHS);
3855 return LHS->getType();
Steve Naroffdbd9e892007-07-17 00:58:39 +00003856 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003857
Chris Lattnere2949f42008-01-06 22:42:25 +00003858 // If both operands are the same structure or union type, the result is that
3859 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003860 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3861 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattner2ab40a62007-11-26 01:40:58 +00003862 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00003863 // "If both the operands have structure or union type, the result has
Chris Lattnere2949f42008-01-06 22:42:25 +00003864 // that type." This implies that CV qualifiers are dropped.
Chris Lattner432cff52009-02-18 04:28:32 +00003865 return LHSTy.getUnqualifiedType();
Eli Friedmanba961a92009-03-23 00:24:07 +00003866 // FIXME: Type of conditional expression must be complete in C mode.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003867 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003868
Chris Lattnere2949f42008-01-06 22:42:25 +00003869 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffbf1516c2008-05-12 21:44:38 +00003870 // The following || allows only one side to be void (a GCC-ism).
Chris Lattner432cff52009-02-18 04:28:32 +00003871 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3872 if (!LHSTy->isVoidType())
3873 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3874 << RHS->getSourceRange();
3875 if (!RHSTy->isVoidType())
3876 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3877 << LHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003878 ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid);
3879 ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid);
Eli Friedman3e1852f2008-06-04 19:47:51 +00003880 return Context.VoidTy;
Steve Naroffbf1516c2008-05-12 21:44:38 +00003881 }
Steve Naroff039ad3c2008-01-08 01:11:38 +00003882 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3883 // the type of the other operand."
Steve Naroff6b712a72009-07-14 18:25:06 +00003884 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003885 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003886 // promote the null to a pointer.
3887 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown);
Chris Lattner432cff52009-02-18 04:28:32 +00003888 return LHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003889 }
Steve Naroff6b712a72009-07-14 18:25:06 +00003890 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003891 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003892 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown);
Chris Lattner432cff52009-02-18 04:28:32 +00003893 return RHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003894 }
Fariborz Jahaniana430f712009-12-10 19:47:41 +00003895
3896 // All objective-c pointer type analysis is done here.
3897 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
3898 QuestionLoc);
3899 if (!compositeType.isNull())
3900 return compositeType;
3901
3902
Steve Naroff05efa972009-07-01 14:36:47 +00003903 // Handle block pointer types.
3904 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3905 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3906 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3907 QualType destType = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003908 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
3909 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003910 return destType;
3911 }
3912 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
Fariborz Jahaniana430f712009-12-10 19:47:41 +00003913 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Steve Naroff05efa972009-07-01 14:36:47 +00003914 return QualType();
Mike Stump1b821b42009-05-07 03:14:14 +00003915 }
Steve Naroff05efa972009-07-01 14:36:47 +00003916 // We have 2 block pointer types.
3917 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3918 // Two identical block pointer types are always compatible.
Mike Stump1b821b42009-05-07 03:14:14 +00003919 return LHSTy;
3920 }
Steve Naroff05efa972009-07-01 14:36:47 +00003921 // The block pointer types aren't identical, continue checking.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003922 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3923 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Fariborz Jahaniana430f712009-12-10 19:47:41 +00003924
Steve Naroff05efa972009-07-01 14:36:47 +00003925 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3926 rhptee.getUnqualifiedType())) {
Mike Stump1b821b42009-05-07 03:14:14 +00003927 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
Fariborz Jahaniana430f712009-12-10 19:47:41 +00003928 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Mike Stump1b821b42009-05-07 03:14:14 +00003929 // In this situation, we assume void* type. No especially good
3930 // reason, but this is what gcc does, and we do have to pick
3931 // to get a consistent AST.
3932 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003933 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3934 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Mike Stump1b821b42009-05-07 03:14:14 +00003935 return incompatTy;
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003936 }
Steve Naroff05efa972009-07-01 14:36:47 +00003937 // The block pointer types are compatible.
Eli Friedman06ed2a52009-10-20 08:27:19 +00003938 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3939 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroffea4c7802009-04-08 17:05:15 +00003940 return LHSTy;
3941 }
Fariborz Jahaniana430f712009-12-10 19:47:41 +00003942
Steve Naroff05efa972009-07-01 14:36:47 +00003943 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3944 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3945 // get the "pointed to" types
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003946 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3947 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff05efa972009-07-01 14:36:47 +00003948
3949 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3950 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3951 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall8ccfcb52009-09-24 19:53:00 +00003952 QualType destPointee
3953 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003954 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003955 // Add qualifiers if necessary.
3956 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3957 // Promote to void*.
3958 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003959 return destType;
3960 }
3961 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003962 QualType destPointee
3963 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003964 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003965 // Add qualifiers if necessary.
Eli Friedmanb0bc5592009-11-17 01:22:05 +00003966 ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003967 // Promote to void*.
Eli Friedmanb0bc5592009-11-17 01:22:05 +00003968 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003969 return destType;
3970 }
3971
3972 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3973 // Two identical pointer types are always compatible.
3974 return LHSTy;
3975 }
3976 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3977 rhptee.getUnqualifiedType())) {
3978 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3979 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3980 // In this situation, we assume void* type. No especially good
3981 // reason, but this is what gcc does, and we do have to pick
3982 // to get a consistent AST.
3983 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003984 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3985 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003986 return incompatTy;
3987 }
3988 // The pointer types are compatible.
3989 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3990 // differently qualified versions of compatible types, the result type is
3991 // a pointer to an appropriately qualified version of the *composite*
3992 // type.
3993 // FIXME: Need to calculate the composite type.
3994 // FIXME: Need to add qualifiers
Eli Friedman06ed2a52009-10-20 08:27:19 +00003995 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3996 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003997 return LHSTy;
3998 }
Mike Stump11289f42009-09-09 15:08:12 +00003999
Steve Naroff05efa972009-07-01 14:36:47 +00004000 // GCC compatibility: soften pointer/integer mismatch.
4001 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
4002 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
4003 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00004004 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff05efa972009-07-01 14:36:47 +00004005 return RHSTy;
4006 }
4007 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
4008 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
4009 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00004010 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff05efa972009-07-01 14:36:47 +00004011 return LHSTy;
4012 }
Daniel Dunbar484603b2008-09-11 23:12:46 +00004013
Chris Lattnere2949f42008-01-06 22:42:25 +00004014 // Otherwise, the operands are not compatible.
Chris Lattner432cff52009-02-18 04:28:32 +00004015 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
4016 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00004017 return QualType();
Steve Narofff8a28c52007-05-15 20:29:32 +00004018}
4019
Fariborz Jahaniana430f712009-12-10 19:47:41 +00004020/// FindCompositeObjCPointerType - Helper method to find composite type of
4021/// two objective-c pointer types of the two input expressions.
4022QualType Sema::FindCompositeObjCPointerType(Expr *&LHS, Expr *&RHS,
4023 SourceLocation QuestionLoc) {
4024 QualType LHSTy = LHS->getType();
4025 QualType RHSTy = RHS->getType();
4026
4027 // Handle things like Class and struct objc_class*. Here we case the result
4028 // to the pseudo-builtin, because that will be implicitly cast back to the
4029 // redefinition type if an attempt is made to access its fields.
4030 if (LHSTy->isObjCClassType() &&
4031 (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
4032 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
4033 return LHSTy;
4034 }
4035 if (RHSTy->isObjCClassType() &&
4036 (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
4037 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
4038 return RHSTy;
4039 }
4040 // And the same for struct objc_object* / id
4041 if (LHSTy->isObjCIdType() &&
4042 (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
4043 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
4044 return LHSTy;
4045 }
4046 if (RHSTy->isObjCIdType() &&
4047 (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
4048 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
4049 return RHSTy;
4050 }
4051 // And the same for struct objc_selector* / SEL
4052 if (Context.isObjCSelType(LHSTy) &&
4053 (RHSTy.getDesugaredType() == Context.ObjCSelRedefinitionType)) {
4054 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
4055 return LHSTy;
4056 }
4057 if (Context.isObjCSelType(RHSTy) &&
4058 (LHSTy.getDesugaredType() == Context.ObjCSelRedefinitionType)) {
4059 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
4060 return RHSTy;
4061 }
4062 // Check constraints for Objective-C object pointers types.
4063 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
4064
4065 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
4066 // Two identical object pointer types are always compatible.
4067 return LHSTy;
4068 }
4069 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
4070 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
4071 QualType compositeType = LHSTy;
4072
4073 // If both operands are interfaces and either operand can be
4074 // assigned to the other, use that type as the composite
4075 // type. This allows
4076 // xxx ? (A*) a : (B*) b
4077 // where B is a subclass of A.
4078 //
4079 // Additionally, as for assignment, if either type is 'id'
4080 // allow silent coercion. Finally, if the types are
4081 // incompatible then make sure to use 'id' as the composite
4082 // type so the result is acceptable for sending messages to.
4083
4084 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
4085 // It could return the composite type.
4086 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
4087 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
4088 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
4089 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
4090 } else if ((LHSTy->isObjCQualifiedIdType() ||
4091 RHSTy->isObjCQualifiedIdType()) &&
4092 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
4093 // Need to handle "id<xx>" explicitly.
4094 // GCC allows qualified id and any Objective-C type to devolve to
4095 // id. Currently localizing to here until clear this should be
4096 // part of ObjCQualifiedIdTypesAreCompatible.
4097 compositeType = Context.getObjCIdType();
4098 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
4099 compositeType = Context.getObjCIdType();
4100 } else if (!(compositeType =
4101 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())
4102 ;
4103 else {
4104 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
4105 << LHSTy << RHSTy
4106 << LHS->getSourceRange() << RHS->getSourceRange();
4107 QualType incompatTy = Context.getObjCIdType();
4108 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
4109 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
4110 return incompatTy;
4111 }
4112 // The object pointer types are compatible.
4113 ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast);
4114 ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast);
4115 return compositeType;
4116 }
4117 // Check Objective-C object pointer types and 'void *'
4118 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
4119 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
4120 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
4121 QualType destPointee
4122 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
4123 QualType destType = Context.getPointerType(destPointee);
4124 // Add qualifiers if necessary.
4125 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
4126 // Promote to void*.
4127 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
4128 return destType;
4129 }
4130 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
4131 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
4132 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
4133 QualType destPointee
4134 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
4135 QualType destType = Context.getPointerType(destPointee);
4136 // Add qualifiers if necessary.
4137 ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp);
4138 // Promote to void*.
4139 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
4140 return destType;
4141 }
4142 return QualType();
4143}
4144
Steve Naroff83895f72007-09-16 03:34:24 +00004145/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattnere168f762006-11-10 05:29:30 +00004146/// in the case of a the GNU conditional expr extension.
Sebastian Redlb5d49352009-01-19 22:31:54 +00004147Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
4148 SourceLocation ColonLoc,
4149 ExprArg Cond, ExprArg LHS,
4150 ExprArg RHS) {
4151 Expr *CondExpr = (Expr *) Cond.get();
4152 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattner2ab40a62007-11-26 01:40:58 +00004153
4154 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
4155 // was the condition.
4156 bool isLHSNull = LHSExpr == 0;
4157 if (isLHSNull)
4158 LHSExpr = CondExpr;
Sebastian Redlb5d49352009-01-19 22:31:54 +00004159
4160 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattnerdaaa9f22007-07-16 21:39:03 +00004161 RHSExpr, QuestionLoc);
Steve Narofff8a28c52007-05-15 20:29:32 +00004162 if (result.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00004163 return ExprError();
4164
4165 Cond.release();
4166 LHS.release();
4167 RHS.release();
Douglas Gregor7e112b02009-08-26 14:37:04 +00004168 return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc,
Steve Narofff6009ed2009-01-21 00:14:39 +00004169 isLHSNull ? 0 : LHSExpr,
Douglas Gregor7e112b02009-08-26 14:37:04 +00004170 ColonLoc, RHSExpr, result));
Chris Lattnere168f762006-11-10 05:29:30 +00004171}
4172
Steve Naroff3f597292007-05-11 22:18:03 +00004173// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump4e1f26a2009-02-19 03:04:26 +00004174// being closely modeled after the C99 spec:-). The odd characteristic of this
Steve Naroff3f597292007-05-11 22:18:03 +00004175// routine is it effectively iqnores the qualifiers on the top level pointee.
4176// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
4177// FIXME: add a couple examples in this comment.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004178Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00004179Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
Steve Naroff3f597292007-05-11 22:18:03 +00004180 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004181
David Chisnall9f57c292009-08-17 16:35:33 +00004182 if ((lhsType->isObjCClassType() &&
4183 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
4184 (rhsType->isObjCClassType() &&
4185 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
4186 return Compatible;
4187 }
4188
Steve Naroff1f4d7272007-05-11 04:00:31 +00004189 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004190 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
4191 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004192
Steve Naroff1f4d7272007-05-11 04:00:31 +00004193 // make sure we operate on the canonical type
Chris Lattner574dee62008-07-26 22:17:49 +00004194 lhptee = Context.getCanonicalType(lhptee);
4195 rhptee = Context.getCanonicalType(rhptee);
Steve Naroff1f4d7272007-05-11 04:00:31 +00004196
Chris Lattner9bad62c2008-01-04 18:04:52 +00004197 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004198
4199 // C99 6.5.16.1p1: This following citation is common to constraints
4200 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
4201 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianece85822009-02-17 18:27:45 +00004202 // FIXME: Handle ExtQualType
Douglas Gregor9a657932008-10-21 23:43:52 +00004203 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner9bad62c2008-01-04 18:04:52 +00004204 ConvTy = CompatiblePointerDiscardsQualifiers;
Steve Naroff3f597292007-05-11 22:18:03 +00004205
Mike Stump4e1f26a2009-02-19 03:04:26 +00004206 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
4207 // incomplete type and the other is a pointer to a qualified or unqualified
Steve Naroff3f597292007-05-11 22:18:03 +00004208 // version of void...
Chris Lattner0a788432008-01-03 22:56:36 +00004209 if (lhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00004210 if (rhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00004211 return ConvTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004212
Chris Lattner0a788432008-01-03 22:56:36 +00004213 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00004214 assert(rhptee->isFunctionType());
4215 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00004216 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004217
Chris Lattner0a788432008-01-03 22:56:36 +00004218 if (rhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00004219 if (lhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00004220 return ConvTy;
Chris Lattner0a788432008-01-03 22:56:36 +00004221
4222 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00004223 assert(lhptee->isFunctionType());
4224 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00004225 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004226 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Steve Naroff3f597292007-05-11 22:18:03 +00004227 // unqualified versions of compatible types, ...
Eli Friedman80160bd2009-03-22 23:59:44 +00004228 lhptee = lhptee.getUnqualifiedType();
4229 rhptee = rhptee.getUnqualifiedType();
4230 if (!Context.typesAreCompatible(lhptee, rhptee)) {
4231 // Check if the pointee types are compatible ignoring the sign.
4232 // We explicitly check for char so that we catch "char" vs
4233 // "unsigned char" on systems where "char" is unsigned.
Chris Lattnerec3a1562009-10-17 20:33:28 +00004234 if (lhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00004235 lhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00004236 else if (lhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00004237 lhptee = Context.getCorrespondingUnsignedType(lhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00004238
4239 if (rhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00004240 rhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00004241 else if (rhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00004242 rhptee = Context.getCorrespondingUnsignedType(rhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00004243
Eli Friedman80160bd2009-03-22 23:59:44 +00004244 if (lhptee == rhptee) {
4245 // Types are compatible ignoring the sign. Qualifier incompatibility
4246 // takes priority over sign incompatibility because the sign
4247 // warning can be disabled.
4248 if (ConvTy != Compatible)
4249 return ConvTy;
4250 return IncompatiblePointerSign;
4251 }
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00004252
4253 // If we are a multi-level pointer, it's possible that our issue is simply
4254 // one of qualification - e.g. char ** -> const char ** is not allowed. If
4255 // the eventual target type is the same and the pointers have the same
4256 // level of indirection, this must be the issue.
4257 if (lhptee->isPointerType() && rhptee->isPointerType()) {
4258 do {
4259 lhptee = lhptee->getAs<PointerType>()->getPointeeType();
4260 rhptee = rhptee->getAs<PointerType>()->getPointeeType();
4261
4262 lhptee = Context.getCanonicalType(lhptee);
4263 rhptee = Context.getCanonicalType(rhptee);
4264 } while (lhptee->isPointerType() && rhptee->isPointerType());
4265
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00004266 if (Context.hasSameUnqualifiedType(lhptee, rhptee))
Alexis Hunt6f3de502009-11-08 07:46:34 +00004267 return IncompatibleNestedPointerQualifiers;
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00004268 }
4269
Eli Friedman80160bd2009-03-22 23:59:44 +00004270 // General pointer incompatibility takes priority over qualifiers.
Mike Stump11289f42009-09-09 15:08:12 +00004271 return IncompatiblePointer;
Eli Friedman80160bd2009-03-22 23:59:44 +00004272 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00004273 return ConvTy;
Steve Naroff1f4d7272007-05-11 04:00:31 +00004274}
4275
Steve Naroff081c7422008-09-04 15:10:53 +00004276/// CheckBlockPointerTypesForAssignment - This routine determines whether two
4277/// block pointer types are compatible or whether a block and normal pointer
4278/// are compatible. It is more restrict than comparing two function pointer
4279// types.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004280Sema::AssignConvertType
4281Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff081c7422008-09-04 15:10:53 +00004282 QualType rhsType) {
4283 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004284
Steve Naroff081c7422008-09-04 15:10:53 +00004285 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004286 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
4287 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004288
Steve Naroff081c7422008-09-04 15:10:53 +00004289 // make sure we operate on the canonical type
4290 lhptee = Context.getCanonicalType(lhptee);
4291 rhptee = Context.getCanonicalType(rhptee);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004292
Steve Naroff081c7422008-09-04 15:10:53 +00004293 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004294
Steve Naroff081c7422008-09-04 15:10:53 +00004295 // For blocks we enforce that qualifiers are identical.
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00004296 if (lhptee.getLocalCVRQualifiers() != rhptee.getLocalCVRQualifiers())
Steve Naroff081c7422008-09-04 15:10:53 +00004297 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004298
Eli Friedmana6638ca2009-06-08 05:08:54 +00004299 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stump4e1f26a2009-02-19 03:04:26 +00004300 return IncompatibleBlockPointer;
Steve Naroff081c7422008-09-04 15:10:53 +00004301 return ConvTy;
4302}
4303
Fariborz Jahanian410f2eb2009-12-08 18:24:49 +00004304/// CheckObjCPointerTypesForAssignment - Compares two objective-c pointer types
4305/// for assignment compatibility.
4306Sema::AssignConvertType
4307Sema::CheckObjCPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
4308 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
4309 return Compatible;
4310 QualType lhptee =
4311 lhsType->getAs<ObjCObjectPointerType>()->getPointeeType();
4312 QualType rhptee =
4313 rhsType->getAs<ObjCObjectPointerType>()->getPointeeType();
4314 // make sure we operate on the canonical type
4315 lhptee = Context.getCanonicalType(lhptee);
4316 rhptee = Context.getCanonicalType(rhptee);
4317 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
4318 return CompatiblePointerDiscardsQualifiers;
4319
4320 if (Context.typesAreCompatible(lhsType, rhsType))
4321 return Compatible;
4322 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
4323 return IncompatibleObjCQualifiedId;
4324 return IncompatiblePointer;
4325}
4326
Mike Stump4e1f26a2009-02-19 03:04:26 +00004327/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
4328/// has code to accommodate several GCC extensions when type checking
Steve Naroff17f76e02007-05-03 21:03:48 +00004329/// pointers. Here are some objectionable examples that GCC considers warnings:
4330///
4331/// int a, *pint;
4332/// short *pshort;
4333/// struct foo *pfoo;
4334///
4335/// pint = pshort; // warning: assignment from incompatible pointer type
4336/// a = pint; // warning: assignment makes integer from pointer without a cast
4337/// pint = a; // warning: assignment makes pointer from integer without a cast
4338/// pint = pfoo; // warning: assignment from incompatible pointer type
4339///
4340/// As a result, the code for dealing with pointers is more complex than the
Mike Stump4e1f26a2009-02-19 03:04:26 +00004341/// C99 spec dictates.
Steve Naroff17f76e02007-05-03 21:03:48 +00004342///
Chris Lattner9bad62c2008-01-04 18:04:52 +00004343Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00004344Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnera52c2f22008-01-04 23:18:45 +00004345 // Get canonical types. We're not formatting these types, just comparing
4346 // them.
Chris Lattner574dee62008-07-26 22:17:49 +00004347 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
4348 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedman3360d892008-05-30 18:07:22 +00004349
4350 if (lhsType == rhsType)
Chris Lattnerf5c973d2008-01-07 17:51:46 +00004351 return Compatible; // Common case: fast path an exact match.
Steve Naroff44fd8ff2007-07-24 21:46:40 +00004352
David Chisnall9f57c292009-08-17 16:35:33 +00004353 if ((lhsType->isObjCClassType() &&
4354 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
4355 (rhsType->isObjCClassType() &&
4356 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
4357 return Compatible;
4358 }
4359
Douglas Gregor6b754842008-10-28 00:22:11 +00004360 // If the left-hand side is a reference type, then we are in a
4361 // (rare!) case where we've allowed the use of references in C,
4362 // e.g., as a parameter type in a built-in function. In this case,
4363 // just make sure that the type referenced is compatible with the
4364 // right-hand side type. The caller is responsible for adjusting
4365 // lhsType so that the resulting expression does not have reference
4366 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004367 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor6b754842008-10-28 00:22:11 +00004368 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson24ebce62007-10-12 23:56:29 +00004369 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00004370 return Incompatible;
Fariborz Jahaniana1e34202007-12-19 17:45:58 +00004371 }
Nate Begemanbd956c42009-06-28 02:36:38 +00004372 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
4373 // to the same ExtVector type.
4374 if (lhsType->isExtVectorType()) {
4375 if (rhsType->isExtVectorType())
4376 return lhsType == rhsType ? Compatible : Incompatible;
4377 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
4378 return Compatible;
4379 }
Mike Stump11289f42009-09-09 15:08:12 +00004380
Nate Begeman191a6b12008-07-14 18:02:46 +00004381 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00004382 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stump4e1f26a2009-02-19 03:04:26 +00004383 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begeman191a6b12008-07-14 18:02:46 +00004384 // no bits are changed but the result type is different.
Chris Lattner881a2122008-01-04 23:32:24 +00004385 if (getLangOptions().LaxVectorConversions &&
4386 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00004387 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004388 return IncompatibleVectors;
Chris Lattner881a2122008-01-04 23:32:24 +00004389 }
4390 return Incompatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004391 }
Eli Friedman3360d892008-05-30 18:07:22 +00004392
Chris Lattner881a2122008-01-04 23:32:24 +00004393 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Steve Naroff98cf3e92007-06-06 18:38:38 +00004394 return Compatible;
Eli Friedman3360d892008-05-30 18:07:22 +00004395
Chris Lattnerec646832008-04-07 06:49:41 +00004396 if (isa<PointerType>(lhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00004397 if (rhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00004398 return IntToPointer;
Eli Friedman3360d892008-05-30 18:07:22 +00004399
Chris Lattnerec646832008-04-07 06:49:41 +00004400 if (isa<PointerType>(rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00004401 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004402
Steve Naroffaccc4882009-07-20 17:56:53 +00004403 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004404 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00004405 if (lhsType->isVoidPointerType()) // an exception to the rule.
4406 return Compatible;
4407 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00004408 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004409 if (rhsType->getAs<BlockPointerType>()) {
4410 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00004411 return Compatible;
Steve Naroff32d072c2008-09-29 18:10:17 +00004412
4413 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004414 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00004415 return Compatible;
4416 }
Steve Naroff081c7422008-09-04 15:10:53 +00004417 return Incompatible;
4418 }
4419
4420 if (isa<BlockPointerType>(lhsType)) {
4421 if (rhsType->isIntegerType())
Eli Friedman8163b7a2009-02-25 04:20:42 +00004422 return IntToBlockPointer;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004423
Steve Naroff32d072c2008-09-29 18:10:17 +00004424 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004425 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00004426 return Compatible;
4427
Steve Naroff081c7422008-09-04 15:10:53 +00004428 if (rhsType->isBlockPointerType())
4429 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004430
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004431 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff081c7422008-09-04 15:10:53 +00004432 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00004433 return Compatible;
Steve Naroff081c7422008-09-04 15:10:53 +00004434 }
Chris Lattnera52c2f22008-01-04 23:18:45 +00004435 return Incompatible;
4436 }
4437
Steve Naroff7cae42b2009-07-10 23:34:53 +00004438 if (isa<ObjCObjectPointerType>(lhsType)) {
4439 if (rhsType->isIntegerType())
4440 return IntToPointer;
Mike Stump11289f42009-09-09 15:08:12 +00004441
Steve Naroffaccc4882009-07-20 17:56:53 +00004442 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004443 if (isa<PointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00004444 if (rhsType->isVoidPointerType()) // an exception to the rule.
4445 return Compatible;
4446 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00004447 }
4448 if (rhsType->isObjCObjectPointerType()) {
Fariborz Jahanian410f2eb2009-12-08 18:24:49 +00004449 return CheckObjCPointerTypesForAssignment(lhsType, rhsType);
Steve Naroff7cae42b2009-07-10 23:34:53 +00004450 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004451 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00004452 if (RHSPT->getPointeeType()->isVoidType())
4453 return Compatible;
4454 }
4455 // Treat block pointers as objects.
4456 if (rhsType->isBlockPointerType())
4457 return Compatible;
4458 return Incompatible;
4459 }
Chris Lattnerec646832008-04-07 06:49:41 +00004460 if (isa<PointerType>(rhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00004461 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedman3360d892008-05-30 18:07:22 +00004462 if (lhsType == Context.BoolTy)
4463 return Compatible;
4464
4465 if (lhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00004466 return PointerToInt;
Steve Naroff98cf3e92007-06-06 18:38:38 +00004467
Mike Stump4e1f26a2009-02-19 03:04:26 +00004468 if (isa<PointerType>(lhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00004469 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004470
4471 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004472 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00004473 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00004474 return Incompatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00004475 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00004476 if (isa<ObjCObjectPointerType>(rhsType)) {
4477 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
4478 if (lhsType == Context.BoolTy)
4479 return Compatible;
4480
4481 if (lhsType->isIntegerType())
4482 return PointerToInt;
4483
Steve Naroffaccc4882009-07-20 17:56:53 +00004484 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00004485 if (isa<PointerType>(lhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00004486 if (lhsType->isVoidPointerType()) // an exception to the rule.
4487 return Compatible;
4488 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00004489 }
4490 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004491 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff7cae42b2009-07-10 23:34:53 +00004492 return Compatible;
4493 return Incompatible;
4494 }
Eli Friedman3360d892008-05-30 18:07:22 +00004495
Chris Lattnera52c2f22008-01-04 23:18:45 +00004496 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattnerec646832008-04-07 06:49:41 +00004497 if (Context.typesAreCompatible(lhsType, rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00004498 return Compatible;
Bill Wendling216423b2007-05-30 06:30:29 +00004499 }
Steve Naroff98cf3e92007-06-06 18:38:38 +00004500 return Incompatible;
Steve Naroff9eb24652007-05-02 21:58:15 +00004501}
4502
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004503/// \brief Constructs a transparent union from an expression that is
4504/// used to initialize the transparent union.
Mike Stump11289f42009-09-09 15:08:12 +00004505static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004506 QualType UnionType, FieldDecl *Field) {
4507 // Build an initializer list that designates the appropriate member
4508 // of the transparent union.
4509 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
4510 &E, 1,
4511 SourceLocation());
4512 Initializer->setType(UnionType);
4513 Initializer->setInitializedFieldInUnion(Field);
4514
4515 // Build a compound literal constructing a value of the transparent
4516 // union type from this initializer list.
4517 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
4518 false);
4519}
4520
4521Sema::AssignConvertType
4522Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
4523 QualType FromType = rExpr->getType();
4524
Mike Stump11289f42009-09-09 15:08:12 +00004525 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004526 // transparent_union GCC extension.
4527 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00004528 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004529 return Incompatible;
4530
4531 // The field to initialize within the transparent union.
4532 RecordDecl *UD = UT->getDecl();
4533 FieldDecl *InitField = 0;
4534 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004535 for (RecordDecl::field_iterator it = UD->field_begin(),
4536 itend = UD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004537 it != itend; ++it) {
4538 if (it->getType()->isPointerType()) {
4539 // If the transparent union contains a pointer type, we allow:
4540 // 1) void pointer
4541 // 2) null pointer constant
4542 if (FromType->isPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004543 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004544 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004545 InitField = *it;
4546 break;
4547 }
Mike Stump11289f42009-09-09 15:08:12 +00004548
Douglas Gregor56751b52009-09-25 04:25:58 +00004549 if (rExpr->isNullPointerConstant(Context,
4550 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004551 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004552 InitField = *it;
4553 break;
4554 }
4555 }
4556
4557 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
4558 == Compatible) {
4559 InitField = *it;
4560 break;
4561 }
4562 }
4563
4564 if (!InitField)
4565 return Incompatible;
4566
4567 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
4568 return Compatible;
4569}
4570
Chris Lattner9bad62c2008-01-04 18:04:52 +00004571Sema::AssignConvertType
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004572Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor9a657932008-10-21 23:43:52 +00004573 if (getLangOptions().CPlusPlus) {
4574 if (!lhsType->isRecordType()) {
4575 // C++ 5.17p3: If the left operand is not of class type, the
4576 // expression is implicitly converted (C++ 4) to the
4577 // cv-unqualified type of the left operand.
Douglas Gregor47d3f272008-12-19 17:40:08 +00004578 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00004579 AA_Assigning))
Douglas Gregor9a657932008-10-21 23:43:52 +00004580 return Incompatible;
Chris Lattner0d5640c2009-04-12 09:02:39 +00004581 return Compatible;
Douglas Gregor9a657932008-10-21 23:43:52 +00004582 }
4583
4584 // FIXME: Currently, we fall through and treat C++ classes like C
4585 // structures.
4586 }
4587
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004588 // C99 6.5.16.1p1: the left operand is a pointer and the right is
4589 // a null pointer constant.
Mike Stump11289f42009-09-09 15:08:12 +00004590 if ((lhsType->isPointerType() ||
4591 lhsType->isObjCObjectPointerType() ||
Mike Stump4e1f26a2009-02-19 03:04:26 +00004592 lhsType->isBlockPointerType())
Douglas Gregor56751b52009-09-25 04:25:58 +00004593 && rExpr->isNullPointerConstant(Context,
4594 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004595 ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown);
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004596 return Compatible;
4597 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004598
Chris Lattnere6dcd502007-10-16 02:55:40 +00004599 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004600 // conversion of functions/arrays. If the conversion were done for all
Douglas Gregora121b752009-11-03 16:56:39 +00004601 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004602 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattnere6dcd502007-10-16 02:55:40 +00004603 //
Mike Stump4e1f26a2009-02-19 03:04:26 +00004604 // Suppress this for references: C++ 8.5.3p5.
Chris Lattnere6dcd502007-10-16 02:55:40 +00004605 if (!lhsType->isReferenceType())
4606 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004607
Chris Lattner9bad62c2008-01-04 18:04:52 +00004608 Sema::AssignConvertType result =
4609 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00004610
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004611 // C99 6.5.16.1p2: The value of the right operand is converted to the
4612 // type of the assignment expression.
Douglas Gregor6b754842008-10-28 00:22:11 +00004613 // CheckAssignmentConstraints allows the left-hand side to be a reference,
4614 // so that we can use references in built-in functions even in C.
4615 // The getNonReferenceType() call makes sure that the resulting expression
4616 // does not have reference type.
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004617 if (result != Incompatible && rExpr->getType() != lhsType)
Eli Friedman06ed2a52009-10-20 08:27:19 +00004618 ImpCastExprToType(rExpr, lhsType.getNonReferenceType(),
4619 CastExpr::CK_Unknown);
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004620 return result;
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004621}
4622
Chris Lattner326f7572008-11-18 01:30:42 +00004623QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004624 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00004625 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004626 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner5c11c412007-12-12 05:47:28 +00004627 return QualType();
Steve Naroff6f49f5d2007-05-29 14:23:36 +00004628}
4629
Mike Stump4e1f26a2009-02-19 03:04:26 +00004630inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff7a5af782007-07-13 16:58:59 +00004631 Expr *&rex) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00004632 // For conversion purposes, we ignore any qualifiers.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004633 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +00004634 QualType lhsType =
4635 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
4636 QualType rhsType =
4637 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004638
Nate Begeman191a6b12008-07-14 18:02:46 +00004639 // If the vector types are identical, return.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004640 if (lhsType == rhsType)
Steve Naroff84ff4b42007-07-09 21:31:10 +00004641 return lhsType;
Nate Begeman330aaa72007-12-30 02:59:45 +00004642
Nate Begeman191a6b12008-07-14 18:02:46 +00004643 // Handle the case of a vector & extvector type of the same size and element
4644 // type. It would be nice if we only had one vector type someday.
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004645 if (getLangOptions().LaxVectorConversions) {
4646 // FIXME: Should we warn here?
John McCall9dd450b2009-09-21 23:43:11 +00004647 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
4648 if (const VectorType *RV = rhsType->getAs<VectorType>())
Nate Begeman191a6b12008-07-14 18:02:46 +00004649 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004650 LV->getNumElements() == RV->getNumElements()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00004651 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004652 }
4653 }
4654 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004655
Nate Begemanbd956c42009-06-28 02:36:38 +00004656 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
4657 // swap back (so that we don't reverse the inputs to a subtract, for instance.
4658 bool swapped = false;
4659 if (rhsType->isExtVectorType()) {
4660 swapped = true;
4661 std::swap(rex, lex);
4662 std::swap(rhsType, lhsType);
4663 }
Mike Stump11289f42009-09-09 15:08:12 +00004664
Nate Begeman886448d2009-06-28 19:12:57 +00004665 // Handle the case of an ext vector and scalar.
John McCall9dd450b2009-09-21 23:43:11 +00004666 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begemanbd956c42009-06-28 02:36:38 +00004667 QualType EltTy = LV->getElementType();
4668 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
4669 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004670 ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast);
Nate Begemanbd956c42009-06-28 02:36:38 +00004671 if (swapped) std::swap(rex, lex);
4672 return lhsType;
4673 }
4674 }
4675 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
4676 rhsType->isRealFloatingType()) {
4677 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004678 ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast);
Nate Begemanbd956c42009-06-28 02:36:38 +00004679 if (swapped) std::swap(rex, lex);
4680 return lhsType;
4681 }
Nate Begeman330aaa72007-12-30 02:59:45 +00004682 }
4683 }
Mike Stump11289f42009-09-09 15:08:12 +00004684
Nate Begeman886448d2009-06-28 19:12:57 +00004685 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattner377d1f82008-11-18 22:52:51 +00004686 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004687 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004688 << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff84ff4b42007-07-09 21:31:10 +00004689 return QualType();
Sebastian Redl112a97662009-02-07 00:15:38 +00004690}
4691
Steve Naroff218bc2b2007-05-04 21:54:46 +00004692inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004693 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar060d5e22009-01-05 22:42:10 +00004694 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004695 return CheckVectorOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004696
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004697 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004698
Steve Naroffdbd9e892007-07-17 00:58:39 +00004699 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004700 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004701 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004702}
4703
Steve Naroff218bc2b2007-05-04 21:54:46 +00004704inline QualType Sema::CheckRemainderOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004705 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar0d2bfec2009-01-05 22:55:36 +00004706 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4707 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
4708 return CheckVectorOperands(Loc, lex, rex);
4709 return InvalidOperands(Loc, lex, rex);
4710 }
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004711
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004712 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004713
Steve Naroffdbd9e892007-07-17 00:58:39 +00004714 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004715 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004716 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004717}
4718
4719inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Mike Stump11289f42009-09-09 15:08:12 +00004720 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004721 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4722 QualType compType = CheckVectorOperands(Loc, lex, rex);
4723 if (CompLHSTy) *CompLHSTy = compType;
4724 return compType;
4725 }
Steve Naroff7a5af782007-07-13 16:58:59 +00004726
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004727 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedman8e122982008-05-18 18:08:51 +00004728
Steve Naroffe4718892007-04-27 18:30:00 +00004729 // handle the common case first (both operands are arithmetic).
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004730 if (lex->getType()->isArithmeticType() &&
4731 rex->getType()->isArithmeticType()) {
4732 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004733 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004734 }
Steve Naroff218bc2b2007-05-04 21:54:46 +00004735
Eli Friedman8e122982008-05-18 18:08:51 +00004736 // Put any potential pointer into PExp
4737 Expr* PExp = lex, *IExp = rex;
Steve Naroff6b712a72009-07-14 18:25:06 +00004738 if (IExp->getType()->isAnyPointerType())
Eli Friedman8e122982008-05-18 18:08:51 +00004739 std::swap(PExp, IExp);
4740
Steve Naroff6b712a72009-07-14 18:25:06 +00004741 if (PExp->getType()->isAnyPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +00004742
Eli Friedman8e122982008-05-18 18:08:51 +00004743 if (IExp->getType()->isIntegerType()) {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004744 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00004745
Chris Lattner12bdebb2009-04-24 23:50:08 +00004746 // Check for arithmetic on pointers to incomplete types.
4747 if (PointeeTy->isVoidType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004748 if (getLangOptions().CPlusPlus) {
4749 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattner3b054132008-11-19 05:08:23 +00004750 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregordd430f72009-01-19 19:26:10 +00004751 return QualType();
Eli Friedman8e122982008-05-18 18:08:51 +00004752 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004753
4754 // GNU extension: arithmetic on pointer to void
4755 Diag(Loc, diag::ext_gnu_void_ptr)
4756 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner12bdebb2009-04-24 23:50:08 +00004757 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004758 if (getLangOptions().CPlusPlus) {
4759 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
4760 << lex->getType() << lex->getSourceRange();
4761 return QualType();
4762 }
4763
4764 // GNU extension: arithmetic on pointer to function
4765 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4766 << lex->getType() << lex->getSourceRange();
Steve Naroffa63372d2009-07-13 21:32:29 +00004767 } else {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004768 // Check if we require a complete type.
Mike Stump11289f42009-09-09 15:08:12 +00004769 if (((PExp->getType()->isPointerType() &&
Steve Naroffa63372d2009-07-13 21:32:29 +00004770 !PExp->getType()->isDependentType()) ||
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004771 PExp->getType()->isObjCObjectPointerType()) &&
4772 RequireCompleteType(Loc, PointeeTy,
Mike Stump11289f42009-09-09 15:08:12 +00004773 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
4774 << PExp->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004775 << PExp->getType()))
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004776 return QualType();
4777 }
Chris Lattner12bdebb2009-04-24 23:50:08 +00004778 // Diagnose bad cases where we step over interface counts.
4779 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4780 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4781 << PointeeTy << PExp->getSourceRange();
4782 return QualType();
4783 }
Mike Stump11289f42009-09-09 15:08:12 +00004784
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004785 if (CompLHSTy) {
Eli Friedman629ffb92009-08-20 04:21:42 +00004786 QualType LHSTy = Context.isPromotableBitField(lex);
4787 if (LHSTy.isNull()) {
4788 LHSTy = lex->getType();
4789 if (LHSTy->isPromotableIntegerType())
4790 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004791 }
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004792 *CompLHSTy = LHSTy;
4793 }
Eli Friedman8e122982008-05-18 18:08:51 +00004794 return PExp->getType();
4795 }
4796 }
4797
Chris Lattner326f7572008-11-18 01:30:42 +00004798 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004799}
4800
Chris Lattner2a3569b2008-04-07 05:30:13 +00004801// C99 6.5.6
4802QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004803 SourceLocation Loc, QualType* CompLHSTy) {
4804 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4805 QualType compType = CheckVectorOperands(Loc, lex, rex);
4806 if (CompLHSTy) *CompLHSTy = compType;
4807 return compType;
4808 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004809
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004810 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004811
Chris Lattner4d62f422007-12-09 21:53:25 +00004812 // Enforce type constraints: C99 6.5.6p3.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004813
Chris Lattner4d62f422007-12-09 21:53:25 +00004814 // Handle the common case first (both operands are arithmetic).
Mike Stumpf70bcf72009-05-07 18:43:07 +00004815 if (lex->getType()->isArithmeticType()
4816 && rex->getType()->isArithmeticType()) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004817 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004818 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004819 }
Mike Stump11289f42009-09-09 15:08:12 +00004820
Chris Lattner4d62f422007-12-09 21:53:25 +00004821 // Either ptr - int or ptr - ptr.
Steve Naroff6b712a72009-07-14 18:25:06 +00004822 if (lex->getType()->isAnyPointerType()) {
Steve Naroff4eed7a12009-07-13 17:19:15 +00004823 QualType lpointee = lex->getType()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004824
Douglas Gregorac1fb652009-03-24 19:52:54 +00004825 // The LHS must be an completely-defined object type.
Douglas Gregorf6cd9282009-01-23 00:36:41 +00004826
Douglas Gregorac1fb652009-03-24 19:52:54 +00004827 bool ComplainAboutVoid = false;
4828 Expr *ComplainAboutFunc = 0;
4829 if (lpointee->isVoidType()) {
4830 if (getLangOptions().CPlusPlus) {
4831 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4832 << lex->getSourceRange() << rex->getSourceRange();
4833 return QualType();
4834 }
4835
4836 // GNU C extension: arithmetic on pointer to void
4837 ComplainAboutVoid = true;
4838 } else if (lpointee->isFunctionType()) {
4839 if (getLangOptions().CPlusPlus) {
4840 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004841 << lex->getType() << lex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004842 return QualType();
4843 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004844
4845 // GNU C extension: arithmetic on pointer to function
4846 ComplainAboutFunc = lex;
4847 } else if (!lpointee->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00004848 RequireCompleteType(Loc, lpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004849 PDiag(diag::err_typecheck_sub_ptr_object)
Mike Stump11289f42009-09-09 15:08:12 +00004850 << lex->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004851 << lex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004852 return QualType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004853
Chris Lattner12bdebb2009-04-24 23:50:08 +00004854 // Diagnose bad cases where we step over interface counts.
4855 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4856 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4857 << lpointee << lex->getSourceRange();
4858 return QualType();
4859 }
Mike Stump11289f42009-09-09 15:08:12 +00004860
Chris Lattner4d62f422007-12-09 21:53:25 +00004861 // The result type of a pointer-int computation is the pointer type.
Douglas Gregorac1fb652009-03-24 19:52:54 +00004862 if (rex->getType()->isIntegerType()) {
4863 if (ComplainAboutVoid)
4864 Diag(Loc, diag::ext_gnu_void_ptr)
4865 << lex->getSourceRange() << rex->getSourceRange();
4866 if (ComplainAboutFunc)
4867 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004868 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004869 << ComplainAboutFunc->getSourceRange();
4870
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004871 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004872 return lex->getType();
Douglas Gregorac1fb652009-03-24 19:52:54 +00004873 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004874
Chris Lattner4d62f422007-12-09 21:53:25 +00004875 // Handle pointer-pointer subtractions.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004876 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman1974e532008-02-08 01:19:44 +00004877 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004878
Douglas Gregorac1fb652009-03-24 19:52:54 +00004879 // RHS must be a completely-type object type.
4880 // Handle the GNU void* extension.
4881 if (rpointee->isVoidType()) {
4882 if (getLangOptions().CPlusPlus) {
4883 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4884 << lex->getSourceRange() << rex->getSourceRange();
4885 return QualType();
4886 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004887
Douglas Gregorac1fb652009-03-24 19:52:54 +00004888 ComplainAboutVoid = true;
4889 } else if (rpointee->isFunctionType()) {
4890 if (getLangOptions().CPlusPlus) {
4891 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004892 << rex->getType() << rex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004893 return QualType();
4894 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004895
4896 // GNU extension: arithmetic on pointer to function
4897 if (!ComplainAboutFunc)
4898 ComplainAboutFunc = rex;
4899 } else if (!rpointee->isDependentType() &&
4900 RequireCompleteType(Loc, rpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004901 PDiag(diag::err_typecheck_sub_ptr_object)
4902 << rex->getSourceRange()
4903 << rex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004904 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004905
Eli Friedman168fe152009-05-16 13:54:38 +00004906 if (getLangOptions().CPlusPlus) {
4907 // Pointee types must be the same: C++ [expr.add]
4908 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4909 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4910 << lex->getType() << rex->getType()
4911 << lex->getSourceRange() << rex->getSourceRange();
4912 return QualType();
4913 }
4914 } else {
4915 // Pointee types must be compatible C99 6.5.6p3
4916 if (!Context.typesAreCompatible(
4917 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4918 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4919 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4920 << lex->getType() << rex->getType()
4921 << lex->getSourceRange() << rex->getSourceRange();
4922 return QualType();
4923 }
Chris Lattner4d62f422007-12-09 21:53:25 +00004924 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004925
Douglas Gregorac1fb652009-03-24 19:52:54 +00004926 if (ComplainAboutVoid)
4927 Diag(Loc, diag::ext_gnu_void_ptr)
4928 << lex->getSourceRange() << rex->getSourceRange();
4929 if (ComplainAboutFunc)
4930 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004931 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004932 << ComplainAboutFunc->getSourceRange();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004933
4934 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004935 return Context.getPointerDiffType();
4936 }
4937 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004938
Chris Lattner326f7572008-11-18 01:30:42 +00004939 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004940}
4941
Chris Lattner2a3569b2008-04-07 05:30:13 +00004942// C99 6.5.7
Chris Lattner326f7572008-11-18 01:30:42 +00004943QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattner2a3569b2008-04-07 05:30:13 +00004944 bool isCompAssign) {
Chris Lattner5c11c412007-12-12 05:47:28 +00004945 // C99 6.5.7p2: Each of the operands shall have integer type.
4946 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner326f7572008-11-18 01:30:42 +00004947 return InvalidOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004948
Nate Begemane46ee9a2009-10-25 02:26:48 +00004949 // Vector shifts promote their scalar inputs to vector type.
4950 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
4951 return CheckVectorOperands(Loc, lex, rex);
4952
Chris Lattner5c11c412007-12-12 05:47:28 +00004953 // Shifts don't perform usual arithmetic conversions, they just do integer
4954 // promotions on each operand. C99 6.5.7p3
Eli Friedman629ffb92009-08-20 04:21:42 +00004955 QualType LHSTy = Context.isPromotableBitField(lex);
4956 if (LHSTy.isNull()) {
4957 LHSTy = lex->getType();
4958 if (LHSTy->isPromotableIntegerType())
4959 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004960 }
Chris Lattner3c133402007-12-13 07:28:16 +00004961 if (!isCompAssign)
Eli Friedman06ed2a52009-10-20 08:27:19 +00004962 ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast);
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004963
Chris Lattner5c11c412007-12-12 05:47:28 +00004964 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004965
Ryan Flynnf53fab82009-08-07 16:20:20 +00004966 // Sanity-check shift operands
4967 llvm::APSInt Right;
4968 // Check right/shifter operand
Daniel Dunbar687fa862009-09-17 06:31:27 +00004969 if (!rex->isValueDependent() &&
4970 rex->isIntegerConstantExpr(Right, Context)) {
Ryan Flynn2f085712009-08-08 19:18:23 +00004971 if (Right.isNegative())
Ryan Flynnf53fab82009-08-07 16:20:20 +00004972 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4973 else {
4974 llvm::APInt LeftBits(Right.getBitWidth(),
4975 Context.getTypeSize(lex->getType()));
4976 if (Right.uge(LeftBits))
4977 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4978 }
4979 }
4980
Chris Lattner5c11c412007-12-12 05:47:28 +00004981 // "The type of the result is that of the promoted left operand."
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004982 return LHSTy;
Steve Naroff26c8ea52007-03-21 21:08:52 +00004983}
4984
John McCall99ce6bf2009-11-06 08:49:08 +00004985/// \brief Implements -Wsign-compare.
4986///
4987/// \param lex the left-hand expression
4988/// \param rex the right-hand expression
4989/// \param OpLoc the location of the joining operator
John McCalle46fd852009-11-06 08:53:51 +00004990/// \param Equality whether this is an "equality-like" join, which
4991/// suppresses the warning in some cases
John McCall1fa36b72009-11-05 09:23:39 +00004992void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc,
John McCall99ce6bf2009-11-06 08:49:08 +00004993 const PartialDiagnostic &PD, bool Equality) {
John McCalle2c91e62009-11-06 18:16:06 +00004994 // Don't warn if we're in an unevaluated context.
Douglas Gregorff790f12009-11-26 00:44:06 +00004995 if (ExprEvalContexts.back().Context == Unevaluated)
John McCalle2c91e62009-11-06 18:16:06 +00004996 return;
4997
John McCall644a4182009-11-05 00:40:04 +00004998 QualType lt = lex->getType(), rt = rex->getType();
4999
5000 // Only warn if both operands are integral.
5001 if (!lt->isIntegerType() || !rt->isIntegerType())
5002 return;
5003
Sebastian Redl0b7c85f2009-11-05 21:09:23 +00005004 // If either expression is value-dependent, don't warn. We'll get another
5005 // chance at instantiation time.
5006 if (lex->isValueDependent() || rex->isValueDependent())
5007 return;
5008
John McCall644a4182009-11-05 00:40:04 +00005009 // The rule is that the signed operand becomes unsigned, so isolate the
5010 // signed operand.
John McCall99ce6bf2009-11-06 08:49:08 +00005011 Expr *signedOperand, *unsignedOperand;
John McCall644a4182009-11-05 00:40:04 +00005012 if (lt->isSignedIntegerType()) {
5013 if (rt->isSignedIntegerType()) return;
5014 signedOperand = lex;
John McCall99ce6bf2009-11-06 08:49:08 +00005015 unsignedOperand = rex;
John McCall644a4182009-11-05 00:40:04 +00005016 } else {
5017 if (!rt->isSignedIntegerType()) return;
5018 signedOperand = rex;
John McCall99ce6bf2009-11-06 08:49:08 +00005019 unsignedOperand = lex;
John McCall644a4182009-11-05 00:40:04 +00005020 }
5021
John McCall99ce6bf2009-11-06 08:49:08 +00005022 // If the unsigned type is strictly smaller than the signed type,
John McCalle46fd852009-11-06 08:53:51 +00005023 // then (1) the result type will be signed and (2) the unsigned
5024 // value will fit fully within the signed type, and thus the result
John McCall99ce6bf2009-11-06 08:49:08 +00005025 // of the comparison will be exact.
5026 if (Context.getIntWidth(signedOperand->getType()) >
5027 Context.getIntWidth(unsignedOperand->getType()))
5028 return;
5029
John McCall644a4182009-11-05 00:40:04 +00005030 // If the value is a non-negative integer constant, then the
5031 // signed->unsigned conversion won't change it.
5032 llvm::APSInt value;
John McCall1fa36b72009-11-05 09:23:39 +00005033 if (signedOperand->isIntegerConstantExpr(value, Context)) {
John McCall644a4182009-11-05 00:40:04 +00005034 assert(value.isSigned() && "result of signed expression not signed");
5035
5036 if (value.isNonNegative())
5037 return;
5038 }
5039
John McCall99ce6bf2009-11-06 08:49:08 +00005040 if (Equality) {
5041 // For (in)equality comparisons, if the unsigned operand is a
John McCalle46fd852009-11-06 08:53:51 +00005042 // constant which cannot collide with a overflowed signed operand,
5043 // then reinterpreting the signed operand as unsigned will not
5044 // change the result of the comparison.
John McCall99ce6bf2009-11-06 08:49:08 +00005045 if (unsignedOperand->isIntegerConstantExpr(value, Context)) {
5046 assert(!value.isSigned() && "result of unsigned expression is signed");
5047
5048 // 2's complement: test the top bit.
5049 if (value.isNonNegative())
5050 return;
5051 }
5052 }
5053
John McCall1fa36b72009-11-05 09:23:39 +00005054 Diag(OpLoc, PD)
John McCall644a4182009-11-05 00:40:04 +00005055 << lex->getType() << rex->getType()
5056 << lex->getSourceRange() << rex->getSourceRange();
5057}
5058
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005059// C99 6.5.8, C++ [expr.rel]
Chris Lattner326f7572008-11-18 01:30:42 +00005060QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005061 unsigned OpaqueOpc, bool isRelational) {
5062 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
5063
Chris Lattner9a152e22009-12-05 05:40:13 +00005064 // Handle vector comparisons separately.
Nate Begeman191a6b12008-07-14 18:02:46 +00005065 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00005066 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005067
John McCall99ce6bf2009-11-06 08:49:08 +00005068 CheckSignCompare(lex, rex, Loc, diag::warn_mixed_sign_comparison,
5069 (Opc == BinaryOperator::EQ || Opc == BinaryOperator::NE));
John McCall644a4182009-11-05 00:40:04 +00005070
Chris Lattnerb620c342007-08-26 01:18:55 +00005071 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff47fea352007-08-10 18:26:40 +00005072 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
5073 UsualArithmeticConversions(lex, rex);
5074 else {
5075 UsualUnaryConversions(lex);
5076 UsualUnaryConversions(rex);
5077 }
Steve Naroff31090012007-07-16 21:54:35 +00005078 QualType lType = lex->getType();
5079 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005080
Mike Stumpf70bcf72009-05-07 18:43:07 +00005081 if (!lType->isFloatingType()
5082 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00005083 // For non-floating point types, check for self-comparisons of the form
5084 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
5085 // often indicate logic errors in the program.
Mike Stump11289f42009-09-09 15:08:12 +00005086 // NOTE: Don't warn about comparisons of enum constants. These can arise
Ted Kremenekde9e9682009-03-20 19:57:37 +00005087 // from macro expansions, and are usually quite deliberate.
Chris Lattner222b8bd2009-03-08 19:39:53 +00005088 Expr *LHSStripped = lex->IgnoreParens();
5089 Expr *RHSStripped = rex->IgnoreParens();
5090 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
5091 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenek9ffbe412009-03-20 18:35:45 +00005092 if (DRL->getDecl() == DRR->getDecl() &&
5093 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stump4e1f26a2009-02-19 03:04:26 +00005094 Diag(Loc, diag::warn_selfcomparison);
Mike Stump11289f42009-09-09 15:08:12 +00005095
Chris Lattner222b8bd2009-03-08 19:39:53 +00005096 if (isa<CastExpr>(LHSStripped))
5097 LHSStripped = LHSStripped->IgnoreParenCasts();
5098 if (isa<CastExpr>(RHSStripped))
5099 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00005100
Chris Lattner222b8bd2009-03-08 19:39:53 +00005101 // Warn about comparisons against a string constant (unless the other
5102 // operand is null), the user probably wants strcmp.
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005103 Expr *literalString = 0;
5104 Expr *literalStringStripped = 0;
Chris Lattner222b8bd2009-03-08 19:39:53 +00005105 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00005106 !RHSStripped->isNullPointerConstant(Context,
5107 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005108 literalString = lex;
5109 literalStringStripped = LHSStripped;
Mike Stump12b8ce12009-08-04 21:02:39 +00005110 } else if ((isa<StringLiteral>(RHSStripped) ||
5111 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00005112 !LHSStripped->isNullPointerConstant(Context,
5113 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005114 literalString = rex;
5115 literalStringStripped = RHSStripped;
5116 }
5117
5118 if (literalString) {
5119 std::string resultComparison;
5120 switch (Opc) {
5121 case BinaryOperator::LT: resultComparison = ") < 0"; break;
5122 case BinaryOperator::GT: resultComparison = ") > 0"; break;
5123 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
5124 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
5125 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
5126 case BinaryOperator::NE: resultComparison = ") != 0"; break;
5127 default: assert(false && "Invalid comparison operator");
5128 }
5129 Diag(Loc, diag::warn_stringcompare)
5130 << isa<ObjCEncodeExpr>(literalStringStripped)
5131 << literalString->getSourceRange()
Douglas Gregor170512f2009-04-01 23:51:29 +00005132 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
5133 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
5134 "strcmp(")
5135 << CodeModificationHint::CreateInsertion(
5136 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005137 resultComparison);
5138 }
Ted Kremeneke451eae2007-10-29 16:58:49 +00005139 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005140
Douglas Gregorca63811b2008-11-19 03:25:36 +00005141 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner9a152e22009-12-05 05:40:13 +00005142 QualType ResultTy = getLangOptions().CPlusPlus ? Context.BoolTy:Context.IntTy;
Douglas Gregorca63811b2008-11-19 03:25:36 +00005143
Chris Lattnerb620c342007-08-26 01:18:55 +00005144 if (isRelational) {
5145 if (lType->isRealType() && rType->isRealType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00005146 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00005147 } else {
Ted Kremeneke2763b02007-10-29 17:13:39 +00005148 // Check for comparisons of floating point operands using != and ==.
Chris Lattner9a152e22009-12-05 05:40:13 +00005149 if (lType->isFloatingType() && rType->isFloatingType())
Chris Lattner326f7572008-11-18 01:30:42 +00005150 CheckFloatComparison(Loc,lex,rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005151
Chris Lattnerb620c342007-08-26 01:18:55 +00005152 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00005153 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00005154 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005155
Douglas Gregor56751b52009-09-25 04:25:58 +00005156 bool LHSIsNull = lex->isNullPointerConstant(Context,
5157 Expr::NPC_ValueDependentIsNull);
5158 bool RHSIsNull = rex->isNullPointerConstant(Context,
5159 Expr::NPC_ValueDependentIsNull);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005160
Chris Lattnerb620c342007-08-26 01:18:55 +00005161 // All of the following pointer related warnings are GCC extensions, except
5162 // when handling null pointer constants. One day, we can consider making them
5163 // errors (when -pedantic-errors is enabled).
Steve Naroff808eb8f2007-08-27 04:08:11 +00005164 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner3a0702e2008-04-03 05:07:25 +00005165 QualType LCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005166 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattner3a0702e2008-04-03 05:07:25 +00005167 QualType RCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005168 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00005169
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005170 if (getLangOptions().CPlusPlus) {
Eli Friedman16c209612009-08-23 00:27:47 +00005171 if (LCanPointeeTy == RCanPointeeTy)
5172 return ResultTy;
5173
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005174 // C++ [expr.rel]p2:
5175 // [...] Pointer conversions (4.10) and qualification
5176 // conversions (4.4) are performed on pointer operands (or on
5177 // a pointer operand and a null pointer constant) to bring
5178 // them to their composite pointer type. [...]
5179 //
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005180 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005181 // comparisons of pointers.
Douglas Gregorb8420462009-05-05 04:50:50 +00005182 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005183 if (T.isNull()) {
5184 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
5185 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
5186 return QualType();
5187 }
5188
Eli Friedman06ed2a52009-10-20 08:27:19 +00005189 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
5190 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00005191 return ResultTy;
5192 }
Eli Friedman16c209612009-08-23 00:27:47 +00005193 // C99 6.5.9p2 and C99 6.5.8p2
5194 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
5195 RCanPointeeTy.getUnqualifiedType())) {
5196 // Valid unless a relational comparison of function pointers
5197 if (isRelational && LCanPointeeTy->isFunctionType()) {
5198 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
5199 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
5200 }
5201 } else if (!isRelational &&
5202 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
5203 // Valid unless comparison between non-null pointer and function pointer
5204 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
5205 && !LHSIsNull && !RHSIsNull) {
5206 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
5207 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
5208 }
5209 } else {
5210 // Invalid
Chris Lattner377d1f82008-11-18 22:52:51 +00005211 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005212 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff75c17232007-06-13 21:41:08 +00005213 }
Eli Friedman16c209612009-08-23 00:27:47 +00005214 if (LCanPointeeTy != RCanPointeeTy)
Eli Friedman06ed2a52009-10-20 08:27:19 +00005215 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005216 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00005217 }
Mike Stump11289f42009-09-09 15:08:12 +00005218
Sebastian Redl576fd422009-05-10 18:38:11 +00005219 if (getLangOptions().CPlusPlus) {
Mike Stump11289f42009-09-09 15:08:12 +00005220 // Comparison of pointers with null pointer constants and equality
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005221 // comparisons of member pointers to null pointer constants.
Mike Stump11289f42009-09-09 15:08:12 +00005222 if (RHSIsNull &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005223 (lType->isPointerType() ||
5224 (!isRelational && lType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00005225 ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00005226 return ResultTy;
5227 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005228 if (LHSIsNull &&
5229 (rType->isPointerType() ||
5230 (!isRelational && rType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00005231 ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00005232 return ResultTy;
5233 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005234
5235 // Comparison of member pointers.
Mike Stump11289f42009-09-09 15:08:12 +00005236 if (!isRelational &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005237 lType->isMemberPointerType() && rType->isMemberPointerType()) {
5238 // C++ [expr.eq]p2:
Mike Stump11289f42009-09-09 15:08:12 +00005239 // In addition, pointers to members can be compared, or a pointer to
5240 // member and a null pointer constant. Pointer to member conversions
5241 // (4.11) and qualification conversions (4.4) are performed to bring
5242 // them to a common type. If one operand is a null pointer constant,
5243 // the common type is the type of the other operand. Otherwise, the
5244 // common type is a pointer to member type similar (4.4) to the type
5245 // of one of the operands, with a cv-qualification signature (4.4)
5246 // that is the union of the cv-qualification signatures of the operand
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005247 // types.
5248 QualType T = FindCompositePointerType(lex, rex);
5249 if (T.isNull()) {
5250 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
5251 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
5252 return QualType();
5253 }
Mike Stump11289f42009-09-09 15:08:12 +00005254
Eli Friedman06ed2a52009-10-20 08:27:19 +00005255 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
5256 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005257 return ResultTy;
5258 }
Mike Stump11289f42009-09-09 15:08:12 +00005259
Douglas Gregorb00b10e2009-08-24 17:42:35 +00005260 // Comparison of nullptr_t with itself.
Sebastian Redl576fd422009-05-10 18:38:11 +00005261 if (lType->isNullPtrType() && rType->isNullPtrType())
5262 return ResultTy;
5263 }
Mike Stump11289f42009-09-09 15:08:12 +00005264
Steve Naroff081c7422008-09-04 15:10:53 +00005265 // Handle block pointer types.
Mike Stump1b821b42009-05-07 03:14:14 +00005266 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005267 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
5268 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005269
Steve Naroff081c7422008-09-04 15:10:53 +00005270 if (!LHSIsNull && !RHSIsNull &&
Eli Friedmana6638ca2009-06-08 05:08:54 +00005271 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00005272 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005273 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff081c7422008-09-04 15:10:53 +00005274 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00005275 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005276 return ResultTy;
Steve Naroff081c7422008-09-04 15:10:53 +00005277 }
Steve Naroffe18f94c2008-09-28 01:11:11 +00005278 // Allow block pointers to be compared with null pointer constants.
Mike Stump1b821b42009-05-07 03:14:14 +00005279 if (!isRelational
5280 && ((lType->isBlockPointerType() && rType->isPointerType())
5281 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroffe18f94c2008-09-28 01:11:11 +00005282 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005283 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00005284 ->getPointeeType()->isVoidType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005285 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00005286 ->getPointeeType()->isVoidType())))
5287 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
5288 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffe18f94c2008-09-28 01:11:11 +00005289 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00005290 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005291 return ResultTy;
Steve Naroffe18f94c2008-09-28 01:11:11 +00005292 }
Steve Naroff081c7422008-09-04 15:10:53 +00005293
Steve Naroff7cae42b2009-07-10 23:34:53 +00005294 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroff1d4a9a32008-10-27 10:33:19 +00005295 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005296 const PointerType *LPT = lType->getAs<PointerType>();
5297 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005298 bool LPtrToVoid = LPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00005299 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005300 bool RPtrToVoid = RPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00005301 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005302
Steve Naroff753567f2008-11-17 19:49:16 +00005303 if (!LPtrToVoid && !RPtrToVoid &&
5304 !Context.typesAreCompatible(lType, rType)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00005305 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005306 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1d4a9a32008-10-27 10:33:19 +00005307 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00005308 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005309 return ResultTy;
Steve Naroffea54d9e2008-10-20 18:19:10 +00005310 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00005311 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00005312 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff7cae42b2009-07-10 23:34:53 +00005313 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
5314 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00005315 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005316 return ResultTy;
Steve Naroffb788d9b2008-06-03 14:04:54 +00005317 }
Fariborz Jahanian134cbef2007-12-20 01:06:58 +00005318 }
Steve Naroff6b712a72009-07-14 18:25:06 +00005319 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00005320 unsigned DiagID = 0;
5321 if (RHSIsNull) {
5322 if (isRelational)
5323 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
5324 } else if (isRelational)
5325 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
5326 else
5327 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00005328
Chris Lattnerd99bd522009-08-23 00:03:44 +00005329 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00005330 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00005331 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00005332 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00005333 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005334 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00005335 }
Steve Naroff6b712a72009-07-14 18:25:06 +00005336 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00005337 unsigned DiagID = 0;
5338 if (LHSIsNull) {
5339 if (isRelational)
5340 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
5341 } else if (isRelational)
5342 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
5343 else
5344 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00005345
Chris Lattnerd99bd522009-08-23 00:03:44 +00005346 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00005347 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00005348 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00005349 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00005350 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005351 return ResultTy;
Steve Naroff043d45d2007-05-15 02:32:35 +00005352 }
Steve Naroff4b191572008-09-04 16:56:14 +00005353 // Handle block pointers.
Mike Stumpf70bcf72009-05-07 18:43:07 +00005354 if (!isRelational && RHSIsNull
5355 && lType->isBlockPointerType() && rType->isIntegerType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00005356 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005357 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00005358 }
Mike Stumpf70bcf72009-05-07 18:43:07 +00005359 if (!isRelational && LHSIsNull
5360 && lType->isIntegerType() && rType->isBlockPointerType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00005361 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00005362 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00005363 }
Chris Lattner326f7572008-11-18 01:30:42 +00005364 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00005365}
5366
Nate Begeman191a6b12008-07-14 18:02:46 +00005367/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump4e1f26a2009-02-19 03:04:26 +00005368/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begeman191a6b12008-07-14 18:02:46 +00005369/// like a scalar comparison, a vector comparison produces a vector of integer
5370/// types.
5371QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner326f7572008-11-18 01:30:42 +00005372 SourceLocation Loc,
Nate Begeman191a6b12008-07-14 18:02:46 +00005373 bool isRelational) {
5374 // Check to make sure we're operating on vectors of the same type and width,
5375 // Allowing one side to be a scalar of element type.
Chris Lattner326f7572008-11-18 01:30:42 +00005376 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00005377 if (vType.isNull())
5378 return vType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005379
Nate Begeman191a6b12008-07-14 18:02:46 +00005380 QualType lType = lex->getType();
5381 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005382
Nate Begeman191a6b12008-07-14 18:02:46 +00005383 // For non-floating point types, check for self-comparisons of the form
5384 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
5385 // often indicate logic errors in the program.
5386 if (!lType->isFloatingType()) {
5387 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
5388 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
5389 if (DRL->getDecl() == DRR->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00005390 Diag(Loc, diag::warn_selfcomparison);
Nate Begeman191a6b12008-07-14 18:02:46 +00005391 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005392
Nate Begeman191a6b12008-07-14 18:02:46 +00005393 // Check for comparisons of floating point operands using != and ==.
5394 if (!isRelational && lType->isFloatingType()) {
5395 assert (rType->isFloatingType());
Chris Lattner326f7572008-11-18 01:30:42 +00005396 CheckFloatComparison(Loc,lex,rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00005397 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005398
Nate Begeman191a6b12008-07-14 18:02:46 +00005399 // Return the type for the comparison, which is the same as vector type for
5400 // integer vectors, or an integer type of identical size and number of
5401 // elements for floating point vectors.
5402 if (lType->isIntegerType())
5403 return lType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005404
John McCall9dd450b2009-09-21 23:43:11 +00005405 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begeman191a6b12008-07-14 18:02:46 +00005406 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00005407 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begeman191a6b12008-07-14 18:02:46 +00005408 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattner5d688962009-03-31 07:46:52 +00005409 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00005410 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
5411
Mike Stump4e1f26a2009-02-19 03:04:26 +00005412 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00005413 "Unhandled vector element size in vector compare");
Nate Begeman191a6b12008-07-14 18:02:46 +00005414 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
5415}
5416
Steve Naroff218bc2b2007-05-04 21:54:46 +00005417inline QualType Sema::CheckBitwiseOperands(
Mike Stump11289f42009-09-09 15:08:12 +00005418 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Steve Naroff94a5aca2007-07-16 22:23:01 +00005419 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00005420 return CheckVectorOperands(Loc, lex, rex);
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00005421
Steve Naroffbe4c4d12007-08-24 19:07:16 +00005422 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005423
Steve Naroffdbd9e892007-07-17 00:58:39 +00005424 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00005425 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00005426 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00005427}
5428
Steve Naroff218bc2b2007-05-04 21:54:46 +00005429inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump11289f42009-09-09 15:08:12 +00005430 Expr *&lex, Expr *&rex, SourceLocation Loc) {
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005431 if (!Context.getLangOptions().CPlusPlus) {
5432 UsualUnaryConversions(lex);
5433 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005434
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005435 if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType())
5436 return InvalidOperands(Loc, lex, rex);
Anders Carlsson35a99d92009-10-16 01:44:21 +00005437
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005438 return Context.IntTy;
Anders Carlsson35a99d92009-10-16 01:44:21 +00005439 }
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005440
5441 // C++ [expr.log.and]p1
5442 // C++ [expr.log.or]p1
5443 // The operands are both implicitly converted to type bool (clause 4).
5444 StandardConversionSequence LHS;
5445 if (!IsStandardConversion(lex, Context.BoolTy,
5446 /*InOverloadResolution=*/false, LHS))
5447 return InvalidOperands(Loc, lex, rex);
Anders Carlsson35a99d92009-10-16 01:44:21 +00005448
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005449 if (PerformImplicitConversion(lex, Context.BoolTy, LHS,
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00005450 AA_Passing, /*IgnoreBaseAccess=*/false))
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005451 return InvalidOperands(Loc, lex, rex);
5452
5453 StandardConversionSequence RHS;
5454 if (!IsStandardConversion(rex, Context.BoolTy,
5455 /*InOverloadResolution=*/false, RHS))
5456 return InvalidOperands(Loc, lex, rex);
5457
5458 if (PerformImplicitConversion(rex, Context.BoolTy, RHS,
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00005459 AA_Passing, /*IgnoreBaseAccess=*/false))
Anders Carlsson2e7bc112009-11-23 21:47:44 +00005460 return InvalidOperands(Loc, lex, rex);
5461
5462 // C++ [expr.log.and]p2
5463 // C++ [expr.log.or]p2
5464 // The result is a bool.
5465 return Context.BoolTy;
Steve Naroffae4143e2007-04-26 20:39:23 +00005466}
5467
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00005468/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
5469/// is a read-only property; return true if so. A readonly property expression
5470/// depends on various declarations and thus must be treated specially.
5471///
Mike Stump11289f42009-09-09 15:08:12 +00005472static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00005473 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
5474 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
5475 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
5476 QualType BaseType = PropExpr->getBase()->getType();
Mike Stump11289f42009-09-09 15:08:12 +00005477 if (const ObjCObjectPointerType *OPT =
Steve Naroff7cae42b2009-07-10 23:34:53 +00005478 BaseType->getAsObjCInterfacePointerType())
5479 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
5480 if (S.isPropertyReadonly(PDecl, IFace))
5481 return true;
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00005482 }
5483 }
5484 return false;
5485}
5486
Chris Lattner30bd3272008-11-18 01:22:49 +00005487/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
5488/// emit an error and return true. If so, return false.
5489static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00005490 SourceLocation OrigLoc = Loc;
Mike Stump11289f42009-09-09 15:08:12 +00005491 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00005492 &Loc);
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00005493 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
5494 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattner30bd3272008-11-18 01:22:49 +00005495 if (IsLV == Expr::MLV_Valid)
5496 return false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005497
Chris Lattner30bd3272008-11-18 01:22:49 +00005498 unsigned Diag = 0;
5499 bool NeedType = false;
5500 switch (IsLV) { // C99 6.5.16p2
5501 default: assert(0 && "Unknown result from isModifiableLvalue!");
5502 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005503 case Expr::MLV_ArrayType:
Chris Lattner30bd3272008-11-18 01:22:49 +00005504 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
5505 NeedType = true;
5506 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005507 case Expr::MLV_NotObjectType:
Chris Lattner30bd3272008-11-18 01:22:49 +00005508 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
5509 NeedType = true;
5510 break;
Chris Lattner9b3bbe92008-11-17 19:51:54 +00005511 case Expr::MLV_LValueCast:
Chris Lattner30bd3272008-11-18 01:22:49 +00005512 Diag = diag::err_typecheck_lvalue_casts_not_supported;
5513 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00005514 case Expr::MLV_InvalidExpression:
Chris Lattner30bd3272008-11-18 01:22:49 +00005515 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
5516 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00005517 case Expr::MLV_IncompleteType:
5518 case Expr::MLV_IncompleteVoidType:
Douglas Gregored0cfbd2009-03-09 16:13:40 +00005519 return S.RequireCompleteType(Loc, E->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00005520 PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
5521 << E->getSourceRange());
Chris Lattner9bad62c2008-01-04 18:04:52 +00005522 case Expr::MLV_DuplicateVectorComponents:
Chris Lattner30bd3272008-11-18 01:22:49 +00005523 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
5524 break;
Steve Naroffba756cb2008-09-26 14:41:28 +00005525 case Expr::MLV_NotBlockQualified:
Chris Lattner30bd3272008-11-18 01:22:49 +00005526 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
5527 break;
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00005528 case Expr::MLV_ReadonlyProperty:
5529 Diag = diag::error_readonly_property_assignment;
5530 break;
Fariborz Jahanian5118c412008-11-22 20:25:50 +00005531 case Expr::MLV_NoSetterProperty:
5532 Diag = diag::error_nosetter_property_assignment;
5533 break;
Fariborz Jahaniane8d28902009-12-15 23:59:41 +00005534 case Expr::MLV_SubObjCPropertySetting:
5535 Diag = diag::error_no_subobject_property_setting;
5536 break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00005537 }
Steve Naroffad373bd2007-07-31 12:34:36 +00005538
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00005539 SourceRange Assign;
5540 if (Loc != OrigLoc)
5541 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner30bd3272008-11-18 01:22:49 +00005542 if (NeedType)
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00005543 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00005544 else
Mike Stump11289f42009-09-09 15:08:12 +00005545 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00005546 return true;
5547}
5548
5549
5550
5551// C99 6.5.16.1
Chris Lattner326f7572008-11-18 01:30:42 +00005552QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
5553 SourceLocation Loc,
5554 QualType CompoundType) {
5555 // Verify that LHS is a modifiable lvalue, and emit error if not.
5556 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattner30bd3272008-11-18 01:22:49 +00005557 return QualType();
Chris Lattner326f7572008-11-18 01:30:42 +00005558
5559 QualType LHSType = LHS->getType();
5560 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005561
Chris Lattner9bad62c2008-01-04 18:04:52 +00005562 AssignConvertType ConvTy;
Chris Lattner326f7572008-11-18 01:30:42 +00005563 if (CompoundType.isNull()) {
Chris Lattnerea714382008-08-21 18:04:13 +00005564 // Simple assignment "x = y".
Chris Lattner326f7572008-11-18 01:30:42 +00005565 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005566 // Special case of NSObject attributes on c-style pointer types.
5567 if (ConvTy == IncompatiblePointer &&
5568 ((Context.isObjCNSObjectType(LHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00005569 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005570 (Context.isObjCNSObjectType(RHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00005571 LHSType->isObjCObjectPointerType())))
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005572 ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005573
Chris Lattnerea714382008-08-21 18:04:13 +00005574 // If the RHS is a unary plus or minus, check to see if they = and + are
5575 // right next to each other. If so, the user may have typo'd "x =+ 4"
5576 // instead of "x += 4".
Chris Lattner326f7572008-11-18 01:30:42 +00005577 Expr *RHSCheck = RHS;
Chris Lattnerea714382008-08-21 18:04:13 +00005578 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
5579 RHSCheck = ICE->getSubExpr();
5580 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
5581 if ((UO->getOpcode() == UnaryOperator::Plus ||
5582 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner326f7572008-11-18 01:30:42 +00005583 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattnerea714382008-08-21 18:04:13 +00005584 // Only if the two operators are exactly adjacent.
Chris Lattner36c39c92009-03-08 06:51:10 +00005585 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
5586 // And there is a space or other character before the subexpr of the
5587 // unary +/-. We don't want to warn on "x=-1".
Chris Lattnered9f14c2009-03-09 07:11:10 +00005588 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
5589 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005590 Diag(Loc, diag::warn_not_compound_assign)
5591 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
5592 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner36c39c92009-03-08 06:51:10 +00005593 }
Chris Lattnerea714382008-08-21 18:04:13 +00005594 }
5595 } else {
5596 // Compound assignment "x += y"
Eli Friedmanb05c41e2009-05-16 05:56:02 +00005597 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattnerea714382008-08-21 18:04:13 +00005598 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00005599
Chris Lattner326f7572008-11-18 01:30:42 +00005600 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00005601 RHS, AA_Assigning))
Chris Lattner9bad62c2008-01-04 18:04:52 +00005602 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005603
Steve Naroff98cf3e92007-06-06 18:38:38 +00005604 // C99 6.5.16p3: The type of an assignment expression is the type of the
5605 // left operand unless the left operand has qualified type, in which case
Mike Stump4e1f26a2009-02-19 03:04:26 +00005606 // it is the unqualified version of the type of the left operand.
Steve Naroff98cf3e92007-06-06 18:38:38 +00005607 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
5608 // is converted to the type of the assignment expression (above).
Chris Lattnerf17bd422007-08-30 17:45:32 +00005609 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregord2c2d172009-05-02 00:36:19 +00005610 // operand.
Chris Lattner326f7572008-11-18 01:30:42 +00005611 return LHSType.getUnqualifiedType();
Steve Naroffae4143e2007-04-26 20:39:23 +00005612}
5613
Chris Lattner326f7572008-11-18 01:30:42 +00005614// C99 6.5.17
5615QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattnerf6e1e302008-07-25 20:54:07 +00005616 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner326f7572008-11-18 01:30:42 +00005617 DefaultFunctionArrayConversion(RHS);
Eli Friedmanba961a92009-03-23 00:24:07 +00005618
5619 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
5620 // incomplete in C++).
5621
Chris Lattner326f7572008-11-18 01:30:42 +00005622 return RHS->getType();
Steve Naroff95af0132007-03-30 23:47:58 +00005623}
5624
Steve Naroff7a5af782007-07-13 16:58:59 +00005625/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
5626/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle10c2c32008-12-20 09:35:34 +00005627QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
5628 bool isInc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005629 if (Op->isTypeDependent())
5630 return Context.DependentTy;
5631
Chris Lattner6b0cf142008-11-21 07:05:48 +00005632 QualType ResType = Op->getType();
5633 assert(!ResType.isNull() && "no type for increment/decrement expression");
Steve Naroffd50c88e2007-04-05 21:15:20 +00005634
Sebastian Redle10c2c32008-12-20 09:35:34 +00005635 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
5636 // Decrement of bool is not allowed.
5637 if (!isInc) {
5638 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
5639 return QualType();
5640 }
5641 // Increment of bool sets it to true, but is deprecated.
5642 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
5643 } else if (ResType->isRealType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00005644 // OK!
Steve Naroff6b712a72009-07-14 18:25:06 +00005645 } else if (ResType->isAnyPointerType()) {
5646 QualType PointeeTy = ResType->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00005647
Chris Lattner6b0cf142008-11-21 07:05:48 +00005648 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff7cae42b2009-07-10 23:34:53 +00005649 if (PointeeTy->isVoidType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005650 if (getLangOptions().CPlusPlus) {
5651 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
5652 << Op->getSourceRange();
5653 return QualType();
5654 }
5655
5656 // Pointer to void is a GNU extension in C.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005657 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005658 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005659 if (getLangOptions().CPlusPlus) {
5660 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
5661 << Op->getType() << Op->getSourceRange();
5662 return QualType();
5663 }
5664
5665 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005666 << ResType << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005667 } else if (RequireCompleteType(OpLoc, PointeeTy,
Anders Carlsson029fc692009-08-26 22:59:12 +00005668 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00005669 << Op->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00005670 << ResType))
Douglas Gregordd430f72009-01-19 19:26:10 +00005671 return QualType();
Fariborz Jahanianca75db72009-07-16 17:59:14 +00005672 // Diagnose bad cases where we step over interface counts.
5673 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
5674 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
5675 << PointeeTy << Op->getSourceRange();
5676 return QualType();
5677 }
Chris Lattner6b0cf142008-11-21 07:05:48 +00005678 } else if (ResType->isComplexType()) {
5679 // C99 does not support ++/-- on complex types, we allow as an extension.
5680 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005681 << ResType << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005682 } else {
5683 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Douglas Gregor906db8a2009-12-15 16:44:32 +00005684 << ResType << int(isInc) << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005685 return QualType();
Steve Naroff46ba1eb2007-04-03 23:13:13 +00005686 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005687 // At this point, we know we have a real, complex or pointer type.
Steve Naroff9e1e5512007-08-23 21:37:33 +00005688 // Now make sure the operand is a modifiable lvalue.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005689 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Steve Naroff35d85152007-05-07 00:24:15 +00005690 return QualType();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005691 return ResType;
Steve Naroff26c8ea52007-03-21 21:08:52 +00005692}
5693
Anders Carlsson806700f2008-02-01 07:15:58 +00005694/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Steve Naroff47500512007-04-19 23:00:49 +00005695/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005696/// where the declaration is needed for type checking. We only need to
5697/// handle cases when the expression references a function designator
5698/// or is an lvalue. Here are some examples:
5699/// - &(x) => x
5700/// - &*****f => f for f a function designator.
5701/// - &s.xx => s
5702/// - &s.zz[1].yy -> s, if zz is an array
5703/// - *(x + 1) -> x, if x is an array
5704/// - &"123"[2] -> 0
5705/// - & __real__ x -> x
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005706static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005707 switch (E->getStmtClass()) {
Steve Naroff47500512007-04-19 23:00:49 +00005708 case Stmt::DeclRefExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005709 return cast<DeclRefExpr>(E)->getDecl();
Steve Naroff47500512007-04-19 23:00:49 +00005710 case Stmt::MemberExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005711 // If this is an arrow operator, the address is an offset from
5712 // the base's value, so the object the base refers to is
5713 // irrelevant.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005714 if (cast<MemberExpr>(E)->isArrow())
Chris Lattner48d52842007-11-16 17:46:48 +00005715 return 0;
Eli Friedman3a1e6922009-04-20 08:23:18 +00005716 // Otherwise, the expression refers to a part of the base
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005717 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson806700f2008-02-01 07:15:58 +00005718 case Stmt::ArraySubscriptExprClass: {
Mike Stump87c57ac2009-05-16 07:39:55 +00005719 // FIXME: This code shouldn't be necessary! We should catch the implicit
5720 // promotion of register arrays earlier.
Eli Friedman3a1e6922009-04-20 08:23:18 +00005721 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
5722 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
5723 if (ICE->getSubExpr()->getType()->isArrayType())
5724 return getPrimaryDecl(ICE->getSubExpr());
5725 }
5726 return 0;
Anders Carlsson806700f2008-02-01 07:15:58 +00005727 }
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005728 case Stmt::UnaryOperatorClass: {
5729 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005730
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005731 switch(UO->getOpcode()) {
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005732 case UnaryOperator::Real:
5733 case UnaryOperator::Imag:
5734 case UnaryOperator::Extension:
5735 return getPrimaryDecl(UO->getSubExpr());
5736 default:
5737 return 0;
5738 }
5739 }
Steve Naroff47500512007-04-19 23:00:49 +00005740 case Stmt::ParenExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005741 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner48d52842007-11-16 17:46:48 +00005742 case Stmt::ImplicitCastExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005743 // If the result of an implicit cast is an l-value, we care about
5744 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005745 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Steve Naroff47500512007-04-19 23:00:49 +00005746 default:
5747 return 0;
5748 }
5749}
5750
5751/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump4e1f26a2009-02-19 03:04:26 +00005752/// designator or an lvalue designating an object. If it is an lvalue, the
Steve Naroff47500512007-04-19 23:00:49 +00005753/// object cannot be declared with storage class register or be a bit field.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005754/// Note: The usual conversions are *not* applied to the operand of the &
Steve Naroffa78fe7e2007-05-16 19:47:19 +00005755/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005756/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregorcd695e52008-11-10 20:40:00 +00005757/// we allow the '&' but retain the overloaded-function type.
Steve Naroff35d85152007-05-07 00:24:15 +00005758QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman3a1e6922009-04-20 08:23:18 +00005759 // Make sure to ignore parentheses in subsequent checks
5760 op = op->IgnoreParens();
5761
Douglas Gregor19b8c4f2008-12-17 22:52:20 +00005762 if (op->isTypeDependent())
5763 return Context.DependentTy;
5764
Steve Naroff826e91a2008-01-13 17:10:08 +00005765 if (getLangOptions().C99) {
5766 // Implement C99-only parts of addressof rules.
5767 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
5768 if (uOp->getOpcode() == UnaryOperator::Deref)
5769 // Per C99 6.5.3.2, the address of a deref always returns a valid result
5770 // (assuming the deref expression is valid).
5771 return uOp->getSubExpr()->getType();
5772 }
5773 // Technically, there should be a check for array subscript
5774 // expressions here, but the result of one is always an lvalue anyway.
5775 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005776 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner67315442008-07-26 21:30:36 +00005777 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes17f345f2008-12-16 22:59:47 +00005778
Eli Friedmance7f9002009-05-16 23:27:50 +00005779 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
5780 // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005781 // The operand must be either an l-value or a function designator
Eli Friedmance7f9002009-05-16 23:27:50 +00005782 if (!op->getType()->isFunctionType()) {
Chris Lattner48d52842007-11-16 17:46:48 +00005783 // FIXME: emit more specific diag...
Chris Lattnerf490e152008-11-19 05:27:50 +00005784 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
5785 << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005786 return QualType();
5787 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00005788 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005789 // The operand cannot be a bit-field
5790 Diag(OpLoc, diag::err_typecheck_address_of)
5791 << "bit-field" << op->getSourceRange();
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00005792 return QualType();
Nate Begemana6b47a42009-02-15 22:45:20 +00005793 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
5794 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman3a1e6922009-04-20 08:23:18 +00005795 // The operand cannot be an element of a vector
Chris Lattner29e812b2008-11-20 06:06:08 +00005796 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemana6b47a42009-02-15 22:45:20 +00005797 << "vector element" << op->getSourceRange();
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005798 return QualType();
Fariborz Jahanian385db802009-07-07 18:50:52 +00005799 } else if (isa<ObjCPropertyRefExpr>(op)) {
5800 // cannot take address of a property expression.
5801 Diag(OpLoc, diag::err_typecheck_address_of)
5802 << "property expression" << op->getSourceRange();
5803 return QualType();
Anders Carlsson3fa58d12009-09-14 23:15:26 +00005804 } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) {
5805 // FIXME: Can LHS ever be null here?
Anders Carlsson01ccf992009-09-15 16:03:44 +00005806 if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull())
5807 return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc);
John McCalld14a8642009-11-21 08:51:07 +00005808 } else if (isa<UnresolvedLookupExpr>(op)) {
5809 return Context.OverloadTy;
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005810 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump4e1f26a2009-02-19 03:04:26 +00005811 // We have an lvalue with a decl. Make sure the decl is not declared
Steve Naroff47500512007-04-19 23:00:49 +00005812 // with the register storage-class specifier.
5813 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Steve Naroff35d85152007-05-07 00:24:15 +00005814 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005815 Diag(OpLoc, diag::err_typecheck_address_of)
5816 << "register variable" << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005817 return QualType();
5818 }
John McCalld14a8642009-11-21 08:51:07 +00005819 } else if (isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregorcd695e52008-11-10 20:40:00 +00005820 return Context.OverloadTy;
Anders Carlsson0b675f52009-07-08 21:45:58 +00005821 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor9aa8b552008-12-10 21:26:49 +00005822 // Okay: we can take the address of a field.
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005823 // Could be a pointer to member, though, if there is an explicit
5824 // scope qualifier for the class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005825 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005826 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlsson0b675f52009-07-08 21:45:58 +00005827 if (Ctx && Ctx->isRecord()) {
5828 if (FD->getType()->isReferenceType()) {
Mike Stump11289f42009-09-09 15:08:12 +00005829 Diag(OpLoc,
Anders Carlsson0b675f52009-07-08 21:45:58 +00005830 diag::err_cannot_form_pointer_to_member_of_reference_type)
5831 << FD->getDeclName() << FD->getType();
5832 return QualType();
5833 }
Mike Stump11289f42009-09-09 15:08:12 +00005834
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005835 return Context.getMemberPointerType(op->getType(),
5836 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlsson0b675f52009-07-08 21:45:58 +00005837 }
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005838 }
Anders Carlsson5b535762009-05-16 21:43:42 +00005839 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes5773a1b2008-12-16 22:58:26 +00005840 // Okay: we can take the address of a function.
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005841 // As above.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005842 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() &&
5843 MD->isInstance())
Anders Carlsson5b535762009-05-16 21:43:42 +00005844 return Context.getMemberPointerType(op->getType(),
5845 Context.getTypeDeclType(MD->getParent()).getTypePtr());
5846 } else if (!isa<FunctionDecl>(dcl))
Steve Narofff633d092007-04-25 19:01:39 +00005847 assert(0 && "Unknown/unexpected decl type");
Steve Naroff47500512007-04-19 23:00:49 +00005848 }
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005849
Eli Friedmance7f9002009-05-16 23:27:50 +00005850 if (lval == Expr::LV_IncompleteVoidType) {
5851 // Taking the address of a void variable is technically illegal, but we
5852 // allow it in cases which are otherwise valid.
5853 // Example: "extern void x; void* y = &x;".
5854 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
5855 }
5856
Steve Naroff47500512007-04-19 23:00:49 +00005857 // If the operand has type "type", the result has type "pointer to type".
Steve Naroff35d85152007-05-07 00:24:15 +00005858 return Context.getPointerType(op->getType());
Steve Naroff47500512007-04-19 23:00:49 +00005859}
5860
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005861QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005862 if (Op->isTypeDependent())
5863 return Context.DependentTy;
5864
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005865 UsualUnaryConversions(Op);
5866 QualType Ty = Op->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005867
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005868 // Note that per both C89 and C99, this is always legal, even if ptype is an
5869 // incomplete type or void. It would be possible to warn about dereferencing
5870 // a void pointer, but it's completely well-defined, and such a warning is
5871 // unlikely to catch any mistakes.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005872 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff826e91a2008-01-13 17:10:08 +00005873 return PT->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005874
John McCall9dd450b2009-09-21 23:43:11 +00005875 if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>())
Fariborz Jahanianf15d4b62009-09-03 00:43:07 +00005876 return OPT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005877
Chris Lattner29e812b2008-11-20 06:06:08 +00005878 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005879 << Ty << Op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005880 return QualType();
Steve Naroff1926c832007-04-24 00:23:05 +00005881}
Steve Naroff218bc2b2007-05-04 21:54:46 +00005882
5883static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
5884 tok::TokenKind Kind) {
5885 BinaryOperator::Opcode Opc;
5886 switch (Kind) {
5887 default: assert(0 && "Unknown binop!");
Sebastian Redl112a97662009-02-07 00:15:38 +00005888 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
5889 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00005890 case tok::star: Opc = BinaryOperator::Mul; break;
5891 case tok::slash: Opc = BinaryOperator::Div; break;
5892 case tok::percent: Opc = BinaryOperator::Rem; break;
5893 case tok::plus: Opc = BinaryOperator::Add; break;
5894 case tok::minus: Opc = BinaryOperator::Sub; break;
5895 case tok::lessless: Opc = BinaryOperator::Shl; break;
5896 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
5897 case tok::lessequal: Opc = BinaryOperator::LE; break;
5898 case tok::less: Opc = BinaryOperator::LT; break;
5899 case tok::greaterequal: Opc = BinaryOperator::GE; break;
5900 case tok::greater: Opc = BinaryOperator::GT; break;
5901 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
5902 case tok::equalequal: Opc = BinaryOperator::EQ; break;
5903 case tok::amp: Opc = BinaryOperator::And; break;
5904 case tok::caret: Opc = BinaryOperator::Xor; break;
5905 case tok::pipe: Opc = BinaryOperator::Or; break;
5906 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
5907 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
5908 case tok::equal: Opc = BinaryOperator::Assign; break;
5909 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
5910 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
5911 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
5912 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
5913 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
5914 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
5915 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
5916 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
5917 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
5918 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
5919 case tok::comma: Opc = BinaryOperator::Comma; break;
5920 }
5921 return Opc;
5922}
5923
Steve Naroff35d85152007-05-07 00:24:15 +00005924static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
5925 tok::TokenKind Kind) {
5926 UnaryOperator::Opcode Opc;
5927 switch (Kind) {
5928 default: assert(0 && "Unknown unary op!");
5929 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
5930 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
5931 case tok::amp: Opc = UnaryOperator::AddrOf; break;
5932 case tok::star: Opc = UnaryOperator::Deref; break;
5933 case tok::plus: Opc = UnaryOperator::Plus; break;
5934 case tok::minus: Opc = UnaryOperator::Minus; break;
5935 case tok::tilde: Opc = UnaryOperator::Not; break;
5936 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005937 case tok::kw___real: Opc = UnaryOperator::Real; break;
5938 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
Chris Lattnerd0f76512007-06-08 22:16:53 +00005939 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005940 }
5941 return Opc;
5942}
5943
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005944/// CreateBuiltinBinOp - Creates a new built-in binary operation with
5945/// operator @p Opc at location @c TokLoc. This routine only supports
5946/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005947Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
5948 unsigned Op,
5949 Expr *lhs, Expr *rhs) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005950 QualType ResultTy; // Result type of the binary operator.
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005951 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005952 // The following two variables are used for compound assignment operators
5953 QualType CompLHSTy; // Type of LHS after promotions for computation
5954 QualType CompResultTy; // Type of computation result
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005955
5956 switch (Opc) {
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005957 case BinaryOperator::Assign:
5958 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
5959 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005960 case BinaryOperator::PtrMemD:
5961 case BinaryOperator::PtrMemI:
5962 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
5963 Opc == BinaryOperator::PtrMemI);
5964 break;
5965 case BinaryOperator::Mul:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005966 case BinaryOperator::Div:
5967 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
5968 break;
5969 case BinaryOperator::Rem:
5970 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
5971 break;
5972 case BinaryOperator::Add:
5973 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
5974 break;
5975 case BinaryOperator::Sub:
5976 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
5977 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005978 case BinaryOperator::Shl:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005979 case BinaryOperator::Shr:
5980 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
5981 break;
5982 case BinaryOperator::LE:
5983 case BinaryOperator::LT:
5984 case BinaryOperator::GE:
5985 case BinaryOperator::GT:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005986 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005987 break;
5988 case BinaryOperator::EQ:
5989 case BinaryOperator::NE:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005990 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005991 break;
5992 case BinaryOperator::And:
5993 case BinaryOperator::Xor:
5994 case BinaryOperator::Or:
5995 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5996 break;
5997 case BinaryOperator::LAnd:
5998 case BinaryOperator::LOr:
5999 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
6000 break;
6001 case BinaryOperator::MulAssign:
6002 case BinaryOperator::DivAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006003 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
6004 CompLHSTy = CompResultTy;
6005 if (!CompResultTy.isNull())
6006 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006007 break;
6008 case BinaryOperator::RemAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006009 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
6010 CompLHSTy = CompResultTy;
6011 if (!CompResultTy.isNull())
6012 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006013 break;
6014 case BinaryOperator::AddAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006015 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
6016 if (!CompResultTy.isNull())
6017 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006018 break;
6019 case BinaryOperator::SubAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006020 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
6021 if (!CompResultTy.isNull())
6022 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006023 break;
6024 case BinaryOperator::ShlAssign:
6025 case BinaryOperator::ShrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006026 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
6027 CompLHSTy = CompResultTy;
6028 if (!CompResultTy.isNull())
6029 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006030 break;
6031 case BinaryOperator::AndAssign:
6032 case BinaryOperator::XorAssign:
6033 case BinaryOperator::OrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006034 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
6035 CompLHSTy = CompResultTy;
6036 if (!CompResultTy.isNull())
6037 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006038 break;
6039 case BinaryOperator::Comma:
6040 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
6041 break;
6042 }
6043 if (ResultTy.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00006044 return ExprError();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006045 if (CompResultTy.isNull())
Steve Narofff6009ed2009-01-21 00:14:39 +00006046 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
6047 else
6048 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00006049 CompLHSTy, CompResultTy,
6050 OpLoc));
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006051}
6052
Sebastian Redl44615072009-10-27 12:10:02 +00006053/// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps
6054/// ParenRange in parentheses.
Sebastian Redl4afb7c582009-10-26 17:01:32 +00006055static void SuggestParentheses(Sema &Self, SourceLocation Loc,
6056 const PartialDiagnostic &PD,
6057 SourceRange ParenRange)
6058{
6059 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
6060 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
6061 // We can't display the parentheses, so just dig the
6062 // warning/error and return.
6063 Self.Diag(Loc, PD);
6064 return;
6065 }
6066
6067 Self.Diag(Loc, PD)
6068 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
6069 << CodeModificationHint::CreateInsertion(EndLoc, ")");
6070}
6071
Sebastian Redl44615072009-10-27 12:10:02 +00006072/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
6073/// operators are mixed in a way that suggests that the programmer forgot that
6074/// comparison operators have higher precedence. The most typical example of
6075/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
Sebastian Redl43028242009-10-26 15:24:15 +00006076static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc,
6077 SourceLocation OpLoc,Expr *lhs,Expr *rhs){
Sebastian Redl44615072009-10-27 12:10:02 +00006078 typedef BinaryOperator BinOp;
6079 BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1),
6080 rhsopc = static_cast<BinOp::Opcode>(-1);
6081 if (BinOp *BO = dyn_cast<BinOp>(lhs))
Sebastian Redl43028242009-10-26 15:24:15 +00006082 lhsopc = BO->getOpcode();
Sebastian Redl44615072009-10-27 12:10:02 +00006083 if (BinOp *BO = dyn_cast<BinOp>(rhs))
Sebastian Redl43028242009-10-26 15:24:15 +00006084 rhsopc = BO->getOpcode();
6085
6086 // Subs are not binary operators.
6087 if (lhsopc == -1 && rhsopc == -1)
6088 return;
6089
6090 // Bitwise operations are sometimes used as eager logical ops.
6091 // Don't diagnose this.
Sebastian Redl44615072009-10-27 12:10:02 +00006092 if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) &&
6093 (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc)))
Sebastian Redl43028242009-10-26 15:24:15 +00006094 return;
6095
Sebastian Redl44615072009-10-27 12:10:02 +00006096 if (BinOp::isComparisonOp(lhsopc))
Sebastian Redl4afb7c582009-10-26 17:01:32 +00006097 SuggestParentheses(Self, OpLoc,
6098 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redl44615072009-10-27 12:10:02 +00006099 << SourceRange(lhs->getLocStart(), OpLoc)
6100 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc),
6101 SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd()));
6102 else if (BinOp::isComparisonOp(rhsopc))
Sebastian Redl4afb7c582009-10-26 17:01:32 +00006103 SuggestParentheses(Self, OpLoc,
6104 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redl44615072009-10-27 12:10:02 +00006105 << SourceRange(OpLoc, rhs->getLocEnd())
6106 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc),
6107 SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart()));
Sebastian Redl43028242009-10-26 15:24:15 +00006108}
6109
6110/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
6111/// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3".
6112/// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does.
6113static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc,
6114 SourceLocation OpLoc, Expr *lhs, Expr *rhs){
Sebastian Redl44615072009-10-27 12:10:02 +00006115 if (BinaryOperator::isBitwiseOp(Opc))
Sebastian Redl43028242009-10-26 15:24:15 +00006116 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs);
6117}
6118
Steve Naroff218bc2b2007-05-04 21:54:46 +00006119// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb5d49352009-01-19 22:31:54 +00006120Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
6121 tok::TokenKind Kind,
6122 ExprArg LHS, ExprArg RHS) {
Steve Naroff218bc2b2007-05-04 21:54:46 +00006123 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssonb781bcd2009-05-01 19:49:17 +00006124 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Steve Naroff218bc2b2007-05-04 21:54:46 +00006125
Steve Naroff83895f72007-09-16 03:34:24 +00006126 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
6127 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Steve Naroff218bc2b2007-05-04 21:54:46 +00006128
Sebastian Redl43028242009-10-26 15:24:15 +00006129 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
6130 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs);
6131
Douglas Gregor5287f092009-11-05 00:51:44 +00006132 return BuildBinOp(S, TokLoc, Opc, lhs, rhs);
6133}
6134
6135Action::OwningExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
6136 BinaryOperator::Opcode Opc,
6137 Expr *lhs, Expr *rhs) {
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006138 if (getLangOptions().CPlusPlus &&
Mike Stump11289f42009-09-09 15:08:12 +00006139 (lhs->getType()->isOverloadableType() ||
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006140 rhs->getType()->isOverloadableType())) {
6141 // Find all of the overloaded operators visible from this
6142 // point. We perform both an operator-name lookup from the local
6143 // scope and an argument-dependent lookup based on the types of
6144 // the arguments.
Douglas Gregord2b7ef62009-03-13 00:33:25 +00006145 FunctionSet Functions;
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006146 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
6147 if (OverOp != OO_None) {
Douglas Gregor5287f092009-11-05 00:51:44 +00006148 if (S)
6149 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
6150 Functions);
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006151 Expr *Args[2] = { lhs, rhs };
Mike Stump11289f42009-09-09 15:08:12 +00006152 DeclarationName OpName
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006153 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redlc057f422009-10-23 19:23:15 +00006154 ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions);
Douglas Gregora11693b2008-11-12 17:17:38 +00006155 }
Douglas Gregor5287f092009-11-05 00:51:44 +00006156
Douglas Gregor1baf54e2009-03-13 18:40:31 +00006157 // Build the (potentially-overloaded, potentially-dependent)
6158 // binary operation.
Douglas Gregor5287f092009-11-05 00:51:44 +00006159 return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb5d49352009-01-19 22:31:54 +00006160 }
Douglas Gregor5287f092009-11-05 00:51:44 +00006161
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00006162 // Build a built-in binary operation.
Douglas Gregor5287f092009-11-05 00:51:44 +00006163 return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs);
Steve Naroff218bc2b2007-05-04 21:54:46 +00006164}
6165
Douglas Gregor084d8552009-03-13 23:49:33 +00006166Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00006167 unsigned OpcIn,
Douglas Gregor084d8552009-03-13 23:49:33 +00006168 ExprArg InputArg) {
6169 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregord08452f2008-11-19 15:42:04 +00006170
Mike Stump87c57ac2009-05-16 07:39:55 +00006171 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregor084d8552009-03-13 23:49:33 +00006172 Expr *Input = (Expr *)InputArg.get();
Steve Naroff35d85152007-05-07 00:24:15 +00006173 QualType resultType;
6174 switch (Opc) {
Douglas Gregor084d8552009-03-13 23:49:33 +00006175 case UnaryOperator::OffsetOf:
6176 assert(false && "Invalid unary operator");
6177 break;
6178
Steve Naroff35d85152007-05-07 00:24:15 +00006179 case UnaryOperator::PreInc:
6180 case UnaryOperator::PreDec:
Eli Friedman6aea5752009-07-22 22:25:00 +00006181 case UnaryOperator::PostInc:
6182 case UnaryOperator::PostDec:
Sebastian Redle10c2c32008-12-20 09:35:34 +00006183 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedman6aea5752009-07-22 22:25:00 +00006184 Opc == UnaryOperator::PreInc ||
6185 Opc == UnaryOperator::PostInc);
Steve Naroff35d85152007-05-07 00:24:15 +00006186 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006187 case UnaryOperator::AddrOf:
Chris Lattner86554282007-06-08 22:32:33 +00006188 resultType = CheckAddressOfOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00006189 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006190 case UnaryOperator::Deref:
Steve Naroffb7235642007-12-18 04:06:57 +00006191 DefaultFunctionArrayConversion(Input);
Chris Lattner86554282007-06-08 22:32:33 +00006192 resultType = CheckIndirectionOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00006193 break;
6194 case UnaryOperator::Plus:
6195 case UnaryOperator::Minus:
Steve Naroff31090012007-07-16 21:54:35 +00006196 UsualUnaryConversions(Input);
6197 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006198 if (resultType->isDependentType())
6199 break;
Douglas Gregord08452f2008-11-19 15:42:04 +00006200 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
6201 break;
6202 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
6203 resultType->isEnumeralType())
6204 break;
6205 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
6206 Opc == UnaryOperator::Plus &&
6207 resultType->isPointerType())
6208 break;
6209
Sebastian Redlc215cfc2009-01-19 00:08:26 +00006210 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
6211 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00006212 case UnaryOperator::Not: // bitwise complement
Steve Naroff31090012007-07-16 21:54:35 +00006213 UsualUnaryConversions(Input);
6214 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006215 if (resultType->isDependentType())
6216 break;
Chris Lattner0d707612008-07-25 23:52:49 +00006217 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
6218 if (resultType->isComplexType() || resultType->isComplexIntegerType())
6219 // C99 does not support '~' for complex conjugation.
Chris Lattner29e812b2008-11-20 06:06:08 +00006220 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00006221 << resultType << Input->getSourceRange();
Chris Lattner0d707612008-07-25 23:52:49 +00006222 else if (!resultType->isIntegerType())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00006223 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
6224 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00006225 break;
6226 case UnaryOperator::LNot: // logical negation
Steve Naroff71b59a92007-06-04 22:22:31 +00006227 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroff31090012007-07-16 21:54:35 +00006228 DefaultFunctionArrayConversion(Input);
6229 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006230 if (resultType->isDependentType())
6231 break;
Steve Naroff35d85152007-05-07 00:24:15 +00006232 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redlc215cfc2009-01-19 00:08:26 +00006233 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
6234 << resultType << Input->getSourceRange());
Chris Lattnerbe31ed82007-06-02 19:11:33 +00006235 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00006236 // In C++, it's bool. C++ 5.3.1p8
6237 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Steve Naroff35d85152007-05-07 00:24:15 +00006238 break;
Chris Lattner30b5dd02007-08-24 21:16:53 +00006239 case UnaryOperator::Real:
Chris Lattner30b5dd02007-08-24 21:16:53 +00006240 case UnaryOperator::Imag:
Chris Lattner709322b2009-02-17 08:12:06 +00006241 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattner30b5dd02007-08-24 21:16:53 +00006242 break;
Chris Lattner86554282007-06-08 22:32:33 +00006243 case UnaryOperator::Extension:
Chris Lattner86554282007-06-08 22:32:33 +00006244 resultType = Input->getType();
Steve Naroff043d45d2007-05-15 02:32:35 +00006245 break;
Steve Naroff35d85152007-05-07 00:24:15 +00006246 }
6247 if (resultType.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00006248 return ExprError();
Douglas Gregor084d8552009-03-13 23:49:33 +00006249
6250 InputArg.release();
Steve Narofff6009ed2009-01-21 00:14:39 +00006251 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Steve Naroff35d85152007-05-07 00:24:15 +00006252}
Chris Lattnereefa10e2007-05-28 06:56:27 +00006253
Douglas Gregor5287f092009-11-05 00:51:44 +00006254Action::OwningExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
6255 UnaryOperator::Opcode Opc,
6256 ExprArg input) {
Douglas Gregor084d8552009-03-13 23:49:33 +00006257 Expr *Input = (Expr*)input.get();
Anders Carlsson461a2c02009-11-14 21:26:41 +00006258 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType() &&
6259 Opc != UnaryOperator::Extension) {
Douglas Gregor084d8552009-03-13 23:49:33 +00006260 // Find all of the overloaded operators visible from this
6261 // point. We perform both an operator-name lookup from the local
6262 // scope and an argument-dependent lookup based on the types of
6263 // the arguments.
6264 FunctionSet Functions;
6265 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
6266 if (OverOp != OO_None) {
Douglas Gregor5287f092009-11-05 00:51:44 +00006267 if (S)
6268 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
6269 Functions);
Mike Stump11289f42009-09-09 15:08:12 +00006270 DeclarationName OpName
Douglas Gregor084d8552009-03-13 23:49:33 +00006271 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redlc057f422009-10-23 19:23:15 +00006272 ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions);
Douglas Gregor084d8552009-03-13 23:49:33 +00006273 }
Douglas Gregor5287f092009-11-05 00:51:44 +00006274
Douglas Gregor084d8552009-03-13 23:49:33 +00006275 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
6276 }
Douglas Gregor5287f092009-11-05 00:51:44 +00006277
Douglas Gregor084d8552009-03-13 23:49:33 +00006278 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
6279}
6280
Douglas Gregor5287f092009-11-05 00:51:44 +00006281// Unary Operators. 'Tok' is the token for the operator.
6282Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
6283 tok::TokenKind Op, ExprArg input) {
6284 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), move(input));
6285}
6286
Steve Naroff66356bd2007-09-16 14:56:35 +00006287/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006288Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
6289 SourceLocation LabLoc,
6290 IdentifierInfo *LabelII) {
Chris Lattnereefa10e2007-05-28 06:56:27 +00006291 // Look up the record for this label identifier.
Chris Lattner3318e862009-04-18 20:01:55 +00006292 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stump4e1f26a2009-02-19 03:04:26 +00006293
Daniel Dunbar88402ce2008-08-04 16:51:22 +00006294 // If we haven't seen this label yet, create a forward reference. It
6295 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroff846b1ec2009-03-13 15:38:40 +00006296 if (LabelDecl == 0)
Steve Narofff6009ed2009-01-21 00:14:39 +00006297 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006298
Chris Lattnereefa10e2007-05-28 06:56:27 +00006299 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006300 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
6301 Context.getPointerType(Context.VoidTy)));
Chris Lattnereefa10e2007-05-28 06:56:27 +00006302}
6303
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006304Sema::OwningExprResult
6305Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
6306 SourceLocation RPLoc) { // "({..})"
6307 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattner366727f2007-07-24 16:58:17 +00006308 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
6309 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
6310
Eli Friedman52cc0162009-01-24 23:09:00 +00006311 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattnera69b0762009-04-25 19:11:05 +00006312 if (isFileScope)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006313 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedman52cc0162009-01-24 23:09:00 +00006314
Chris Lattner366727f2007-07-24 16:58:17 +00006315 // FIXME: there are a variety of strange constraints to enforce here, for
6316 // example, it is not possible to goto into a stmt expression apparently.
6317 // More semantic analysis is needed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00006318
Chris Lattner366727f2007-07-24 16:58:17 +00006319 // If there are sub stmts in the compound stmt, take the type of the last one
6320 // as the type of the stmtexpr.
6321 QualType Ty = Context.VoidTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006322
Chris Lattner944d3062008-07-26 19:51:01 +00006323 if (!Compound->body_empty()) {
6324 Stmt *LastStmt = Compound->body_back();
6325 // If LastStmt is a label, skip down through into the body.
6326 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
6327 LastStmt = Label->getSubStmt();
Mike Stump4e1f26a2009-02-19 03:04:26 +00006328
Chris Lattner944d3062008-07-26 19:51:01 +00006329 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattner366727f2007-07-24 16:58:17 +00006330 Ty = LastExpr->getType();
Chris Lattner944d3062008-07-26 19:51:01 +00006331 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006332
Eli Friedmanba961a92009-03-23 00:24:07 +00006333 // FIXME: Check that expression type is complete/non-abstract; statement
6334 // expressions are not lvalues.
6335
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006336 substmt.release();
6337 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattner366727f2007-07-24 16:58:17 +00006338}
Steve Naroff78864672007-08-01 22:05:33 +00006339
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006340Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
6341 SourceLocation BuiltinLoc,
6342 SourceLocation TypeLoc,
6343 TypeTy *argty,
6344 OffsetOfComponent *CompPtr,
6345 unsigned NumComponents,
6346 SourceLocation RPLoc) {
6347 // FIXME: This function leaks all expressions in the offset components on
6348 // error.
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00006349 // FIXME: Preserve type source info.
6350 QualType ArgTy = GetTypeFromParser(argty);
Chris Lattnerf17bd422007-08-30 17:45:32 +00006351 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00006352
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006353 bool Dependent = ArgTy->isDependentType();
6354
Chris Lattnerf17bd422007-08-30 17:45:32 +00006355 // We must have at least one component that refers to the type, and the first
6356 // one is known to be a field designator. Verify that the ArgTy represents
6357 // a struct/union/class.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006358 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006359 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006360
Eli Friedmanba961a92009-03-23 00:24:07 +00006361 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
6362 // with an incomplete type would be illegal.
Douglas Gregor26897462009-03-11 16:48:53 +00006363
Eli Friedman988a16b2009-02-27 06:44:11 +00006364 // Otherwise, create a null pointer as the base, and iteratively process
6365 // the offsetof designators.
6366 QualType ArgTyPtr = Context.getPointerType(ArgTy);
6367 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006368 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman988a16b2009-02-27 06:44:11 +00006369 ArgTy, SourceLocation());
Eli Friedman16c88df2009-01-26 01:33:06 +00006370
Chris Lattner78502cf2007-08-31 21:49:13 +00006371 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
6372 // GCC extension, diagnose them.
Eli Friedman988a16b2009-02-27 06:44:11 +00006373 // FIXME: This diagnostic isn't actually visible because the location is in
6374 // a system header!
Chris Lattner78502cf2007-08-31 21:49:13 +00006375 if (NumComponents != 1)
Chris Lattnerf490e152008-11-19 05:27:50 +00006376 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
6377 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006378
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006379 if (!Dependent) {
Eli Friedman8469bc72009-05-03 21:22:18 +00006380 bool DidWarnAboutNonPOD = false;
Mike Stump11289f42009-09-09 15:08:12 +00006381
John McCall9eff4e62009-11-04 03:03:43 +00006382 if (RequireCompleteType(TypeLoc, Res->getType(),
6383 diag::err_offsetof_incomplete_type))
6384 return ExprError();
6385
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006386 // FIXME: Dependent case loses a lot of information here. And probably
6387 // leaks like a sieve.
6388 for (unsigned i = 0; i != NumComponents; ++i) {
6389 const OffsetOfComponent &OC = CompPtr[i];
6390 if (OC.isBrackets) {
6391 // Offset of an array sub-field. TODO: Should we allow vector elements?
6392 const ArrayType *AT = Context.getAsArrayType(Res->getType());
6393 if (!AT) {
6394 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006395 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
6396 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006397 }
6398
6399 // FIXME: C++: Verify that operator[] isn't overloaded.
6400
Eli Friedman988a16b2009-02-27 06:44:11 +00006401 // Promote the array so it looks more like a normal array subscript
6402 // expression.
6403 DefaultFunctionArrayConversion(Res);
6404
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006405 // C99 6.5.2.1p1
6406 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006407 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006408 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006409 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner003af242009-04-25 22:50:55 +00006410 diag::err_typecheck_subscript_not_integer)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006411 << Idx->getSourceRange());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006412
6413 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
6414 OC.LocEnd);
6415 continue;
Chris Lattnerf17bd422007-08-30 17:45:32 +00006416 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006417
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006418 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006419 if (!RC) {
6420 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006421 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
6422 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006423 }
Chris Lattner98dbf0a2007-08-30 17:59:59 +00006424
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006425 // Get the decl corresponding to this.
6426 RecordDecl *RD = RC->getDecl();
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00006427 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00006428 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Douglas Gregor7ca84af2009-12-12 07:25:49 +00006429 switch (ExprEvalContexts.back().Context ) {
6430 case Unevaluated:
6431 // The argument will never be evaluated, so don't complain.
6432 break;
6433
6434 case PotentiallyEvaluated:
6435 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
6436 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
6437 << Res->getType());
6438 DidWarnAboutNonPOD = true;
6439 break;
6440
6441 case PotentiallyPotentiallyEvaluated:
Douglas Gregorfab31f42009-12-12 07:57:52 +00006442 ExprEvalContexts.back().addDiagnostic(BuiltinLoc,
6443 PDiag(diag::warn_offsetof_non_pod_type)
6444 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
6445 << Res->getType());
Douglas Gregor7ca84af2009-12-12 07:25:49 +00006446 DidWarnAboutNonPOD = true;
6447 break;
6448 }
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00006449 }
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00006450 }
Mike Stump11289f42009-09-09 15:08:12 +00006451
John McCall27b18f82009-11-17 02:14:36 +00006452 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
6453 LookupQualifiedName(R, RD);
John McCall9f3059a2009-10-09 21:13:30 +00006454
John McCall67c00872009-12-02 08:25:40 +00006455 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006456 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006457 if (!MemberDecl)
Douglas Gregore40876a2009-10-13 21:16:44 +00006458 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
6459 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stump4e1f26a2009-02-19 03:04:26 +00006460
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006461 // FIXME: C++: Verify that MemberDecl isn't a static field.
6462 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman64fc3c62009-04-26 20:50:44 +00006463 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +00006464 Res = BuildAnonymousStructUnionMemberReference(
John McCall7e1d6d72009-11-11 03:23:23 +00006465 OC.LocEnd, MemberDecl, Res, OC.LocEnd).takeAs<Expr>();
Eli Friedman64fc3c62009-04-26 20:50:44 +00006466 } else {
Eli Friedman78cde142009-12-04 07:18:51 +00006467 PerformObjectMemberConversion(Res, MemberDecl);
Eli Friedman64fc3c62009-04-26 20:50:44 +00006468 // MemberDecl->getType() doesn't get the right qualifiers, but it
6469 // doesn't matter here.
6470 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
6471 MemberDecl->getType().getNonReferenceType());
6472 }
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006473 }
Chris Lattnerf17bd422007-08-30 17:45:32 +00006474 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006475
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006476 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
6477 Context.getSizeType(), BuiltinLoc));
Chris Lattnerf17bd422007-08-30 17:45:32 +00006478}
6479
6480
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006481Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
6482 TypeTy *arg1,TypeTy *arg2,
6483 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00006484 // FIXME: Preserve type source info.
6485 QualType argT1 = GetTypeFromParser(arg1);
6486 QualType argT2 = GetTypeFromParser(arg2);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006487
Steve Naroff78864672007-08-01 22:05:33 +00006488 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stump4e1f26a2009-02-19 03:04:26 +00006489
Douglas Gregorf907cbf2009-05-19 22:28:02 +00006490 if (getLangOptions().CPlusPlus) {
6491 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
6492 << SourceRange(BuiltinLoc, RPLoc);
6493 return ExprError();
6494 }
6495
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006496 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
6497 argT1, argT2, RPLoc));
Steve Naroff78864672007-08-01 22:05:33 +00006498}
6499
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006500Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
6501 ExprArg cond,
6502 ExprArg expr1, ExprArg expr2,
6503 SourceLocation RPLoc) {
6504 Expr *CondExpr = static_cast<Expr*>(cond.get());
6505 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
6506 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stump4e1f26a2009-02-19 03:04:26 +00006507
Steve Naroff9efdabc2007-08-03 21:21:27 +00006508 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
6509
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006510 QualType resType;
Douglas Gregor56751b52009-09-25 04:25:58 +00006511 bool ValueDependent = false;
Douglas Gregor0df91122009-05-19 22:43:30 +00006512 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006513 resType = Context.DependentTy;
Douglas Gregor56751b52009-09-25 04:25:58 +00006514 ValueDependent = true;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006515 } else {
6516 // The conditional expression is required to be a constant expression.
6517 llvm::APSInt condEval(32);
6518 SourceLocation ExpLoc;
6519 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006520 return ExprError(Diag(ExpLoc,
6521 diag::err_typecheck_choose_expr_requires_constant)
6522 << CondExpr->getSourceRange());
Steve Naroff9efdabc2007-08-03 21:21:27 +00006523
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006524 // If the condition is > zero, then the AST type is the same as the LSHExpr.
6525 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
Douglas Gregor56751b52009-09-25 04:25:58 +00006526 ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent()
6527 : RHSExpr->isValueDependent();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00006528 }
6529
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006530 cond.release(); expr1.release(); expr2.release();
6531 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
Douglas Gregor56751b52009-09-25 04:25:58 +00006532 resType, RPLoc,
6533 resType->isDependentType(),
6534 ValueDependent));
Steve Naroff9efdabc2007-08-03 21:21:27 +00006535}
6536
Steve Naroffc540d662008-09-03 18:15:37 +00006537//===----------------------------------------------------------------------===//
6538// Clang Extensions.
6539//===----------------------------------------------------------------------===//
6540
6541/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006542void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroffc540d662008-09-03 18:15:37 +00006543 // Analyze block parameters.
6544 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stump4e1f26a2009-02-19 03:04:26 +00006545
Steve Naroffc540d662008-09-03 18:15:37 +00006546 // Add BSI to CurBlock.
6547 BSI->PrevBlockInfo = CurBlock;
6548 CurBlock = BSI;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006549
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006550 BSI->ReturnType = QualType();
Steve Naroffc540d662008-09-03 18:15:37 +00006551 BSI->TheScope = BlockScope;
Mike Stumpa6703322009-02-19 22:01:56 +00006552 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbarb9a68612009-07-29 01:59:17 +00006553 BSI->hasPrototype = false;
Chris Lattner45542ea2009-04-19 05:28:12 +00006554 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
6555 CurFunctionNeedsScopeChecking = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006556
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006557 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Ted Kremenek54ad1ab2009-12-07 22:01:30 +00006558 CurContext->addDecl(BSI->TheDecl);
Douglas Gregor91f84212008-12-11 16:49:14 +00006559 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006560}
6561
Mike Stump82f071f2009-02-04 22:31:32 +00006562void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpf70bcf72009-05-07 18:43:07 +00006563 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump82f071f2009-02-04 22:31:32 +00006564
6565 if (ParamInfo.getNumTypeObjects() == 0
6566 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor758a8692009-06-17 21:51:59 +00006567 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump82f071f2009-02-04 22:31:32 +00006568 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
6569
Mike Stumpd456c482009-04-28 01:10:27 +00006570 if (T->isArrayType()) {
6571 Diag(ParamInfo.getSourceRange().getBegin(),
6572 diag::err_block_returns_array);
6573 return;
6574 }
6575
Mike Stump82f071f2009-02-04 22:31:32 +00006576 // The parameter list is optional, if there was none, assume ().
6577 if (!T->isFunctionType())
6578 T = Context.getFunctionType(T, NULL, 0, 0, 0);
6579
6580 CurBlock->hasPrototype = true;
6581 CurBlock->isVariadic = false;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006582 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00006583 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00006584 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00006585 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006586 // FIXME: remove the attribute.
6587 }
John McCall9dd450b2009-09-21 23:43:11 +00006588 QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00006589
Chris Lattner6de05082009-04-11 19:27:54 +00006590 // Do not allow returning a objc interface by-value.
6591 if (RetTy->isObjCInterfaceType()) {
6592 Diag(ParamInfo.getSourceRange().getBegin(),
6593 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
6594 return;
6595 }
Mike Stump82f071f2009-02-04 22:31:32 +00006596 return;
6597 }
6598
Steve Naroffc540d662008-09-03 18:15:37 +00006599 // Analyze arguments to block.
6600 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
6601 "Not a function declarator!");
6602 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006603
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006604 CurBlock->hasPrototype = FTI.hasPrototype;
6605 CurBlock->isVariadic = true;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006606
Steve Naroffc540d662008-09-03 18:15:37 +00006607 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
6608 // no arguments, not a function that takes a single void argument.
6609 if (FTI.hasPrototype &&
6610 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattner83f095c2009-03-28 19:18:32 +00006611 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
6612 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroffc540d662008-09-03 18:15:37 +00006613 // empty arg list, don't push any params.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006614 CurBlock->isVariadic = false;
Steve Naroffc540d662008-09-03 18:15:37 +00006615 } else if (FTI.hasPrototype) {
6616 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattner83f095c2009-03-28 19:18:32 +00006617 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006618 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroffc540d662008-09-03 18:15:37 +00006619 }
Jay Foad7d0479f2009-05-21 09:52:38 +00006620 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner6de05082009-04-11 19:27:54 +00006621 CurBlock->Params.size());
Fariborz Jahanian960910a2009-05-19 17:08:59 +00006622 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor758a8692009-06-17 21:51:59 +00006623 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006624 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
6625 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
6626 // If this has an identifier, add it to the scope stack.
6627 if ((*AI)->getIdentifier())
6628 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner6de05082009-04-11 19:27:54 +00006629
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006630 // Check for a valid sentinel attribute on this block.
Mike Stump11289f42009-09-09 15:08:12 +00006631 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00006632 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00006633 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00006634 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006635 // FIXME: remove the attribute.
6636 }
Mike Stump11289f42009-09-09 15:08:12 +00006637
Chris Lattner6de05082009-04-11 19:27:54 +00006638 // Analyze the return type.
6639 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall9dd450b2009-09-21 23:43:11 +00006640 QualType RetTy = T->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00006641
Chris Lattner6de05082009-04-11 19:27:54 +00006642 // Do not allow returning a objc interface by-value.
6643 if (RetTy->isObjCInterfaceType()) {
6644 Diag(ParamInfo.getSourceRange().getBegin(),
6645 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
6646 } else if (!RetTy->isDependentType())
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006647 CurBlock->ReturnType = RetTy;
Steve Naroffc540d662008-09-03 18:15:37 +00006648}
6649
6650/// ActOnBlockError - If there is an error parsing a block, this callback
6651/// is invoked to pop the information about the block from the action impl.
6652void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
6653 // Ensure that CurBlock is deleted.
6654 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006655
Chris Lattner45542ea2009-04-19 05:28:12 +00006656 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
6657
Steve Naroffc540d662008-09-03 18:15:37 +00006658 // Pop off CurBlock, handle nested blocks.
Chris Lattner41b86942009-04-21 22:38:46 +00006659 PopDeclContext();
Steve Naroffc540d662008-09-03 18:15:37 +00006660 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroffc540d662008-09-03 18:15:37 +00006661 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroffc540d662008-09-03 18:15:37 +00006662}
6663
6664/// ActOnBlockStmtExpr - This is called when the body of a block statement
6665/// literal was successfully completed. ^(int x){...}
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006666Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
6667 StmtArg body, Scope *CurScope) {
Chris Lattner9eac9312009-03-27 04:18:06 +00006668 // If blocks are disabled, emit an error.
6669 if (!LangOpts.Blocks)
6670 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump11289f42009-09-09 15:08:12 +00006671
Steve Naroffc540d662008-09-03 18:15:37 +00006672 // Ensure that CurBlock is deleted.
6673 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroffc540d662008-09-03 18:15:37 +00006674
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006675 PopDeclContext();
6676
Steve Naroffc540d662008-09-03 18:15:37 +00006677 // Pop off CurBlock, handle nested blocks.
6678 CurBlock = CurBlock->PrevBlockInfo;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006679
Steve Naroffc540d662008-09-03 18:15:37 +00006680 QualType RetTy = Context.VoidTy;
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006681 if (!BSI->ReturnType.isNull())
6682 RetTy = BSI->ReturnType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006683
Steve Naroffc540d662008-09-03 18:15:37 +00006684 llvm::SmallVector<QualType, 8> ArgTypes;
6685 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
6686 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00006687
Mike Stump3bf1ab42009-07-28 22:04:01 +00006688 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroffc540d662008-09-03 18:15:37 +00006689 QualType BlockTy;
6690 if (!BSI->hasPrototype)
Mike Stump3bf1ab42009-07-28 22:04:01 +00006691 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
6692 NoReturn);
Steve Naroffc540d662008-09-03 18:15:37 +00006693 else
Jay Foad7d0479f2009-05-21 09:52:38 +00006694 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump3bf1ab42009-07-28 22:04:01 +00006695 BSI->isVariadic, 0, false, false, 0, 0,
6696 NoReturn);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006697
Eli Friedmanba961a92009-03-23 00:24:07 +00006698 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006699 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroffc540d662008-09-03 18:15:37 +00006700 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006701
Chris Lattner45542ea2009-04-19 05:28:12 +00006702 // If needed, diagnose invalid gotos and switches in the block.
6703 if (CurFunctionNeedsScopeChecking)
6704 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
6705 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
Mike Stump11289f42009-09-09 15:08:12 +00006706
Anders Carlssonb781bcd2009-05-01 19:49:17 +00006707 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump3bf1ab42009-07-28 22:04:01 +00006708 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006709 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
6710 BSI->hasBlockDeclRefExprs));
Steve Naroffc540d662008-09-03 18:15:37 +00006711}
6712
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006713Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
6714 ExprArg expr, TypeTy *type,
6715 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00006716 QualType T = GetTypeFromParser(type);
Chris Lattner56382aa2009-04-05 15:49:53 +00006717 Expr *E = static_cast<Expr*>(expr.get());
6718 Expr *OrigExpr = E;
Mike Stump11289f42009-09-09 15:08:12 +00006719
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006720 InitBuiltinVaListType();
Eli Friedman121ba0c2008-08-09 23:32:40 +00006721
6722 // Get the va_list type
6723 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedmane2cad652009-05-16 12:46:54 +00006724 if (VaListType->isArrayType()) {
6725 // Deal with implicit array decay; for example, on x86-64,
6726 // va_list is an array, but it's supposed to decay to
6727 // a pointer for va_arg.
Eli Friedman121ba0c2008-08-09 23:32:40 +00006728 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedmane2cad652009-05-16 12:46:54 +00006729 // Make sure the input expression also decays appropriately.
6730 UsualUnaryConversions(E);
6731 } else {
6732 // Otherwise, the va_list argument must be an l-value because
6733 // it is modified by va_arg.
Mike Stump11289f42009-09-09 15:08:12 +00006734 if (!E->isTypeDependent() &&
Douglas Gregorad3150c2009-05-19 23:10:31 +00006735 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedmane2cad652009-05-16 12:46:54 +00006736 return ExprError();
6737 }
Eli Friedman121ba0c2008-08-09 23:32:40 +00006738
Douglas Gregorad3150c2009-05-19 23:10:31 +00006739 if (!E->isTypeDependent() &&
6740 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006741 return ExprError(Diag(E->getLocStart(),
6742 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner56382aa2009-04-05 15:49:53 +00006743 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner3f5cd772009-04-05 00:59:53 +00006744 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006745
Eli Friedmanba961a92009-03-23 00:24:07 +00006746 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006747 // FIXME: Warn if a non-POD type is passed in.
Mike Stump4e1f26a2009-02-19 03:04:26 +00006748
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006749 expr.release();
6750 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
6751 RPLoc));
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006752}
6753
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006754Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor3be4b122008-11-29 04:51:27 +00006755 // The type of __null will be int or long, depending on the size of
6756 // pointers on the target.
6757 QualType Ty;
6758 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
6759 Ty = Context.IntTy;
6760 else
6761 Ty = Context.LongTy;
6762
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006763 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor3be4b122008-11-29 04:51:27 +00006764}
6765
Anders Carlssonace5d072009-11-10 04:46:30 +00006766static void
6767MakeObjCStringLiteralCodeModificationHint(Sema& SemaRef,
6768 QualType DstType,
6769 Expr *SrcExpr,
6770 CodeModificationHint &Hint) {
6771 if (!SemaRef.getLangOptions().ObjC1)
6772 return;
6773
6774 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
6775 if (!PT)
6776 return;
6777
6778 // Check if the destination is of type 'id'.
6779 if (!PT->isObjCIdType()) {
6780 // Check if the destination is the 'NSString' interface.
6781 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
6782 if (!ID || !ID->getIdentifier()->isStr("NSString"))
6783 return;
6784 }
6785
6786 // Strip off any parens and casts.
6787 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr->IgnoreParenCasts());
6788 if (!SL || SL->isWide())
6789 return;
6790
6791 Hint = CodeModificationHint::CreateInsertion(SL->getLocStart(), "@");
6792}
6793
Chris Lattner9bad62c2008-01-04 18:04:52 +00006794bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
6795 SourceLocation Loc,
6796 QualType DstType, QualType SrcType,
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00006797 Expr *SrcExpr, AssignmentAction Action) {
Chris Lattner9bad62c2008-01-04 18:04:52 +00006798 // Decode the result (notice that AST's are still created for extensions).
6799 bool isInvalid = false;
6800 unsigned DiagKind;
Anders Carlssonace5d072009-11-10 04:46:30 +00006801 CodeModificationHint Hint;
6802
Chris Lattner9bad62c2008-01-04 18:04:52 +00006803 switch (ConvTy) {
6804 default: assert(0 && "Unknown conversion type");
6805 case Compatible: return false;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006806 case PointerToInt:
Chris Lattner9bad62c2008-01-04 18:04:52 +00006807 DiagKind = diag::ext_typecheck_convert_pointer_int;
6808 break;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006809 case IntToPointer:
6810 DiagKind = diag::ext_typecheck_convert_int_pointer;
6811 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006812 case IncompatiblePointer:
Anders Carlssonace5d072009-11-10 04:46:30 +00006813 MakeObjCStringLiteralCodeModificationHint(*this, DstType, SrcExpr, Hint);
Chris Lattner9bad62c2008-01-04 18:04:52 +00006814 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
6815 break;
Eli Friedman80160bd2009-03-22 23:59:44 +00006816 case IncompatiblePointerSign:
6817 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
6818 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006819 case FunctionVoidPointer:
6820 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
6821 break;
6822 case CompatiblePointerDiscardsQualifiers:
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00006823 // If the qualifiers lost were because we were applying the
6824 // (deprecated) C++ conversion from a string literal to a char*
6825 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
6826 // Ideally, this check would be performed in
6827 // CheckPointerTypesForAssignment. However, that would require a
6828 // bit of refactoring (so that the second argument is an
6829 // expression, rather than a type), which should be done as part
6830 // of a larger effort to fix CheckPointerTypesForAssignment for
6831 // C++ semantics.
6832 if (getLangOptions().CPlusPlus &&
6833 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
6834 return false;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006835 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
6836 break;
Alexis Hunt6f3de502009-11-08 07:46:34 +00006837 case IncompatibleNestedPointerQualifiers:
Fariborz Jahanianb98dade2009-11-09 22:16:37 +00006838 DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00006839 break;
Steve Naroff081c7422008-09-04 15:10:53 +00006840 case IntToBlockPointer:
6841 DiagKind = diag::err_int_to_block_pointer;
6842 break;
6843 case IncompatibleBlockPointer:
Mike Stumpd79b5a82009-04-21 22:51:42 +00006844 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff081c7422008-09-04 15:10:53 +00006845 break;
Steve Naroff8afa9892008-10-14 22:18:38 +00006846 case IncompatibleObjCQualifiedId:
Mike Stump4e1f26a2009-02-19 03:04:26 +00006847 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff8afa9892008-10-14 22:18:38 +00006848 // it can give a more specific diagnostic.
6849 DiagKind = diag::warn_incompatible_qualified_id;
6850 break;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00006851 case IncompatibleVectors:
6852 DiagKind = diag::warn_incompatible_vectors;
6853 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006854 case Incompatible:
6855 DiagKind = diag::err_typecheck_convert_incompatible;
6856 isInvalid = true;
6857 break;
6858 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006859
Douglas Gregor7c3bbdf2009-12-16 03:45:30 +00006860 Diag(Loc, DiagKind) << DstType << SrcType << Action
Anders Carlssonace5d072009-11-10 04:46:30 +00006861 << SrcExpr->getSourceRange() << Hint;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006862 return isInvalid;
6863}
Anders Carlssone54e8a12008-11-30 19:50:32 +00006864
Chris Lattnerc71d08b2009-04-25 21:59:05 +00006865bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006866 llvm::APSInt ICEResult;
6867 if (E->isIntegerConstantExpr(ICEResult, Context)) {
6868 if (Result)
6869 *Result = ICEResult;
6870 return false;
6871 }
6872
Anders Carlssone54e8a12008-11-30 19:50:32 +00006873 Expr::EvalResult EvalResult;
6874
Mike Stump4e1f26a2009-02-19 03:04:26 +00006875 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone54e8a12008-11-30 19:50:32 +00006876 EvalResult.HasSideEffects) {
6877 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
6878
6879 if (EvalResult.Diag) {
6880 // We only show the note if it's not the usual "invalid subexpression"
6881 // or if it's actually in a subexpression.
6882 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
6883 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
6884 Diag(EvalResult.DiagLoc, EvalResult.Diag);
6885 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006886
Anders Carlssone54e8a12008-11-30 19:50:32 +00006887 return true;
6888 }
6889
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006890 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
6891 E->getSourceRange();
Anders Carlssone54e8a12008-11-30 19:50:32 +00006892
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006893 if (EvalResult.Diag &&
6894 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
6895 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006896
Anders Carlssone54e8a12008-11-30 19:50:32 +00006897 if (Result)
6898 *Result = EvalResult.Val.getInt();
6899 return false;
6900}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006901
Douglas Gregorff790f12009-11-26 00:44:06 +00006902void
Mike Stump11289f42009-09-09 15:08:12 +00006903Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregorff790f12009-11-26 00:44:06 +00006904 ExprEvalContexts.push_back(
6905 ExpressionEvaluationContextRecord(NewContext, ExprTemporaries.size()));
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006906}
6907
Mike Stump11289f42009-09-09 15:08:12 +00006908void
Douglas Gregorff790f12009-11-26 00:44:06 +00006909Sema::PopExpressionEvaluationContext() {
6910 // Pop the current expression evaluation context off the stack.
6911 ExpressionEvaluationContextRecord Rec = ExprEvalContexts.back();
6912 ExprEvalContexts.pop_back();
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006913
Douglas Gregorfab31f42009-12-12 07:57:52 +00006914 if (Rec.Context == PotentiallyPotentiallyEvaluated) {
6915 if (Rec.PotentiallyReferenced) {
6916 // Mark any remaining declarations in the current position of the stack
6917 // as "referenced". If they were not meant to be referenced, semantic
6918 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
6919 for (PotentiallyReferencedDecls::iterator
6920 I = Rec.PotentiallyReferenced->begin(),
6921 IEnd = Rec.PotentiallyReferenced->end();
6922 I != IEnd; ++I)
6923 MarkDeclarationReferenced(I->first, I->second);
6924 }
6925
6926 if (Rec.PotentiallyDiagnosed) {
6927 // Emit any pending diagnostics.
6928 for (PotentiallyEmittedDiagnostics::iterator
6929 I = Rec.PotentiallyDiagnosed->begin(),
6930 IEnd = Rec.PotentiallyDiagnosed->end();
6931 I != IEnd; ++I)
6932 Diag(I->first, I->second);
6933 }
Douglas Gregorff790f12009-11-26 00:44:06 +00006934 }
6935
6936 // When are coming out of an unevaluated context, clear out any
6937 // temporaries that we may have created as part of the evaluation of
6938 // the expression in that context: they aren't relevant because they
6939 // will never be constructed.
6940 if (Rec.Context == Unevaluated &&
6941 ExprTemporaries.size() > Rec.NumTemporaries)
6942 ExprTemporaries.erase(ExprTemporaries.begin() + Rec.NumTemporaries,
6943 ExprTemporaries.end());
6944
6945 // Destroy the popped expression evaluation record.
6946 Rec.Destroy();
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006947}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006948
6949/// \brief Note that the given declaration was referenced in the source code.
6950///
6951/// This routine should be invoke whenever a given declaration is referenced
6952/// in the source code, and where that reference occurred. If this declaration
6953/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
6954/// C99 6.9p3), then the declaration will be marked as used.
6955///
6956/// \param Loc the location where the declaration was referenced.
6957///
6958/// \param D the declaration that has been referenced by the source code.
6959void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
6960 assert(D && "No declaration?");
Mike Stump11289f42009-09-09 15:08:12 +00006961
Douglas Gregor77b50e12009-06-22 23:06:13 +00006962 if (D->isUsed())
6963 return;
Mike Stump11289f42009-09-09 15:08:12 +00006964
Douglas Gregor3beaf9b2009-10-08 21:35:42 +00006965 // Mark a parameter or variable declaration "used", regardless of whether we're in a
6966 // template or not. The reason for this is that unevaluated expressions
6967 // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and
6968 // -Wunused-parameters)
6969 if (isa<ParmVarDecl>(D) ||
6970 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod()))
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006971 D->setUsed(true);
Mike Stump11289f42009-09-09 15:08:12 +00006972
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006973 // Do not mark anything as "used" within a dependent context; wait for
6974 // an instantiation.
6975 if (CurContext->isDependentContext())
6976 return;
Mike Stump11289f42009-09-09 15:08:12 +00006977
Douglas Gregorff790f12009-11-26 00:44:06 +00006978 switch (ExprEvalContexts.back().Context) {
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006979 case Unevaluated:
6980 // We are in an expression that is not potentially evaluated; do nothing.
6981 return;
Mike Stump11289f42009-09-09 15:08:12 +00006982
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006983 case PotentiallyEvaluated:
6984 // We are in a potentially-evaluated expression, so this declaration is
6985 // "used"; handle this below.
6986 break;
Mike Stump11289f42009-09-09 15:08:12 +00006987
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006988 case PotentiallyPotentiallyEvaluated:
6989 // We are in an expression that may be potentially evaluated; queue this
6990 // declaration reference until we know whether the expression is
6991 // potentially evaluated.
Douglas Gregorff790f12009-11-26 00:44:06 +00006992 ExprEvalContexts.back().addReferencedDecl(Loc, D);
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006993 return;
6994 }
Mike Stump11289f42009-09-09 15:08:12 +00006995
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006996 // Note that this declaration has been used.
Fariborz Jahanian3a363432009-06-22 17:30:33 +00006997 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00006998 unsigned TypeQuals;
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00006999 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
7000 if (!Constructor->isUsed())
7001 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump11289f42009-09-09 15:08:12 +00007002 } else if (Constructor->isImplicit() &&
Mike Stump12b8ce12009-08-04 21:02:39 +00007003 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00007004 if (!Constructor->isUsed())
7005 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
7006 }
Anders Carlsson82fccd02009-12-07 08:24:59 +00007007
7008 MaybeMarkVirtualMembersReferenced(Loc, Constructor);
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00007009 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
7010 if (Destructor->isImplicit() && !Destructor->isUsed())
7011 DefineImplicitDestructor(Loc, Destructor);
Mike Stump11289f42009-09-09 15:08:12 +00007012
Fariborz Jahanian41f79272009-06-25 21:45:19 +00007013 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
7014 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
7015 MethodDecl->getOverloadedOperator() == OO_Equal) {
7016 if (!MethodDecl->isUsed())
7017 DefineImplicitOverloadedAssign(Loc, MethodDecl);
7018 }
7019 }
Fariborz Jahanian49796cc72009-06-24 22:09:44 +00007020 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00007021 // Implicit instantiation of function templates and member functions of
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00007022 // class templates.
Douglas Gregorafca3b42009-10-27 20:53:28 +00007023 if (!Function->getBody() && Function->isImplicitlyInstantiable()) {
Douglas Gregor06db9f52009-10-12 20:18:28 +00007024 bool AlreadyInstantiated = false;
7025 if (FunctionTemplateSpecializationInfo *SpecInfo
7026 = Function->getTemplateSpecializationInfo()) {
7027 if (SpecInfo->getPointOfInstantiation().isInvalid())
7028 SpecInfo->setPointOfInstantiation(Loc);
Douglas Gregorafca3b42009-10-27 20:53:28 +00007029 else if (SpecInfo->getTemplateSpecializationKind()
7030 == TSK_ImplicitInstantiation)
Douglas Gregor06db9f52009-10-12 20:18:28 +00007031 AlreadyInstantiated = true;
7032 } else if (MemberSpecializationInfo *MSInfo
7033 = Function->getMemberSpecializationInfo()) {
7034 if (MSInfo->getPointOfInstantiation().isInvalid())
7035 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregorafca3b42009-10-27 20:53:28 +00007036 else if (MSInfo->getTemplateSpecializationKind()
7037 == TSK_ImplicitInstantiation)
Douglas Gregor06db9f52009-10-12 20:18:28 +00007038 AlreadyInstantiated = true;
7039 }
7040
7041 if (!AlreadyInstantiated)
7042 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
7043 }
7044
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007045 // FIXME: keep track of references to static functions
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007046 Function->setUsed(true);
7047 return;
Douglas Gregor77b50e12009-06-22 23:06:13 +00007048 }
Mike Stump11289f42009-09-09 15:08:12 +00007049
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007050 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00007051 // Implicit instantiation of static data members of class templates.
Mike Stump11289f42009-09-09 15:08:12 +00007052 if (Var->isStaticDataMember() &&
Douglas Gregor06db9f52009-10-12 20:18:28 +00007053 Var->getInstantiatedFromStaticDataMember()) {
7054 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
7055 assert(MSInfo && "Missing member specialization information?");
7056 if (MSInfo->getPointOfInstantiation().isInvalid() &&
7057 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) {
7058 MSInfo->setPointOfInstantiation(Loc);
7059 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
7060 }
7061 }
Mike Stump11289f42009-09-09 15:08:12 +00007062
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007063 // FIXME: keep track of references to static data?
Douglas Gregora6ef8f02009-07-24 20:34:43 +00007064
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007065 D->setUsed(true);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00007066 return;
Sam Weinigbae69142009-09-11 03:29:30 +00007067 }
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00007068}
Anders Carlsson7f84ed92009-10-09 23:51:55 +00007069
7070bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
7071 CallExpr *CE, FunctionDecl *FD) {
7072 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
7073 return false;
7074
7075 PartialDiagnostic Note =
7076 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
7077 << FD->getDeclName() : PDiag();
7078 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
7079
7080 if (RequireCompleteType(Loc, ReturnType,
7081 FD ?
7082 PDiag(diag::err_call_function_incomplete_return)
7083 << CE->getSourceRange() << FD->getDeclName() :
7084 PDiag(diag::err_call_incomplete_return)
7085 << CE->getSourceRange(),
7086 std::make_pair(NoteLoc, Note)))
7087 return true;
7088
7089 return false;
7090}
7091
John McCalld5707ab2009-10-12 21:59:07 +00007092// Diagnose the common s/=/==/ typo. Note that adding parentheses
7093// will prevent this condition from triggering, which is what we want.
7094void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
7095 SourceLocation Loc;
7096
John McCall0506e4a2009-11-11 02:41:58 +00007097 unsigned diagnostic = diag::warn_condition_is_assignment;
7098
John McCalld5707ab2009-10-12 21:59:07 +00007099 if (isa<BinaryOperator>(E)) {
7100 BinaryOperator *Op = cast<BinaryOperator>(E);
7101 if (Op->getOpcode() != BinaryOperator::Assign)
7102 return;
7103
John McCallb0e419e2009-11-12 00:06:05 +00007104 // Greylist some idioms by putting them into a warning subcategory.
7105 if (ObjCMessageExpr *ME
7106 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
7107 Selector Sel = ME->getSelector();
7108
John McCallb0e419e2009-11-12 00:06:05 +00007109 // self = [<foo> init...]
7110 if (isSelfExpr(Op->getLHS())
7111 && Sel.getIdentifierInfoForSlot(0)->getName().startswith("init"))
7112 diagnostic = diag::warn_condition_is_idiomatic_assignment;
7113
7114 // <foo> = [<bar> nextObject]
7115 else if (Sel.isUnarySelector() &&
7116 Sel.getIdentifierInfoForSlot(0)->getName() == "nextObject")
7117 diagnostic = diag::warn_condition_is_idiomatic_assignment;
7118 }
John McCall0506e4a2009-11-11 02:41:58 +00007119
John McCalld5707ab2009-10-12 21:59:07 +00007120 Loc = Op->getOperatorLoc();
7121 } else if (isa<CXXOperatorCallExpr>(E)) {
7122 CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E);
7123 if (Op->getOperator() != OO_Equal)
7124 return;
7125
7126 Loc = Op->getOperatorLoc();
7127 } else {
7128 // Not an assignment.
7129 return;
7130 }
7131
John McCalld5707ab2009-10-12 21:59:07 +00007132 SourceLocation Open = E->getSourceRange().getBegin();
John McCalle724ae92009-10-12 22:25:59 +00007133 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
John McCalld5707ab2009-10-12 21:59:07 +00007134
John McCall0506e4a2009-11-11 02:41:58 +00007135 Diag(Loc, diagnostic)
John McCalld5707ab2009-10-12 21:59:07 +00007136 << E->getSourceRange()
7137 << CodeModificationHint::CreateInsertion(Open, "(")
7138 << CodeModificationHint::CreateInsertion(Close, ")");
7139}
7140
7141bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) {
7142 DiagnoseAssignmentAsCondition(E);
7143
7144 if (!E->isTypeDependent()) {
7145 DefaultFunctionArrayConversion(E);
7146
7147 QualType T = E->getType();
7148
7149 if (getLangOptions().CPlusPlus) {
7150 if (CheckCXXBooleanCondition(E)) // C++ 6.4p4
7151 return true;
7152 } else if (!T->isScalarType()) { // C99 6.8.4.1p1
7153 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
7154 << T << E->getSourceRange();
7155 return true;
7156 }
7157 }
7158
7159 return false;
7160}