blob: aa286106b9098736425421e5c5887b43a4069541 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
15#include "clang/AST/ASTContext.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattner04421082008-04-08 04:40:51 +000018#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000019#include "clang/AST/ExprObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000020#include "clang/Basic/PartialDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000021#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000022#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000023#include "clang/Lex/LiteralSupport.h"
24#include "clang/Lex/Preprocessor.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000025#include "clang/Parse/DeclSpec.h"
Chris Lattner418f6c72008-10-26 23:43:26 +000026#include "clang/Parse/Designator.h"
Steve Naroff4eb206b2008-09-03 18:15:37 +000027#include "clang/Parse/Scope.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000028using namespace clang;
29
David Chisnall0f436562009-08-17 16:35:33 +000030
Douglas Gregor48f3bb92009-02-18 21:56:37 +000031/// \brief Determine whether the use of this declaration is valid, and
32/// emit any corresponding diagnostics.
33///
34/// This routine diagnoses various problems with referencing
35/// declarations that can occur when using a declaration. For example,
36/// it might warn if a deprecated or unavailable declaration is being
37/// used, or produce an error (and return true) if a C++0x deleted
38/// function is being used.
39///
Chris Lattner52338262009-10-25 22:31:57 +000040/// If IgnoreDeprecated is set to true, this should not want about deprecated
41/// decls.
42///
Douglas Gregor48f3bb92009-02-18 21:56:37 +000043/// \returns true if there was an error (this declaration cannot be
44/// referenced), false otherwise.
Chris Lattner52338262009-10-25 22:31:57 +000045///
46bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
47 bool IgnoreDeprecated) {
Chris Lattner76a642f2009-02-15 22:43:40 +000048 // See if the decl is deprecated.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000049 if (D->getAttr<DeprecatedAttr>()) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000050 // Implementing deprecated stuff requires referencing deprecated
Chris Lattner52338262009-10-25 22:31:57 +000051 // stuff. Don't warn if we are implementing a deprecated construct.
52 bool isSilenced = IgnoreDeprecated;
Mike Stump1eb44332009-09-09 15:08:12 +000053
Chris Lattnerf15970c2009-02-16 19:35:30 +000054 if (NamedDecl *ND = getCurFunctionOrMethodDecl()) {
55 // If this reference happens *in* a deprecated function or method, don't
56 // warn.
Chris Lattner52338262009-10-25 22:31:57 +000057 isSilenced |= ND->getAttr<DeprecatedAttr>() != 0;
Mike Stump1eb44332009-09-09 15:08:12 +000058
Chris Lattnerf15970c2009-02-16 19:35:30 +000059 // If this is an Objective-C method implementation, check to see if the
60 // method was deprecated on the declaration, not the definition.
61 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(ND)) {
62 // The semantic decl context of a ObjCMethodDecl is the
63 // ObjCImplementationDecl.
64 if (ObjCImplementationDecl *Impl
65 = dyn_cast<ObjCImplementationDecl>(MD->getParent())) {
Mike Stump1eb44332009-09-09 15:08:12 +000066
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +000067 MD = Impl->getClassInterface()->getMethod(MD->getSelector(),
Chris Lattnerf15970c2009-02-16 19:35:30 +000068 MD->isInstanceMethod());
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +000069 isSilenced |= MD && MD->getAttr<DeprecatedAttr>();
Chris Lattnerf15970c2009-02-16 19:35:30 +000070 }
71 }
72 }
Mike Stump1eb44332009-09-09 15:08:12 +000073
Chris Lattnerf15970c2009-02-16 19:35:30 +000074 if (!isSilenced)
Chris Lattner76a642f2009-02-15 22:43:40 +000075 Diag(Loc, diag::warn_deprecated) << D->getDeclName();
76 }
77
Chris Lattnerffb93682009-10-25 17:21:40 +000078 // See if the decl is unavailable
79 if (D->getAttr<UnavailableAttr>()) {
80 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
81 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
82 }
83
Douglas Gregor48f3bb92009-02-18 21:56:37 +000084 // See if this is a deleted function.
Douglas Gregor25d944a2009-02-24 04:26:15 +000085 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000086 if (FD->isDeleted()) {
87 Diag(Loc, diag::err_deleted_function_use);
88 Diag(D->getLocation(), diag::note_unavailable_here) << true;
89 return true;
90 }
Douglas Gregor25d944a2009-02-24 04:26:15 +000091 }
Douglas Gregor48f3bb92009-02-18 21:56:37 +000092
Douglas Gregor48f3bb92009-02-18 21:56:37 +000093 return false;
Chris Lattner76a642f2009-02-15 22:43:40 +000094}
95
Fariborz Jahanian5b530052009-05-13 18:09:35 +000096/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump1eb44332009-09-09 15:08:12 +000097/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian5b530052009-05-13 18:09:35 +000098/// attribute. It warns if call does not have the sentinel argument.
99///
100void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000101 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000102 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump1eb44332009-09-09 15:08:12 +0000103 if (!attr)
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000104 return;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000105 int sentinelPos = attr->getSentinel();
106 int nullPos = attr->getNullPos();
Mike Stump1eb44332009-09-09 15:08:12 +0000107
Mike Stump390b4cc2009-05-16 07:39:55 +0000108 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
109 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000110 unsigned int i = 0;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000111 bool warnNotEnoughArgs = false;
112 int isMethod = 0;
113 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
114 // skip over named parameters.
115 ObjCMethodDecl::param_iterator P, E = MD->param_end();
116 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
117 if (nullPos)
118 --nullPos;
119 else
120 ++i;
121 }
122 warnNotEnoughArgs = (P != E || i >= NumArgs);
123 isMethod = 1;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000124 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000125 // skip over named parameters.
126 ObjCMethodDecl::param_iterator P, E = FD->param_end();
127 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
128 if (nullPos)
129 --nullPos;
130 else
131 ++i;
132 }
133 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000134 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000135 // block or function pointer call.
136 QualType Ty = V->getType();
137 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000138 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall183700f2009-09-21 23:43:11 +0000139 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
140 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000141 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
142 unsigned NumArgsInProto = Proto->getNumArgs();
143 unsigned k;
144 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
145 if (nullPos)
146 --nullPos;
147 else
148 ++i;
149 }
150 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
151 }
152 if (Ty->isBlockPointerType())
153 isMethod = 2;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000154 } else
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000155 return;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000156 } else
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000157 return;
158
159 if (warnNotEnoughArgs) {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000160 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000161 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000162 return;
163 }
164 int sentinel = i;
165 while (sentinelPos > 0 && i < NumArgs-1) {
166 --sentinelPos;
167 ++i;
168 }
169 if (sentinelPos > 0) {
170 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000171 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000172 return;
173 }
174 while (i < NumArgs-1) {
175 ++i;
176 ++sentinel;
177 }
178 Expr *sentinelExpr = Args[sentinel];
179 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
Douglas Gregorce940492009-09-25 04:25:58 +0000180 !sentinelExpr->isNullPointerConstant(Context,
181 Expr::NPC_ValueDependentIsNull))) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000182 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000183 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000184 }
185 return;
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000186}
187
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000188SourceRange Sema::getExprRange(ExprTy *E) const {
189 Expr *Ex = (Expr *)E;
190 return Ex? Ex->getSourceRange() : SourceRange();
191}
192
Chris Lattnere7a2e912008-07-25 21:10:04 +0000193//===----------------------------------------------------------------------===//
194// Standard Promotions and Conversions
195//===----------------------------------------------------------------------===//
196
Chris Lattnere7a2e912008-07-25 21:10:04 +0000197/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
198void Sema::DefaultFunctionArrayConversion(Expr *&E) {
199 QualType Ty = E->getType();
200 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
201
Chris Lattnere7a2e912008-07-25 21:10:04 +0000202 if (Ty->isFunctionType())
Mike Stump1eb44332009-09-09 15:08:12 +0000203 ImpCastExprToType(E, Context.getPointerType(Ty),
Anders Carlssonb633c4e2009-09-01 20:37:18 +0000204 CastExpr::CK_FunctionToPointerDecay);
Chris Lattner67d33d82008-07-25 21:33:13 +0000205 else if (Ty->isArrayType()) {
206 // In C90 mode, arrays only promote to pointers if the array expression is
207 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
208 // type 'array of type' is converted to an expression that has type 'pointer
209 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
210 // that has type 'array of type' ...". The relevant change is "an lvalue"
211 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +0000212 //
213 // C++ 4.2p1:
214 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
215 // T" can be converted to an rvalue of type "pointer to T".
216 //
217 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
218 E->isLvalue(Context) == Expr::LV_Valid)
Anders Carlsson112a0a82009-08-07 23:48:20 +0000219 ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
220 CastExpr::CK_ArrayToPointerDecay);
Chris Lattner67d33d82008-07-25 21:33:13 +0000221 }
Chris Lattnere7a2e912008-07-25 21:10:04 +0000222}
223
224/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump1eb44332009-09-09 15:08:12 +0000225/// operators (C99 6.3). The conversions of array and function types are
Chris Lattnere7a2e912008-07-25 21:10:04 +0000226/// sometimes surpressed. For example, the array->pointer conversion doesn't
227/// apply if the array is an argument to the sizeof or address (&) operators.
228/// In these instances, this routine should *not* be called.
229Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
230 QualType Ty = Expr->getType();
231 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000232
Douglas Gregorfc24e442009-05-01 20:41:21 +0000233 // C99 6.3.1.1p2:
234 //
235 // The following may be used in an expression wherever an int or
236 // unsigned int may be used:
237 // - an object or expression with an integer type whose integer
238 // conversion rank is less than or equal to the rank of int
239 // and unsigned int.
240 // - A bit-field of type _Bool, int, signed int, or unsigned int.
241 //
242 // If an int can represent all values of the original type, the
243 // value is converted to an int; otherwise, it is converted to an
244 // unsigned int. These are called the integer promotions. All
245 // other types are unchanged by the integer promotions.
Eli Friedman04e83572009-08-20 04:21:42 +0000246 QualType PTy = Context.isPromotableBitField(Expr);
247 if (!PTy.isNull()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +0000248 ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast);
Eli Friedman04e83572009-08-20 04:21:42 +0000249 return Expr;
250 }
Douglas Gregorfc24e442009-05-01 20:41:21 +0000251 if (Ty->isPromotableIntegerType()) {
Eli Friedmana95d7572009-08-19 07:44:53 +0000252 QualType PT = Context.getPromotedIntegerType(Ty);
Eli Friedman73c39ab2009-10-20 08:27:19 +0000253 ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast);
Douglas Gregorfc24e442009-05-01 20:41:21 +0000254 return Expr;
Eli Friedman04e83572009-08-20 04:21:42 +0000255 }
256
Douglas Gregorfc24e442009-05-01 20:41:21 +0000257 DefaultFunctionArrayConversion(Expr);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000258 return Expr;
259}
260
Chris Lattner05faf172008-07-25 22:25:12 +0000261/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump1eb44332009-09-09 15:08:12 +0000262/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner05faf172008-07-25 22:25:12 +0000263/// double. All other argument types are converted by UsualUnaryConversions().
264void Sema::DefaultArgumentPromotion(Expr *&Expr) {
265 QualType Ty = Expr->getType();
266 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000267
Chris Lattner05faf172008-07-25 22:25:12 +0000268 // If this is a 'float' (CVR qualified or typedef) promote to double.
John McCall183700f2009-09-21 23:43:11 +0000269 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
Chris Lattner05faf172008-07-25 22:25:12 +0000270 if (BT->getKind() == BuiltinType::Float)
Eli Friedman73c39ab2009-10-20 08:27:19 +0000271 return ImpCastExprToType(Expr, Context.DoubleTy,
272 CastExpr::CK_FloatingCast);
Mike Stump1eb44332009-09-09 15:08:12 +0000273
Chris Lattner05faf172008-07-25 22:25:12 +0000274 UsualUnaryConversions(Expr);
275}
276
Chris Lattner312531a2009-04-12 08:11:20 +0000277/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
278/// will warn if the resulting type is not a POD type, and rejects ObjC
279/// interfaces passed by value. This returns true if the argument type is
280/// completely illegal.
281bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000282 DefaultArgumentPromotion(Expr);
Mike Stump1eb44332009-09-09 15:08:12 +0000283
Chris Lattner312531a2009-04-12 08:11:20 +0000284 if (Expr->getType()->isObjCInterfaceType()) {
285 Diag(Expr->getLocStart(),
286 diag::err_cannot_pass_objc_interface_to_vararg)
287 << Expr->getType() << CT;
288 return true;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000289 }
Mike Stump1eb44332009-09-09 15:08:12 +0000290
Chris Lattner312531a2009-04-12 08:11:20 +0000291 if (!Expr->getType()->isPODType())
292 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
293 << Expr->getType() << CT;
294
295 return false;
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000296}
297
298
Chris Lattnere7a2e912008-07-25 21:10:04 +0000299/// UsualArithmeticConversions - Performs various conversions that are common to
300/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump1eb44332009-09-09 15:08:12 +0000301/// routine returns the first non-arithmetic type found. The client is
Chris Lattnere7a2e912008-07-25 21:10:04 +0000302/// responsible for emitting appropriate error diagnostics.
303/// FIXME: verify the conversion rules for "complex int" are consistent with
304/// GCC.
305QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
306 bool isCompAssign) {
Eli Friedmanab3a8522009-03-28 01:22:36 +0000307 if (!isCompAssign)
Chris Lattnere7a2e912008-07-25 21:10:04 +0000308 UsualUnaryConversions(lhsExpr);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000309
310 UsualUnaryConversions(rhsExpr);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000311
Mike Stump1eb44332009-09-09 15:08:12 +0000312 // For conversion purposes, we ignore any qualifiers.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000313 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000314 QualType lhs =
315 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +0000316 QualType rhs =
Chris Lattnerb77792e2008-07-26 22:17:49 +0000317 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000318
319 // If both types are identical, no conversion is needed.
320 if (lhs == rhs)
321 return lhs;
322
323 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
324 // The caller can deal with this (e.g. pointer + int).
325 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
326 return lhs;
327
Douglas Gregor2d833e32009-05-02 00:36:19 +0000328 // Perform bitfield promotions.
Eli Friedman04e83572009-08-20 04:21:42 +0000329 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000330 if (!LHSBitfieldPromoteTy.isNull())
331 lhs = LHSBitfieldPromoteTy;
Eli Friedman04e83572009-08-20 04:21:42 +0000332 QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000333 if (!RHSBitfieldPromoteTy.isNull())
334 rhs = RHSBitfieldPromoteTy;
335
Eli Friedmana95d7572009-08-19 07:44:53 +0000336 QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs);
Eli Friedmanab3a8522009-03-28 01:22:36 +0000337 if (!isCompAssign)
Eli Friedman73c39ab2009-10-20 08:27:19 +0000338 ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown);
339 ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown);
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000340 return destType;
341}
342
Chris Lattnere7a2e912008-07-25 21:10:04 +0000343//===----------------------------------------------------------------------===//
344// Semantic Analysis for various Expression Types
345//===----------------------------------------------------------------------===//
346
347
Steve Narofff69936d2007-09-16 03:34:24 +0000348/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +0000349/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
350/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
351/// multiple tokens. However, the common case is that StringToks points to one
352/// string.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000353///
354Action::OwningExprResult
Steve Narofff69936d2007-09-16 03:34:24 +0000355Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000356 assert(NumStringToks && "Must have at least one string!");
357
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000358 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000359 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000360 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000361
362 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
363 for (unsigned i = 0; i != NumStringToks; ++i)
364 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000365
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000366 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidis55f4b022008-08-09 17:20:01 +0000367 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000368 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +0000369
370 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
371 if (getLangOptions().CPlusPlus)
372 StrTy.addConst();
Sebastian Redlcd965b92009-01-18 18:53:16 +0000373
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000374 // Get an array type for the string, according to C99 6.4.5. This includes
375 // the nul terminator character as well as the string length for pascal
376 // strings.
377 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000378 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000379 ArrayType::Normal, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000380
Reid Spencer5f016e22007-07-11 17:01:13 +0000381 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Mike Stump1eb44332009-09-09 15:08:12 +0000382 return Owned(StringLiteral::Create(Context, Literal.GetString(),
Chris Lattner2085fd62009-02-18 06:40:38 +0000383 Literal.GetStringLength(),
384 Literal.AnyWide, StrTy,
385 &StringTokLocs[0],
386 StringTokLocs.size()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000387}
388
Chris Lattner639e2d32008-10-20 05:16:36 +0000389/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
390/// CurBlock to VD should cause it to be snapshotted (as we do for auto
391/// variables defined outside the block) or false if this is not needed (e.g.
392/// for values inside the block or for globals).
393///
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000394/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
395/// up-to-date.
396///
Chris Lattner639e2d32008-10-20 05:16:36 +0000397static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
398 ValueDecl *VD) {
399 // If the value is defined inside the block, we couldn't snapshot it even if
400 // we wanted to.
401 if (CurBlock->TheDecl == VD->getDeclContext())
402 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000403
Chris Lattner639e2d32008-10-20 05:16:36 +0000404 // If this is an enum constant or function, it is constant, don't snapshot.
405 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
406 return false;
407
408 // If this is a reference to an extern, static, or global variable, no need to
409 // snapshot it.
410 // FIXME: What about 'const' variables in C++?
411 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000412 if (!Var->hasLocalStorage())
413 return false;
Mike Stump1eb44332009-09-09 15:08:12 +0000414
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000415 // Blocks that have these can't be constant.
416 CurBlock->hasBlockDeclRefExprs = true;
417
418 // If we have nested blocks, the decl may be declared in an outer block (in
419 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
420 // be defined outside all of the current blocks (in which case the blocks do
421 // all get the bit). Walk the nesting chain.
422 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
423 NextBlock = NextBlock->PrevBlockInfo) {
424 // If we found the defining block for the variable, don't mark the block as
425 // having a reference outside it.
426 if (NextBlock->TheDecl == VD->getDeclContext())
427 break;
Mike Stump1eb44332009-09-09 15:08:12 +0000428
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000429 // Otherwise, the DeclRef from the inner block causes the outer one to need
430 // a snapshot as well.
431 NextBlock->hasBlockDeclRefExprs = true;
432 }
Mike Stump1eb44332009-09-09 15:08:12 +0000433
Chris Lattner639e2d32008-10-20 05:16:36 +0000434 return true;
Mike Stump1eb44332009-09-09 15:08:12 +0000435}
436
Chris Lattner639e2d32008-10-20 05:16:36 +0000437
438
Steve Naroff08d92e42007-09-15 18:49:24 +0000439/// ActOnIdentifierExpr - The parser read an identifier in expression context,
Reid Spencer5f016e22007-07-11 17:01:13 +0000440/// validate it per-C99 6.5.1. HasTrailingLParen indicates whether this
Steve Naroff0d755ad2008-03-19 23:46:26 +0000441/// identifier is used in a function call context.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000442/// SS is only used for a C++ qualified-id (foo::bar) to indicate the
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000443/// class or namespace that the identifier must be a member of.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000444Sema::OwningExprResult Sema::ActOnIdentifierExpr(Scope *S, SourceLocation Loc,
445 IdentifierInfo &II,
446 bool HasTrailingLParen,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000447 const CXXScopeSpec *SS,
448 bool isAddressOfOperand) {
449 return ActOnDeclarationNameExpr(S, Loc, &II, HasTrailingLParen, SS,
Douglas Gregor17330012009-02-04 15:01:18 +0000450 isAddressOfOperand);
Douglas Gregor10c42622008-11-18 15:03:34 +0000451}
452
Douglas Gregora2813ce2009-10-23 18:54:35 +0000453/// BuildDeclRefExpr - Build a DeclRefExpr.
Anders Carlssone41590d2009-06-24 00:10:43 +0000454Sema::OwningExprResult
Sebastian Redlebc07d52009-02-03 20:19:35 +0000455Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
456 bool TypeDependent, bool ValueDependent,
457 const CXXScopeSpec *SS) {
Anders Carlssone2bb2242009-06-26 19:16:07 +0000458 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
459 Diag(Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000460 diag::err_auto_variable_cannot_appear_in_own_initializer)
Anders Carlssone2bb2242009-06-26 19:16:07 +0000461 << D->getDeclName();
462 return ExprError();
463 }
Mike Stump1eb44332009-09-09 15:08:12 +0000464
Anders Carlssone41590d2009-06-24 00:10:43 +0000465 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
466 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
467 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
468 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
Mike Stump1eb44332009-09-09 15:08:12 +0000469 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
Anders Carlssone41590d2009-06-24 00:10:43 +0000470 << D->getIdentifier() << FD->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +0000471 Diag(D->getLocation(), diag::note_local_variable_declared_here)
Anders Carlssone41590d2009-06-24 00:10:43 +0000472 << D->getIdentifier();
473 return ExprError();
474 }
475 }
476 }
477 }
Mike Stump1eb44332009-09-09 15:08:12 +0000478
Douglas Gregore0762c92009-06-19 23:52:42 +0000479 MarkDeclarationReferenced(Loc, D);
Mike Stump1eb44332009-09-09 15:08:12 +0000480
Douglas Gregora2813ce2009-10-23 18:54:35 +0000481 return Owned(DeclRefExpr::Create(Context,
482 SS? (NestedNameSpecifier *)SS->getScopeRep() : 0,
483 SS? SS->getRange() : SourceRange(),
484 D, Loc,
485 Ty, TypeDependent, ValueDependent));
Douglas Gregor1a49af92009-01-06 05:10:23 +0000486}
487
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000488/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
489/// variable corresponding to the anonymous union or struct whose type
490/// is Record.
Douglas Gregor6ab35242009-04-09 21:40:53 +0000491static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
492 RecordDecl *Record) {
Mike Stump1eb44332009-09-09 15:08:12 +0000493 assert(Record->isAnonymousStructOrUnion() &&
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000494 "Record must be an anonymous struct or union!");
Mike Stump1eb44332009-09-09 15:08:12 +0000495
Mike Stump390b4cc2009-05-16 07:39:55 +0000496 // FIXME: Once Decls are directly linked together, this will be an O(1)
497 // operation rather than a slow walk through DeclContext's vector (which
498 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000499 DeclContext *Ctx = Record->getDeclContext();
Mike Stump1eb44332009-09-09 15:08:12 +0000500 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000501 DEnd = Ctx->decls_end();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000502 D != DEnd; ++D) {
503 if (*D == Record) {
504 // The object for the anonymous struct/union directly
505 // follows its type in the list of declarations.
506 ++D;
507 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000508 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000509 return *D;
510 }
511 }
512
513 assert(false && "Missing object for anonymous record");
514 return 0;
515}
516
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000517/// \brief Given a field that represents a member of an anonymous
518/// struct/union, build the path from that field's context to the
519/// actual member.
520///
521/// Construct the sequence of field member references we'll have to
522/// perform to get to the field in the anonymous union/struct. The
523/// list of members is built from the field outward, so traverse it
524/// backwards to go from an object in the current context to the field
525/// we found.
526///
527/// \returns The variable from which the field access should begin,
528/// for an anonymous struct/union that is not a member of another
529/// class. Otherwise, returns NULL.
530VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
531 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000532 assert(Field->getDeclContext()->isRecord() &&
533 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
534 && "Field must be stored inside an anonymous struct or union");
535
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000536 Path.push_back(Field);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000537 VarDecl *BaseObject = 0;
538 DeclContext *Ctx = Field->getDeclContext();
539 do {
540 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregor6ab35242009-04-09 21:40:53 +0000541 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000542 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000543 Path.push_back(AnonField);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000544 else {
545 BaseObject = cast<VarDecl>(AnonObject);
546 break;
547 }
548 Ctx = Ctx->getParent();
Mike Stump1eb44332009-09-09 15:08:12 +0000549 } while (Ctx->isRecord() &&
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000550 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000551
552 return BaseObject;
553}
554
555Sema::OwningExprResult
556Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
557 FieldDecl *Field,
558 Expr *BaseObjectExpr,
559 SourceLocation OpLoc) {
560 llvm::SmallVector<FieldDecl *, 4> AnonFields;
Mike Stump1eb44332009-09-09 15:08:12 +0000561 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
Douglas Gregorffb4b6e2009-04-15 06:41:24 +0000562 AnonFields);
563
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000564 // Build the expression that refers to the base object, from
565 // which we will build a sequence of member references to each
566 // of the anonymous union objects and, eventually, the field we
567 // found via name lookup.
568 bool BaseObjectIsPointer = false;
John McCall0953e762009-09-24 19:53:00 +0000569 Qualifiers BaseQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000570 if (BaseObject) {
571 // BaseObject is an anonymous struct/union variable (and is,
572 // therefore, not part of another non-anonymous record).
Ted Kremenek8189cde2009-02-07 01:47:29 +0000573 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregore0762c92009-06-19 23:52:42 +0000574 MarkDeclarationReferenced(Loc, BaseObject);
Steve Naroff6ece14c2009-01-21 00:14:39 +0000575 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000576 SourceLocation());
John McCall0953e762009-09-24 19:53:00 +0000577 BaseQuals
578 = Context.getCanonicalType(BaseObject->getType()).getQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000579 } else if (BaseObjectExpr) {
580 // The caller provided the base object expression. Determine
581 // whether its a pointer and whether it adds any qualifiers to the
582 // anonymous struct/union fields we're looking into.
583 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +0000584 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000585 BaseObjectIsPointer = true;
586 ObjectType = ObjectPtr->getPointeeType();
587 }
John McCall0953e762009-09-24 19:53:00 +0000588 BaseQuals
589 = Context.getCanonicalType(ObjectType).getQualifiers();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000590 } else {
591 // We've found a member of an anonymous struct/union that is
592 // inside a non-anonymous struct/union, so in a well-formed
593 // program our base object expression is "this".
594 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
595 if (!MD->isStatic()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000596 QualType AnonFieldType
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000597 = Context.getTagDeclType(
598 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
599 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump1eb44332009-09-09 15:08:12 +0000600 if ((Context.getCanonicalType(AnonFieldType)
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000601 == Context.getCanonicalType(ThisType)) ||
602 IsDerivedFrom(ThisType, AnonFieldType)) {
603 // Our base object expression is "this".
Steve Naroff6ece14c2009-01-21 00:14:39 +0000604 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stumpeed9cac2009-02-19 03:04:26 +0000605 MD->getThisType(Context));
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000606 BaseObjectIsPointer = true;
607 }
608 } else {
Sebastian Redlcd965b92009-01-18 18:53:16 +0000609 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
610 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000611 }
John McCall0953e762009-09-24 19:53:00 +0000612 BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000613 }
614
Mike Stump1eb44332009-09-09 15:08:12 +0000615 if (!BaseObjectExpr)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000616 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
617 << Field->getDeclName());
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000618 }
619
620 // Build the implicit member references to the field of the
621 // anonymous struct/union.
622 Expr *Result = BaseObjectExpr;
John McCall0953e762009-09-24 19:53:00 +0000623 Qualifiers ResultQuals = BaseQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000624 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
625 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
626 FI != FIEnd; ++FI) {
627 QualType MemberType = (*FI)->getType();
John McCall0953e762009-09-24 19:53:00 +0000628 Qualifiers MemberTypeQuals =
629 Context.getCanonicalType(MemberType).getQualifiers();
630
631 // CVR attributes from the base are picked up by members,
632 // except that 'mutable' members don't pick up 'const'.
633 if ((*FI)->isMutable())
634 ResultQuals.removeConst();
635
636 // GC attributes are never picked up by members.
637 ResultQuals.removeObjCGCAttr();
638
639 // TR 18037 does not allow fields to be declared with address spaces.
640 assert(!MemberTypeQuals.hasAddressSpace());
641
642 Qualifiers NewQuals = ResultQuals + MemberTypeQuals;
643 if (NewQuals != MemberTypeQuals)
644 MemberType = Context.getQualifiedType(MemberType, NewQuals);
645
Douglas Gregore0762c92009-06-19 23:52:42 +0000646 MarkDeclarationReferenced(Loc, *FI);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000647 // FIXME: Might this end up being a qualified name?
Steve Naroff6ece14c2009-01-21 00:14:39 +0000648 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
649 OpLoc, MemberType);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000650 BaseObjectIsPointer = false;
John McCall0953e762009-09-24 19:53:00 +0000651 ResultQuals = NewQuals;
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000652 }
653
Sebastian Redlcd965b92009-01-18 18:53:16 +0000654 return Owned(Result);
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000655}
656
Douglas Gregor10c42622008-11-18 15:03:34 +0000657/// ActOnDeclarationNameExpr - The parser has read some kind of name
658/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
659/// performs lookup on that name and returns an expression that refers
660/// to that name. This routine isn't directly called from the parser,
661/// because the parser doesn't know about DeclarationName. Rather,
662/// this routine is called by ActOnIdentifierExpr,
663/// ActOnOperatorFunctionIdExpr, and ActOnConversionFunctionExpr,
664/// which form the DeclarationName from the corresponding syntactic
665/// forms.
666///
667/// HasTrailingLParen indicates whether this identifier is used in a
668/// function call context. LookupCtx is only used for a C++
669/// qualified-id (foo::bar) to indicate the class or namespace that
670/// the identifier must be a member of.
Douglas Gregor5c37de72008-12-06 00:22:45 +0000671///
Sebastian Redlebc07d52009-02-03 20:19:35 +0000672/// isAddressOfOperand means that this expression is the direct operand
673/// of an address-of operator. This matters because this is the only
674/// situation where a qualified name referencing a non-static member may
675/// appear outside a member function of this class.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000676Sema::OwningExprResult
677Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
678 DeclarationName Name, bool HasTrailingLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000679 const CXXScopeSpec *SS,
Sebastian Redlebc07d52009-02-03 20:19:35 +0000680 bool isAddressOfOperand) {
Chris Lattner8a934232008-03-31 00:36:02 +0000681 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregor4c921ae2009-01-30 01:04:22 +0000682 if (SS && SS->isInvalid())
683 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000684
685 // C++ [temp.dep.expr]p3:
686 // An id-expression is type-dependent if it contains:
687 // -- a nested-name-specifier that contains a class-name that
688 // names a dependent type.
Douglas Gregor00c44862009-05-29 14:49:33 +0000689 // FIXME: Member of the current instantiation.
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000690 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorab452ba2009-03-26 23:50:42 +0000691 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
Mike Stump1eb44332009-09-09 15:08:12 +0000692 Loc, SS->getRange(),
Anders Carlsson9b31df42009-07-09 00:05:08 +0000693 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
694 isAddressOfOperand));
Douglas Gregor5953d8b2009-03-19 17:26:29 +0000695 }
696
John McCallf36e02d2009-10-09 21:13:30 +0000697 LookupResult Lookup;
698 LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc);
Douglas Gregor7176fff2009-01-15 00:26:24 +0000699
Sebastian Redlcd965b92009-01-18 18:53:16 +0000700 if (Lookup.isAmbiguous()) {
701 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
702 SS && SS->isSet() ? SS->getRange()
703 : SourceRange());
704 return ExprError();
Chris Lattner5cb10d32009-04-24 22:30:50 +0000705 }
Mike Stump1eb44332009-09-09 15:08:12 +0000706
John McCallf36e02d2009-10-09 21:13:30 +0000707 NamedDecl *D = Lookup.getAsSingleDecl(Context);
Douglas Gregor5c37de72008-12-06 00:22:45 +0000708
Chris Lattner8a934232008-03-31 00:36:02 +0000709 // If this reference is in an Objective-C method, then ivar lookup happens as
710 // well.
Douglas Gregor10c42622008-11-18 15:03:34 +0000711 IdentifierInfo *II = Name.getAsIdentifierInfo();
712 if (II && getCurMethodDecl()) {
Chris Lattner8a934232008-03-31 00:36:02 +0000713 // There are two cases to handle here. 1) scoped lookup could have failed,
714 // in which case we should look for an ivar. 2) scoped lookup could have
Mike Stump1eb44332009-09-09 15:08:12 +0000715 // found a decl, but that decl is outside the current instance method (i.e.
716 // a global variable). In these two cases, we do a lookup for an ivar with
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000717 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000718 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis53d0ea52008-06-28 06:07:14 +0000719 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000720 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000721 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner553905d2009-02-16 17:19:12 +0000722 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000723 if (DiagnoseUseOfDecl(IV, Loc))
724 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000725
Chris Lattner5cb10d32009-04-24 22:30:50 +0000726 // If we're referencing an invalid decl, just return this as a silent
727 // error node. The error diagnostic was already emitted on the decl.
728 if (IV->isInvalidDecl())
729 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +0000730
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000731 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
732 // If a class method attemps to use a free standing ivar, this is
733 // an error.
734 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
735 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
736 << IV->getDeclName());
737 // If a class method uses a global variable, even if an ivar with
738 // same name exists, use the global.
739 if (!IsClsMethod) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000740 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
741 ClassDeclared != IFace)
742 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump390b4cc2009-05-16 07:39:55 +0000743 // FIXME: This should use a new expr for a direct reference, don't
744 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000745 IdentifierInfo &II = Context.Idents.get("self");
Argyrios Kyrtzidisecd1bae2009-07-18 08:49:37 +0000746 OwningExprResult SelfExpr = ActOnIdentifierExpr(S, SourceLocation(),
747 II, false);
Douglas Gregore0762c92009-06-19 23:52:42 +0000748 MarkDeclarationReferenced(Loc, IV);
Mike Stump1eb44332009-09-09 15:08:12 +0000749 return Owned(new (Context)
750 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssone9146f22009-05-01 19:49:17 +0000751 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000752 }
Chris Lattner8a934232008-03-31 00:36:02 +0000753 }
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000754 } else if (getCurMethodDecl()->isInstanceMethod()) {
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000755 // We should warn if a local variable hides an ivar.
756 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000757 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +0000758 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000759 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
760 IFace == ClassDeclared)
Chris Lattner5cb10d32009-04-24 22:30:50 +0000761 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahanian935fd762009-03-03 01:21:12 +0000762 }
Fariborz Jahanian077c1e72009-03-02 21:55:29 +0000763 }
Steve Naroff76de9d72008-08-10 19:10:41 +0000764 // Needed to implement property "super.method" notation.
Douglas Gregor4afa39d2009-01-20 01:17:11 +0000765 if (D == 0 && II->isStr("super")) {
Steve Naroffdd53eb52009-03-05 20:12:00 +0000766 QualType T;
Mike Stump1eb44332009-09-09 15:08:12 +0000767
Steve Naroffdd53eb52009-03-05 20:12:00 +0000768 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff14108da2009-07-10 23:34:53 +0000769 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
770 getCurMethodDecl()->getClassInterface()));
Steve Naroffdd53eb52009-03-05 20:12:00 +0000771 else
772 T = Context.getObjCClassType();
Steve Naroff6ece14c2009-01-21 00:14:39 +0000773 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffe3e9add2008-06-02 23:03:37 +0000774 }
Chris Lattner8a934232008-03-31 00:36:02 +0000775 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000776
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000777 // Determine whether this name might be a candidate for
778 // argument-dependent lookup.
Mike Stump1eb44332009-09-09 15:08:12 +0000779 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000780 HasTrailingLParen;
781
782 if (ADL && D == 0) {
Douglas Gregorc71e28c2009-02-16 19:28:42 +0000783 // We've seen something of the form
784 //
785 // identifier(
786 //
787 // and we did not find any entity by the name
788 // "identifier". However, this identifier is still subject to
789 // argument-dependent lookup, so keep track of the name.
790 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
791 Context.OverloadTy,
792 Loc));
793 }
794
Reid Spencer5f016e22007-07-11 17:01:13 +0000795 if (D == 0) {
796 // Otherwise, this could be an implicitly declared function reference (legal
797 // in C90, extension in C99).
Douglas Gregor10c42622008-11-18 15:03:34 +0000798 if (HasTrailingLParen && II &&
Chris Lattner8a934232008-03-31 00:36:02 +0000799 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor10c42622008-11-18 15:03:34 +0000800 D = ImplicitlyDefineFunction(Loc, *II, S);
Reid Spencer5f016e22007-07-11 17:01:13 +0000801 else {
802 // If this name wasn't predeclared and if this is not a function call,
803 // diagnose the problem.
Douglas Gregor3f093272009-10-13 21:16:44 +0000804 if (SS && !SS->isEmpty())
805 return ExprError(Diag(Loc, diag::err_no_member)
806 << Name << computeDeclContext(*SS, false)
807 << SS->getRange());
808 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
Douglas Gregor10c42622008-11-18 15:03:34 +0000809 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000810 return ExprError(Diag(Loc, diag::err_undeclared_use)
811 << Name.getAsString());
Argyrios Kyrtzidisef6e6472008-11-08 17:17:31 +0000812 else
Sebastian Redlcd965b92009-01-18 18:53:16 +0000813 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000814 }
815 }
Mike Stump1eb44332009-09-09 15:08:12 +0000816
Douglas Gregor751f9a42009-06-30 15:47:41 +0000817 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
818 // Warn about constructs like:
819 // if (void *X = foo()) { ... } else { X }.
820 // In the else block, the pointer is always false.
Mike Stump1eb44332009-09-09 15:08:12 +0000821
Douglas Gregor751f9a42009-06-30 15:47:41 +0000822 // FIXME: In a template instantiation, we don't have scope
823 // information to check this property.
824 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
825 Scope *CheckS = S;
826 while (CheckS) {
Mike Stump1eb44332009-09-09 15:08:12 +0000827 if (CheckS->isWithinElse() &&
Douglas Gregor751f9a42009-06-30 15:47:41 +0000828 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
829 if (Var->getType()->isBooleanType())
830 ExprError(Diag(Loc, diag::warn_value_always_false)
831 << Var->getDeclName());
832 else
833 ExprError(Diag(Loc, diag::warn_value_always_zero)
834 << Var->getDeclName());
835 break;
836 }
Mike Stump1eb44332009-09-09 15:08:12 +0000837
Douglas Gregor751f9a42009-06-30 15:47:41 +0000838 // Move up one more control parent to check again.
839 CheckS = CheckS->getControlParent();
840 if (CheckS)
841 CheckS = CheckS->getParent();
842 }
843 }
844 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
845 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
846 // C99 DR 316 says that, if a function type comes from a
847 // function definition (without a prototype), that type is only
848 // used for checking compatibility. Therefore, when referencing
849 // the function, we pretend that we don't have the full function
850 // type.
851 if (DiagnoseUseOfDecl(Func, Loc))
852 return ExprError();
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000853
Douglas Gregor751f9a42009-06-30 15:47:41 +0000854 QualType T = Func->getType();
855 QualType NoProtoType = T;
John McCall183700f2009-09-21 23:43:11 +0000856 if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>())
Douglas Gregor751f9a42009-06-30 15:47:41 +0000857 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
858 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
859 }
860 }
Mike Stump1eb44332009-09-09 15:08:12 +0000861
Douglas Gregor751f9a42009-06-30 15:47:41 +0000862 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
863}
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000864/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +0000865bool
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000866Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
867 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
Mike Stump1eb44332009-09-09 15:08:12 +0000868 if (CXXRecordDecl *RD =
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000869 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
Mike Stump1eb44332009-09-09 15:08:12 +0000870 QualType DestType =
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000871 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000872 if (DestType->isDependentType() || From->getType()->isDependentType())
873 return false;
874 QualType FromRecordType = From->getType();
875 QualType DestRecordType = DestType;
Ted Kremenek6217b802009-07-29 21:53:49 +0000876 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000877 DestType = Context.getPointerType(DestType);
878 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000879 }
Fariborz Jahanian96e2fa92009-07-29 20:41:46 +0000880 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
881 CheckDerivedToBaseConversion(FromRecordType,
882 DestRecordType,
883 From->getSourceRange().getBegin(),
884 From->getSourceRange()))
885 return true;
Anders Carlsson3503d042009-07-31 01:23:52 +0000886 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
887 /*isLvalue=*/true);
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000888 }
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +0000889 return false;
Fariborz Jahanian98a541e2009-07-29 18:40:24 +0000890}
Douglas Gregor751f9a42009-06-30 15:47:41 +0000891
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000892/// \brief Build a MemberExpr AST node.
Mike Stump1eb44332009-09-09 15:08:12 +0000893static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
894 const CXXScopeSpec *SS, NamedDecl *Member,
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000895 SourceLocation Loc, QualType Ty) {
896 if (SS && SS->isSet())
Mike Stump1eb44332009-09-09 15:08:12 +0000897 return MemberExpr::Create(C, Base, isArrow,
Douglas Gregor83f6faf2009-08-31 23:41:50 +0000898 (NestedNameSpecifier *)SS->getScopeRep(),
Mike Stump1eb44332009-09-09 15:08:12 +0000899 SS->getRange(), Member, Loc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +0000900 // FIXME: Explicit template argument lists
901 false, SourceLocation(), 0, 0, SourceLocation(),
902 Ty);
Mike Stump1eb44332009-09-09 15:08:12 +0000903
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +0000904 return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty);
905}
906
Douglas Gregor751f9a42009-06-30 15:47:41 +0000907/// \brief Complete semantic analysis for a reference to the given declaration.
908Sema::OwningExprResult
909Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
910 bool HasTrailingLParen,
Mike Stump1eb44332009-09-09 15:08:12 +0000911 const CXXScopeSpec *SS,
Douglas Gregor751f9a42009-06-30 15:47:41 +0000912 bool isAddressOfOperand) {
913 assert(D && "Cannot refer to a NULL declaration");
914 DeclarationName Name = D->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +0000915
Sebastian Redlebc07d52009-02-03 20:19:35 +0000916 // If this is an expression of the form &Class::member, don't build an
917 // implicit member ref, because we want a pointer to the member in general,
918 // not any specific instance's member.
919 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregore4e5b052009-03-19 00:18:19 +0000920 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor47b9a1c2009-02-04 17:27:36 +0000921 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redlebc07d52009-02-03 20:19:35 +0000922 QualType DType;
923 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
924 DType = FD->getType().getNonReferenceType();
925 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
926 DType = Method->getType();
927 } else if (isa<OverloadedFunctionDecl>(D)) {
928 DType = Context.OverloadTy;
929 }
930 // Could be an inner type. That's diagnosed below, so ignore it here.
931 if (!DType.isNull()) {
932 // The pointer is type- and value-dependent if it points into something
933 // dependent.
Douglas Gregor00c44862009-05-29 14:49:33 +0000934 bool Dependent = DC->isDependentContext();
Anders Carlssone41590d2009-06-24 00:10:43 +0000935 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redlebc07d52009-02-03 20:19:35 +0000936 }
937 }
938 }
939
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000940 // We may have found a field within an anonymous union or struct
941 // (C++ [class.union]).
Douglas Gregore961afb2009-10-22 07:08:30 +0000942 // FIXME: This needs to happen post-isImplicitMemberReference?
Douglas Gregorbcbffc42009-01-07 00:43:41 +0000943 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
944 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
945 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlcd965b92009-01-18 18:53:16 +0000946
Douglas Gregore961afb2009-10-22 07:08:30 +0000947 // Cope with an implicit member access in a C++ non-static member function.
948 QualType ThisType, MemberType;
949 if (isImplicitMemberReference(SS, D, Loc, ThisType, MemberType)) {
950 Expr *This = new (Context) CXXThisExpr(SourceLocation(), ThisType);
951 MarkDeclarationReferenced(Loc, D);
952 if (PerformObjectMemberConversion(This, D))
953 return ExprError();
Douglas Gregor88a35142008-12-22 05:46:06 +0000954
Douglas Gregore961afb2009-10-22 07:08:30 +0000955 bool ShouldCheckUse = true;
956 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
957 // Don't diagnose the use of a virtual member function unless it's
958 // explicitly qualified.
959 if (MD->isVirtual() && (!SS || !SS->isSet()))
960 ShouldCheckUse = false;
Douglas Gregor88a35142008-12-22 05:46:06 +0000961 }
Douglas Gregore961afb2009-10-22 07:08:30 +0000962
963 if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc))
964 return ExprError();
965 return Owned(BuildMemberExpr(Context, This, true, SS, D,
966 Loc, MemberType));
Douglas Gregor88a35142008-12-22 05:46:06 +0000967 }
968
Douglas Gregor44b43212008-12-11 16:49:14 +0000969 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000970 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
971 if (MD->isStatic())
972 // "invalid use of member 'x' in static member function"
Sebastian Redlcd965b92009-01-18 18:53:16 +0000973 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
974 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000975 }
976
Douglas Gregor88a35142008-12-22 05:46:06 +0000977 // Any other ways we could have found the field in a well-formed
978 // program would have been turned into implicit member expressions
979 // above.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000980 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
981 << FD->getDeclName());
Argyrios Kyrtzidis07952322008-07-01 10:37:29 +0000982 }
Douglas Gregor88a35142008-12-22 05:46:06 +0000983
Reid Spencer5f016e22007-07-11 17:01:13 +0000984 if (isa<TypedefDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +0000985 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremeneka526c5c2008-01-07 19:49:32 +0000986 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +0000987 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis2d1c5d32008-04-27 13:50:30 +0000988 if (isa<NamespaceDecl>(D))
Sebastian Redlcd965b92009-01-18 18:53:16 +0000989 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Reid Spencer5f016e22007-07-11 17:01:13 +0000990
Steve Naroffdd972f22008-09-05 22:11:13 +0000991 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor8e9bebd2008-10-21 16:13:35 +0000992 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +0000993 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
994 false, false, SS);
Douglas Gregorc15cb382009-02-09 23:23:08 +0000995 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlssone41590d2009-06-24 00:10:43 +0000996 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
997 false, false, SS);
Anders Carlsson598da5b2009-08-29 01:06:32 +0000998 else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D))
Mike Stump1eb44332009-09-09 15:08:12 +0000999 return BuildDeclRefExpr(UD, Context.DependentTy, Loc,
1000 /*TypeDependent=*/true,
Anders Carlsson598da5b2009-08-29 01:06:32 +00001001 /*ValueDependent=*/true, SS);
1002
Steve Naroffdd972f22008-09-05 22:11:13 +00001003 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001004
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001005 // Check whether this declaration can be used. Note that we suppress
1006 // this check when we're going to perform argument-dependent lookup
1007 // on this function name, because this might not be the function
1008 // that overload resolution actually selects.
Mike Stump1eb44332009-09-09 15:08:12 +00001009 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor751f9a42009-06-30 15:47:41 +00001010 HasTrailingLParen;
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001011 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
1012 return ExprError();
1013
Steve Naroffdd972f22008-09-05 22:11:13 +00001014 // Only create DeclRefExpr's for valid Decl's.
1015 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001016 return ExprError();
1017
Chris Lattner639e2d32008-10-20 05:16:36 +00001018 // If the identifier reference is inside a block, and it refers to a value
1019 // that is outside the block, create a BlockDeclRefExpr instead of a
1020 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1021 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +00001022 //
Chris Lattner639e2d32008-10-20 05:16:36 +00001023 // We do not do this for things like enum constants, global variables, etc,
1024 // as they do not get snapshotted.
1025 //
1026 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregore0762c92009-06-19 23:52:42 +00001027 MarkDeclarationReferenced(Loc, VD);
Eli Friedman5fdeae12009-03-22 23:00:19 +00001028 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff090276f2008-10-10 01:28:17 +00001029 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00001030 if (VD->getAttr<BlocksAttr>())
Eli Friedman5fdeae12009-03-22 23:00:19 +00001031 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001032 // This is to record that a 'const' was actually synthesize and added.
1033 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff090276f2008-10-10 01:28:17 +00001034 // Variable will be bound by-copy, make it const within the closure.
Mike Stump1eb44332009-09-09 15:08:12 +00001035
Eli Friedman5fdeae12009-03-22 23:00:19 +00001036 ExprTy.addConst();
Mike Stump1eb44332009-09-09 15:08:12 +00001037 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00001038 constAdded));
Steve Naroff090276f2008-10-10 01:28:17 +00001039 }
1040 // If this reference is not in a block or if the referenced variable is
1041 // within the block, create a normal DeclRefExpr.
Douglas Gregor898574e2008-12-05 23:32:09 +00001042
Douglas Gregor898574e2008-12-05 23:32:09 +00001043 bool TypeDependent = false;
Douglas Gregor83f96f62008-12-10 20:57:37 +00001044 bool ValueDependent = false;
1045 if (getLangOptions().CPlusPlus) {
1046 // C++ [temp.dep.expr]p3:
Mike Stump1eb44332009-09-09 15:08:12 +00001047 // An id-expression is type-dependent if it contains:
Douglas Gregor83f96f62008-12-10 20:57:37 +00001048 // - an identifier that was declared with a dependent type,
1049 if (VD->getType()->isDependentType())
1050 TypeDependent = true;
1051 // - FIXME: a template-id that is dependent,
1052 // - a conversion-function-id that specifies a dependent type,
1053 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1054 Name.getCXXNameType()->isDependentType())
1055 TypeDependent = true;
1056 // - a nested-name-specifier that contains a class-name that
1057 // names a dependent type.
1058 else if (SS && !SS->isEmpty()) {
Douglas Gregore4e5b052009-03-19 00:18:19 +00001059 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor83f96f62008-12-10 20:57:37 +00001060 DC; DC = DC->getParent()) {
1061 // FIXME: could stop early at namespace scope.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001062 if (DC->isRecord()) {
Douglas Gregor83f96f62008-12-10 20:57:37 +00001063 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1064 if (Context.getTypeDeclType(Record)->isDependentType()) {
1065 TypeDependent = true;
1066 break;
1067 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001068 }
1069 }
1070 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001071
Douglas Gregor83f96f62008-12-10 20:57:37 +00001072 // C++ [temp.dep.constexpr]p2:
1073 //
1074 // An identifier is value-dependent if it is:
1075 // - a name declared with a dependent type,
1076 if (TypeDependent)
1077 ValueDependent = true;
1078 // - the name of a non-type template parameter,
1079 else if (isa<NonTypeTemplateParmDecl>(VD))
1080 ValueDependent = true;
1081 // - a constant with integral or enumeration type and is
1082 // initialized with an expression that is value-dependent
Eli Friedmanc1494122009-06-11 01:11:20 +00001083 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
John McCall0953e762009-09-24 19:53:00 +00001084 if (Dcl->getType().getCVRQualifiers() == Qualifiers::Const &&
Eli Friedmanc1494122009-06-11 01:11:20 +00001085 Dcl->getInit()) {
1086 ValueDependent = Dcl->getInit()->isValueDependent();
1087 }
1088 }
Douglas Gregor83f96f62008-12-10 20:57:37 +00001089 }
Douglas Gregor898574e2008-12-05 23:32:09 +00001090
Anders Carlssone41590d2009-06-24 00:10:43 +00001091 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1092 TypeDependent, ValueDependent, SS);
Reid Spencer5f016e22007-07-11 17:01:13 +00001093}
1094
Sebastian Redlcd965b92009-01-18 18:53:16 +00001095Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1096 tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00001097 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001098
Reid Spencer5f016e22007-07-11 17:01:13 +00001099 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +00001100 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00001101 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1102 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1103 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00001104 }
Chris Lattner1423ea42008-01-12 18:39:25 +00001105
Chris Lattnerfa28b302008-01-12 08:14:25 +00001106 // Pre-defined identifiers are of type char[x], where x is the length of the
1107 // string.
Mike Stump1eb44332009-09-09 15:08:12 +00001108
Anders Carlsson3a082d82009-09-08 18:24:21 +00001109 Decl *currentDecl = getCurFunctionOrMethodDecl();
1110 if (!currentDecl) {
Chris Lattnerb0da9232008-12-12 05:05:20 +00001111 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson3a082d82009-09-08 18:24:21 +00001112 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerb0da9232008-12-12 05:05:20 +00001113 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001114
Anders Carlsson773f3972009-09-11 01:22:35 +00001115 QualType ResTy;
1116 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
1117 ResTy = Context.DependentTy;
1118 } else {
1119 unsigned Length =
1120 PredefinedExpr::ComputeName(Context, IT, currentDecl).length();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001121
Anders Carlsson773f3972009-09-11 01:22:35 +00001122 llvm::APInt LengthI(32, Length + 1);
John McCall0953e762009-09-24 19:53:00 +00001123 ResTy = Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00001124 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
1125 }
Steve Naroff6ece14c2009-01-21 00:14:39 +00001126 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00001127}
1128
Sebastian Redlcd965b92009-01-18 18:53:16 +00001129Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001130 llvm::SmallString<16> CharBuffer;
1131 CharBuffer.resize(Tok.getLength());
1132 const char *ThisTokBegin = &CharBuffer[0];
1133 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001134
Reid Spencer5f016e22007-07-11 17:01:13 +00001135 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1136 Tok.getLocation(), PP);
1137 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00001138 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00001139
1140 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1141
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001142 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1143 Literal.isWide(),
1144 type, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001145}
1146
Sebastian Redlcd965b92009-01-18 18:53:16 +00001147Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1148 // Fast path for a single digit (which is quite common). A single digit
Reid Spencer5f016e22007-07-11 17:01:13 +00001149 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1150 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00001151 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattner0c21e842009-01-16 07:10:29 +00001152 unsigned IntSize = Context.Target.getIntWidth();
Steve Naroff6ece14c2009-01-21 00:14:39 +00001153 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff0a473932009-01-20 19:53:53 +00001154 Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00001155 }
Ted Kremenek28396602009-01-13 23:19:12 +00001156
Reid Spencer5f016e22007-07-11 17:01:13 +00001157 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00001158 // Add padding so that NumericLiteralParser can overread by one character.
1159 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00001160 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00001161
Reid Spencer5f016e22007-07-11 17:01:13 +00001162 // Get the spelling of the token, which eliminates trigraphs, etc.
1163 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001164
Mike Stump1eb44332009-09-09 15:08:12 +00001165 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Reid Spencer5f016e22007-07-11 17:01:13 +00001166 Tok.getLocation(), PP);
1167 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00001168 return ExprError();
1169
Chris Lattner5d661452007-08-26 03:42:43 +00001170 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00001171
Chris Lattner5d661452007-08-26 03:42:43 +00001172 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00001173 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001174 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00001175 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001176 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00001177 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001178 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00001179 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00001180
1181 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1182
Ted Kremenek720c4ec2007-11-29 00:56:49 +00001183 // isExact will be set by GetFloatValue().
1184 bool isExact = false;
Chris Lattner001d64d2009-06-29 17:34:55 +00001185 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1186 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00001187
Chris Lattner5d661452007-08-26 03:42:43 +00001188 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00001189 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00001190 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00001191 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00001192
Neil Boothb9449512007-08-29 22:00:19 +00001193 // long long is a C99 feature.
1194 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +00001195 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +00001196 Diag(Tok.getLocation(), diag::ext_longlong);
1197
Reid Spencer5f016e22007-07-11 17:01:13 +00001198 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +00001199 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00001200
Reid Spencer5f016e22007-07-11 17:01:13 +00001201 if (Literal.GetIntegerValue(ResultVal)) {
1202 // If this value didn't fit into uintmax_t, warn and force to ull.
1203 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001204 Ty = Context.UnsignedLongLongTy;
1205 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00001206 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00001207 } else {
1208 // If this value fits into a ULL, try to figure out what else it fits into
1209 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00001210
Reid Spencer5f016e22007-07-11 17:01:13 +00001211 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1212 // be an unsigned int.
1213 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1214
1215 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001216 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00001217 if (!Literal.isLong && !Literal.isLongLong) {
1218 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001219 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001220
Reid Spencer5f016e22007-07-11 17:01:13 +00001221 // Does it fit in a unsigned int?
1222 if (ResultVal.isIntN(IntSize)) {
1223 // Does it fit in a signed int?
1224 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001225 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001226 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001227 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001228 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001229 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001230 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001231
Reid Spencer5f016e22007-07-11 17:01:13 +00001232 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00001233 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001234 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001235
Reid Spencer5f016e22007-07-11 17:01:13 +00001236 // Does it fit in a unsigned long?
1237 if (ResultVal.isIntN(LongSize)) {
1238 // Does it fit in a signed long?
1239 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001240 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001241 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001242 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001243 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001244 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001245 }
1246
Reid Spencer5f016e22007-07-11 17:01:13 +00001247 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001248 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001249 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00001250
Reid Spencer5f016e22007-07-11 17:01:13 +00001251 // Does it fit in a unsigned long long?
1252 if (ResultVal.isIntN(LongLongSize)) {
1253 // Does it fit in a signed long long?
1254 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001255 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00001256 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00001257 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001258 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00001259 }
1260 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001261
Reid Spencer5f016e22007-07-11 17:01:13 +00001262 // If we still couldn't decide a type, we probably have something that
1263 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00001264 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001265 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00001266 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001267 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00001268 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001269
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00001270 if (ResultVal.getBitWidth() != Width)
1271 ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00001272 }
Sebastian Redle91b3bc2009-01-20 22:23:13 +00001273 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00001274 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00001275
Chris Lattner5d661452007-08-26 03:42:43 +00001276 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1277 if (Literal.isImaginary)
Mike Stump1eb44332009-09-09 15:08:12 +00001278 Res = new (Context) ImaginaryLiteral(Res,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001279 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00001280
1281 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00001282}
1283
Sebastian Redlcd965b92009-01-18 18:53:16 +00001284Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1285 SourceLocation R, ExprArg Val) {
Anders Carlssone9146f22009-05-01 19:49:17 +00001286 Expr *E = Val.takeAs<Expr>();
Chris Lattnerf0467b32008-04-02 04:24:33 +00001287 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00001288 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00001289}
1290
1291/// The UsualUnaryConversions() function is *not* called by this routine.
1292/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl28507842009-02-26 14:39:58 +00001293bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl05189992008-11-11 17:56:53 +00001294 SourceLocation OpLoc,
1295 const SourceRange &ExprRange,
1296 bool isSizeof) {
Sebastian Redl28507842009-02-26 14:39:58 +00001297 if (exprType->isDependentType())
1298 return false;
1299
Reid Spencer5f016e22007-07-11 17:01:13 +00001300 // C99 6.5.3.4p1:
Chris Lattner01072922009-01-24 19:46:37 +00001301 if (isa<FunctionType>(exprType)) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001302 // alignof(function) is allowed as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001303 if (isSizeof)
1304 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1305 return false;
1306 }
Mike Stump1eb44332009-09-09 15:08:12 +00001307
Chris Lattner1efaa952009-04-24 00:30:45 +00001308 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattner01072922009-01-24 19:46:37 +00001309 if (exprType->isVoidType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001310 Diag(OpLoc, diag::ext_sizeof_void_type)
1311 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00001312 return false;
1313 }
Mike Stump1eb44332009-09-09 15:08:12 +00001314
Chris Lattner1efaa952009-04-24 00:30:45 +00001315 if (RequireCompleteType(OpLoc, exprType,
Mike Stump1eb44332009-09-09 15:08:12 +00001316 isSizeof ? diag::err_sizeof_incomplete_type :
Anders Carlssonb7906612009-08-26 23:45:07 +00001317 PDiag(diag::err_alignof_incomplete_type)
1318 << ExprRange))
Chris Lattner1efaa952009-04-24 00:30:45 +00001319 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00001320
Chris Lattner1efaa952009-04-24 00:30:45 +00001321 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanianced1e282009-04-24 17:34:33 +00001322 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00001323 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattner5cb10d32009-04-24 22:30:50 +00001324 << exprType << isSizeof << ExprRange;
1325 return true;
Chris Lattnerca790922009-04-21 19:55:16 +00001326 }
Mike Stump1eb44332009-09-09 15:08:12 +00001327
Chris Lattner1efaa952009-04-24 00:30:45 +00001328 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00001329}
1330
Chris Lattner31e21e02009-01-24 20:17:12 +00001331bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1332 const SourceRange &ExprRange) {
1333 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00001334
Mike Stump1eb44332009-09-09 15:08:12 +00001335 // alignof decl is always ok.
Chris Lattner31e21e02009-01-24 20:17:12 +00001336 if (isa<DeclRefExpr>(E))
1337 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00001338
1339 // Cannot know anything else if the expression is dependent.
1340 if (E->isTypeDependent())
1341 return false;
1342
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001343 if (E->getBitField()) {
1344 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1345 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00001346 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001347
1348 // Alignment of a field access is always okay, so long as it isn't a
1349 // bit-field.
1350 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump8e1fab22009-07-22 18:58:19 +00001351 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001352 return false;
1353
Chris Lattner31e21e02009-01-24 20:17:12 +00001354 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1355}
1356
Douglas Gregorba498172009-03-13 21:01:28 +00001357/// \brief Build a sizeof or alignof expression given a type operand.
Mike Stump1eb44332009-09-09 15:08:12 +00001358Action::OwningExprResult
1359Sema::CreateSizeOfAlignOfExpr(QualType T, SourceLocation OpLoc,
Douglas Gregorba498172009-03-13 21:01:28 +00001360 bool isSizeOf, SourceRange R) {
1361 if (T.isNull())
1362 return ExprError();
1363
1364 if (!T->isDependentType() &&
1365 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1366 return ExprError();
1367
1368 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1369 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, T,
1370 Context.getSizeType(), OpLoc,
1371 R.getEnd()));
1372}
1373
1374/// \brief Build a sizeof or alignof expression given an expression
1375/// operand.
Mike Stump1eb44332009-09-09 15:08:12 +00001376Action::OwningExprResult
1377Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
Douglas Gregorba498172009-03-13 21:01:28 +00001378 bool isSizeOf, SourceRange R) {
1379 // Verify that the operand is valid.
1380 bool isInvalid = false;
1381 if (E->isTypeDependent()) {
1382 // Delay type-checking for type-dependent expressions.
1383 } else if (!isSizeOf) {
1384 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00001385 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregorba498172009-03-13 21:01:28 +00001386 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1387 isInvalid = true;
1388 } else {
1389 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1390 }
1391
1392 if (isInvalid)
1393 return ExprError();
1394
1395 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1396 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1397 Context.getSizeType(), OpLoc,
1398 R.getEnd()));
1399}
1400
Sebastian Redl05189992008-11-11 17:56:53 +00001401/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1402/// the same for @c alignof and @c __alignof
1403/// Note that the ArgRange is invalid if isType is false.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001404Action::OwningExprResult
Sebastian Redl05189992008-11-11 17:56:53 +00001405Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1406 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001407 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001408 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00001409
Sebastian Redl05189992008-11-11 17:56:53 +00001410 if (isType) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00001411 // FIXME: Preserve type source info.
1412 QualType ArgTy = GetTypeFromParser(TyOrEx);
Douglas Gregorba498172009-03-13 21:01:28 +00001413 return CreateSizeOfAlignOfExpr(ArgTy, OpLoc, isSizeof, ArgRange);
Mike Stump1eb44332009-09-09 15:08:12 +00001414 }
Sebastian Redl05189992008-11-11 17:56:53 +00001415
Douglas Gregorba498172009-03-13 21:01:28 +00001416 // Get the end location.
1417 Expr *ArgEx = (Expr *)TyOrEx;
1418 Action::OwningExprResult Result
1419 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1420
1421 if (Result.isInvalid())
1422 DeleteExpr(ArgEx);
1423
1424 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00001425}
1426
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001427QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl28507842009-02-26 14:39:58 +00001428 if (V->isTypeDependent())
1429 return Context.DependentTy;
Mike Stump1eb44332009-09-09 15:08:12 +00001430
Chris Lattnercc26ed72007-08-26 05:39:26 +00001431 // These operators return the element type of a complex type.
John McCall183700f2009-09-21 23:43:11 +00001432 if (const ComplexType *CT = V->getType()->getAs<ComplexType>())
Chris Lattnerdbb36972007-08-24 21:16:53 +00001433 return CT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00001434
Chris Lattnercc26ed72007-08-26 05:39:26 +00001435 // Otherwise they pass through real integer and floating point types here.
1436 if (V->getType()->isArithmeticType())
1437 return V->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00001438
Chris Lattnercc26ed72007-08-26 05:39:26 +00001439 // Reject anything else.
Chris Lattnerba27e2a2009-02-17 08:12:06 +00001440 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1441 << (isReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00001442 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00001443}
1444
1445
Reid Spencer5f016e22007-07-11 17:01:13 +00001446
Sebastian Redl0eb23302009-01-19 00:08:26 +00001447Action::OwningExprResult
1448Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1449 tok::TokenKind Kind, ExprArg Input) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00001450 // Since this might be a postfix expression, get rid of ParenListExprs.
1451 Input = MaybeConvertParenListExprToParenExpr(S, move(Input));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001452 Expr *Arg = (Expr *)Input.get();
Douglas Gregor74253732008-11-19 15:42:04 +00001453
Reid Spencer5f016e22007-07-11 17:01:13 +00001454 UnaryOperator::Opcode Opc;
1455 switch (Kind) {
1456 default: assert(0 && "Unknown unary op!");
1457 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1458 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1459 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00001460
Douglas Gregor74253732008-11-19 15:42:04 +00001461 if (getLangOptions().CPlusPlus &&
1462 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1463 // Which overloaded operator?
Sebastian Redl0eb23302009-01-19 00:08:26 +00001464 OverloadedOperatorKind OverOp =
Douglas Gregor74253732008-11-19 15:42:04 +00001465 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1466
1467 // C++ [over.inc]p1:
1468 //
1469 // [...] If the function is a member function with one
1470 // parameter (which shall be of type int) or a non-member
1471 // function with two parameters (the second of which shall be
1472 // of type int), it defines the postfix increment operator ++
1473 // for objects of that type. When the postfix increment is
1474 // called as a result of using the ++ operator, the int
1475 // argument will have value zero.
Mike Stump1eb44332009-09-09 15:08:12 +00001476 Expr *Args[2] = {
1477 Arg,
1478 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001479 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregor74253732008-11-19 15:42:04 +00001480 };
1481
1482 // Build the candidate set for overloading
1483 OverloadCandidateSet CandidateSet;
Douglas Gregor063daf62009-03-13 18:40:31 +00001484 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregor74253732008-11-19 15:42:04 +00001485
1486 // Perform overload resolution.
1487 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001488 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregor74253732008-11-19 15:42:04 +00001489 case OR_Success: {
1490 // We found a built-in operator or an overloaded operator.
1491 FunctionDecl *FnDecl = Best->Function;
1492
1493 if (FnDecl) {
1494 // We matched an overloaded operator. Build a call to that
1495 // operator.
1496
1497 // Convert the arguments.
1498 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1499 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001500 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001501 } else {
1502 // Convert the arguments.
Sebastian Redl0eb23302009-01-19 00:08:26 +00001503 if (PerformCopyInitialization(Arg,
Douglas Gregor74253732008-11-19 15:42:04 +00001504 FnDecl->getParamDecl(0)->getType(),
1505 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001506 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001507 }
1508
1509 // Determine the result type
Anders Carlsson07d68f12009-10-13 21:49:31 +00001510 QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001511
Douglas Gregor74253732008-11-19 15:42:04 +00001512 // Build the actual expression node.
Steve Naroff6ece14c2009-01-21 00:14:39 +00001513 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump488e25b2009-02-19 02:54:59 +00001514 SourceLocation());
Douglas Gregor74253732008-11-19 15:42:04 +00001515 UsualUnaryConversions(FnExpr);
1516
Sebastian Redl0eb23302009-01-19 00:08:26 +00001517 Input.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001518 Args[0] = Arg;
Anders Carlsson07d68f12009-10-13 21:49:31 +00001519
1520 ExprOwningPtr<CXXOperatorCallExpr>
1521 TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp,
1522 FnExpr, Args, 2,
1523 ResultTy, OpLoc));
1524
1525 if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(),
1526 FnDecl))
1527 return ExprError();
Anders Carlsson3a9439f2009-10-13 22:22:09 +00001528 return Owned(TheCall.release());
1529
Douglas Gregor74253732008-11-19 15:42:04 +00001530 } else {
1531 // We matched a built-in operator. Convert the arguments, then
1532 // break out so that we will build the appropriate built-in
1533 // operator node.
1534 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1535 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001536 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001537
1538 break;
Sebastian Redl0eb23302009-01-19 00:08:26 +00001539 }
Douglas Gregor74253732008-11-19 15:42:04 +00001540 }
1541
Douglas Gregor33074752009-09-30 21:46:01 +00001542 case OR_No_Viable_Function: {
1543 // No viable function; try checking this as a built-in operator, which
1544 // will fail and provide a diagnostic. Then, print the overload
1545 // candidates.
1546 OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
1547 assert(Result.isInvalid() &&
1548 "C++ postfix-unary operator overloading is missing candidates!");
1549 if (Result.isInvalid())
1550 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
1551
1552 return move(Result);
1553 }
1554
Douglas Gregor74253732008-11-19 15:42:04 +00001555 case OR_Ambiguous:
1556 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1557 << UnaryOperator::getOpcodeStr(Opc)
1558 << Arg->getSourceRange();
1559 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001560 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001561
1562 case OR_Deleted:
1563 Diag(OpLoc, diag::err_ovl_deleted_oper)
1564 << Best->Function->isDeleted()
1565 << UnaryOperator::getOpcodeStr(Opc)
1566 << Arg->getSourceRange();
1567 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1568 return ExprError();
Douglas Gregor74253732008-11-19 15:42:04 +00001569 }
1570
1571 // Either we found no viable overloaded operator or we matched a
1572 // built-in operator. In either case, fall through to trying to
1573 // build a built-in operation.
1574 }
1575
Eli Friedman6016cb22009-07-22 23:24:42 +00001576 Input.release();
1577 Input = Arg;
Eli Friedmande99a452009-07-22 22:25:00 +00001578 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Reid Spencer5f016e22007-07-11 17:01:13 +00001579}
1580
Sebastian Redl0eb23302009-01-19 00:08:26 +00001581Action::OwningExprResult
1582Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1583 ExprArg Idx, SourceLocation RLoc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00001584 // Since this might be a postfix expression, get rid of ParenListExprs.
1585 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1586
Sebastian Redl0eb23302009-01-19 00:08:26 +00001587 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1588 *RHSExp = static_cast<Expr*>(Idx.get());
Mike Stump1eb44332009-09-09 15:08:12 +00001589
Douglas Gregor337c6b92008-11-19 17:17:41 +00001590 if (getLangOptions().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00001591 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1592 Base.release();
1593 Idx.release();
1594 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1595 Context.DependentTy, RLoc));
1596 }
1597
Mike Stump1eb44332009-09-09 15:08:12 +00001598 if (getLangOptions().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00001599 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00001600 LHSExp->getType()->isEnumeralType() ||
1601 RHSExp->getType()->isRecordType() ||
1602 RHSExp->getType()->isEnumeralType())) {
Mike Stump1eb44332009-09-09 15:08:12 +00001603 // Add the appropriate overloaded operators (C++ [over.match.oper])
Douglas Gregor337c6b92008-11-19 17:17:41 +00001604 // to the candidate set.
1605 OverloadCandidateSet CandidateSet;
1606 Expr *Args[2] = { LHSExp, RHSExp };
Douglas Gregor063daf62009-03-13 18:40:31 +00001607 AddOperatorCandidates(OO_Subscript, S, LLoc, Args, 2, CandidateSet,
1608 SourceRange(LLoc, RLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00001609
Douglas Gregor337c6b92008-11-19 17:17:41 +00001610 // Perform overload resolution.
1611 OverloadCandidateSet::iterator Best;
Douglas Gregore0762c92009-06-19 23:52:42 +00001612 switch (BestViableFunction(CandidateSet, LLoc, Best)) {
Douglas Gregor337c6b92008-11-19 17:17:41 +00001613 case OR_Success: {
1614 // We found a built-in operator or an overloaded operator.
1615 FunctionDecl *FnDecl = Best->Function;
1616
1617 if (FnDecl) {
1618 // We matched an overloaded operator. Build a call to that
1619 // operator.
1620
1621 // Convert the arguments.
1622 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1623 if (PerformObjectArgumentInitialization(LHSExp, Method) ||
Mike Stump1eb44332009-09-09 15:08:12 +00001624 PerformCopyInitialization(RHSExp,
Douglas Gregor337c6b92008-11-19 17:17:41 +00001625 FnDecl->getParamDecl(0)->getType(),
1626 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001627 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001628 } else {
1629 // Convert the arguments.
1630 if (PerformCopyInitialization(LHSExp,
1631 FnDecl->getParamDecl(0)->getType(),
1632 "passing") ||
1633 PerformCopyInitialization(RHSExp,
1634 FnDecl->getParamDecl(1)->getType(),
1635 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001636 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001637 }
1638
1639 // Determine the result type
Anders Carlsson3a9439f2009-10-13 22:22:09 +00001640 QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
Sebastian Redl0eb23302009-01-19 00:08:26 +00001641
Douglas Gregor337c6b92008-11-19 17:17:41 +00001642 // Build the actual expression node.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001643 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
1644 SourceLocation());
Douglas Gregor337c6b92008-11-19 17:17:41 +00001645 UsualUnaryConversions(FnExpr);
1646
Sebastian Redl0eb23302009-01-19 00:08:26 +00001647 Base.release();
1648 Idx.release();
Douglas Gregor7ff69262009-05-27 05:00:47 +00001649 Args[0] = LHSExp;
1650 Args[1] = RHSExp;
Anders Carlsson3a9439f2009-10-13 22:22:09 +00001651
1652 ExprOwningPtr<CXXOperatorCallExpr>
1653 TheCall(this, new (Context) CXXOperatorCallExpr(Context, OO_Subscript,
1654 FnExpr, Args, 2,
1655 ResultTy, RLoc));
1656 if (CheckCallReturnType(FnDecl->getResultType(), LLoc, TheCall.get(),
1657 FnDecl))
1658 return ExprError();
1659
1660 return Owned(TheCall.release());
Douglas Gregor337c6b92008-11-19 17:17:41 +00001661 } else {
1662 // We matched a built-in operator. Convert the arguments, then
1663 // break out so that we will build the appropriate built-in
1664 // operator node.
1665 if (PerformCopyInitialization(LHSExp, Best->BuiltinTypes.ParamTypes[0],
1666 "passing") ||
1667 PerformCopyInitialization(RHSExp, Best->BuiltinTypes.ParamTypes[1],
1668 "passing"))
Sebastian Redl0eb23302009-01-19 00:08:26 +00001669 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001670
1671 break;
1672 }
1673 }
1674
1675 case OR_No_Viable_Function:
1676 // No viable function; fall through to handling this as a
1677 // built-in operator, which will produce an error message for us.
1678 break;
1679
1680 case OR_Ambiguous:
1681 Diag(LLoc, diag::err_ovl_ambiguous_oper)
1682 << "[]"
1683 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1684 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001685 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001686
1687 case OR_Deleted:
1688 Diag(LLoc, diag::err_ovl_deleted_oper)
1689 << Best->Function->isDeleted()
1690 << "[]"
1691 << LHSExp->getSourceRange() << RHSExp->getSourceRange();
1692 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1693 return ExprError();
Douglas Gregor337c6b92008-11-19 17:17:41 +00001694 }
1695
1696 // Either we found no viable overloaded operator or we matched a
1697 // built-in operator. In either case, fall through to trying to
1698 // build a built-in operation.
1699 }
1700
Chris Lattner12d9ff62007-07-16 00:14:47 +00001701 // Perform default conversions.
1702 DefaultFunctionArrayConversion(LHSExp);
1703 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001704
Chris Lattner12d9ff62007-07-16 00:14:47 +00001705 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001706
Reid Spencer5f016e22007-07-11 17:01:13 +00001707 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00001708 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00001709 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00001710 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00001711 Expr *BaseExpr, *IndexExpr;
1712 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00001713 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1714 BaseExpr = LHSExp;
1715 IndexExpr = RHSExp;
1716 ResultType = Context.DependentTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00001717 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00001718 BaseExpr = LHSExp;
1719 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001720 ResultType = PTy->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00001721 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00001722 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00001723 BaseExpr = RHSExp;
1724 IndexExpr = LHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00001725 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00001726 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00001727 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00001728 BaseExpr = LHSExp;
1729 IndexExpr = RHSExp;
1730 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00001731 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00001732 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00001733 // Handle the uncommon case of "123[Ptr]".
1734 BaseExpr = RHSExp;
1735 IndexExpr = LHSExp;
1736 ResultType = PTy->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00001737 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattnerc8629632007-07-31 19:29:30 +00001738 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00001739 IndexExpr = RHSExp;
Nate Begeman334a8022009-01-18 00:45:31 +00001740
Chris Lattner12d9ff62007-07-16 00:14:47 +00001741 // FIXME: need to deal with const...
1742 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001743 } else if (LHSTy->isArrayType()) {
1744 // If we see an array that wasn't promoted by
1745 // DefaultFunctionArrayConversion, it must be an array that
1746 // wasn't promoted because of the C90 rule that doesn't
1747 // allow promoting non-lvalue arrays. Warn, then
1748 // force the promotion here.
1749 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1750 LHSExp->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00001751 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
1752 CastExpr::CK_ArrayToPointerDecay);
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001753 LHSTy = LHSExp->getType();
1754
1755 BaseExpr = LHSExp;
1756 IndexExpr = RHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00001757 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001758 } else if (RHSTy->isArrayType()) {
1759 // Same as previous, except for 123[f().a] case
1760 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1761 RHSExp->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00001762 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
1763 CastExpr::CK_ArrayToPointerDecay);
Eli Friedman7c32f8e2009-04-25 23:46:54 +00001764 RHSTy = RHSExp->getType();
1765
1766 BaseExpr = RHSExp;
1767 IndexExpr = LHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00001768 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00001769 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00001770 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1771 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00001772 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001773 // C99 6.5.2.1p1
Nate Begeman2ef13e52009-08-10 23:49:36 +00001774 if (!(IndexExpr->getType()->isIntegerType() &&
1775 IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00001776 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1777 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00001778
Daniel Dunbar7e88a602009-09-17 06:31:17 +00001779 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinig0f9a5b52009-09-14 20:14:57 +00001780 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
1781 && !IndexExpr->isTypeDependent())
Sam Weinig76e2b712009-09-14 01:58:58 +00001782 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
1783
Douglas Gregore7450f52009-03-24 19:52:54 +00001784 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump1eb44332009-09-09 15:08:12 +00001785 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1786 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregore7450f52009-03-24 19:52:54 +00001787 // incomplete types are not object types.
1788 if (ResultType->isFunctionType()) {
1789 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1790 << ResultType << BaseExpr->getSourceRange();
1791 return ExprError();
1792 }
Mike Stump1eb44332009-09-09 15:08:12 +00001793
Douglas Gregore7450f52009-03-24 19:52:54 +00001794 if (!ResultType->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00001795 RequireCompleteType(LLoc, ResultType,
Anders Carlssonb7906612009-08-26 23:45:07 +00001796 PDiag(diag::err_subscript_incomplete_type)
1797 << BaseExpr->getSourceRange()))
Douglas Gregore7450f52009-03-24 19:52:54 +00001798 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00001799
Chris Lattner1efaa952009-04-24 00:30:45 +00001800 // Diagnose bad cases where we step over interface counts.
1801 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1802 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1803 << ResultType << BaseExpr->getSourceRange();
1804 return ExprError();
1805 }
Mike Stump1eb44332009-09-09 15:08:12 +00001806
Sebastian Redl0eb23302009-01-19 00:08:26 +00001807 Base.release();
1808 Idx.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001809 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Naroff6ece14c2009-01-21 00:14:39 +00001810 ResultType, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00001811}
1812
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001813QualType Sema::
Nate Begeman213541a2008-04-18 23:10:10 +00001814CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001815 const IdentifierInfo *CompName,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001816 SourceLocation CompLoc) {
Daniel Dunbar2ad32892009-10-18 02:09:38 +00001817 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
1818 // see FIXME there.
1819 //
1820 // FIXME: This logic can be greatly simplified by splitting it along
1821 // halving/not halving and reworking the component checking.
John McCall183700f2009-09-21 23:43:11 +00001822 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begeman8a997642008-05-09 06:41:27 +00001823
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001824 // The vector accessor can't exceed the number of elements.
Daniel Dunbare013d682009-10-18 20:26:12 +00001825 const char *compStr = CompName->getNameStart();
Nate Begeman353417a2009-01-18 01:47:54 +00001826
Mike Stumpeed9cac2009-02-19 03:04:26 +00001827 // This flag determines whether or not the component is one of the four
Nate Begeman353417a2009-01-18 01:47:54 +00001828 // special names that indicate a subset of exactly half the elements are
1829 // to be selected.
1830 bool HalvingSwizzle = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00001831
Nate Begeman353417a2009-01-18 01:47:54 +00001832 // This flag determines whether or not CompName has an 's' char prefix,
1833 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman131f4652009-06-25 21:06:09 +00001834 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begeman8a997642008-05-09 06:41:27 +00001835
1836 // Check that we've found one of the special components, or that the component
1837 // names must come from the same set.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001838 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman353417a2009-01-18 01:47:54 +00001839 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1840 HalvingSwizzle = true;
Nate Begeman8a997642008-05-09 06:41:27 +00001841 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001842 do
1843 compStr++;
1844 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begeman353417a2009-01-18 01:47:54 +00001845 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner88dca042007-08-02 22:33:49 +00001846 do
1847 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001848 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner88dca042007-08-02 22:33:49 +00001849 }
Nate Begeman353417a2009-01-18 01:47:54 +00001850
Mike Stumpeed9cac2009-02-19 03:04:26 +00001851 if (!HalvingSwizzle && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001852 // We didn't get to the end of the string. This means the component names
1853 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001854 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1855 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001856 return QualType();
1857 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001858
Nate Begeman353417a2009-01-18 01:47:54 +00001859 // Ensure no component accessor exceeds the width of the vector type it
1860 // operates on.
1861 if (!HalvingSwizzle) {
Daniel Dunbare013d682009-10-18 20:26:12 +00001862 compStr = CompName->getNameStart();
Nate Begeman353417a2009-01-18 01:47:54 +00001863
1864 if (HexSwizzle)
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001865 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00001866
1867 while (*compStr) {
1868 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1869 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1870 << baseType << SourceRange(CompLoc);
1871 return QualType();
1872 }
1873 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001874 }
Nate Begeman8a997642008-05-09 06:41:27 +00001875
Nate Begeman353417a2009-01-18 01:47:54 +00001876 // If this is a halving swizzle, verify that the base type has an even
1877 // number of elements.
1878 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00001879 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattnerd1625842008-11-24 06:25:27 +00001880 << baseType << SourceRange(CompLoc);
Nate Begeman8a997642008-05-09 06:41:27 +00001881 return QualType();
1882 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00001883
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001884 // The component accessor looks fine - now we need to compute the actual type.
Mike Stumpeed9cac2009-02-19 03:04:26 +00001885 // The vector type is implied by the component accessor. For example,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001886 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman353417a2009-01-18 01:47:54 +00001887 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00001888 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman353417a2009-01-18 01:47:54 +00001889 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
Anders Carlsson8f28f992009-08-26 18:25:21 +00001890 : CompName->getLength();
Nate Begeman353417a2009-01-18 01:47:54 +00001891 if (HexSwizzle)
1892 CompSize--;
1893
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001894 if (CompSize == 1)
1895 return vecType->getElementType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00001896
Nate Begeman213541a2008-04-18 23:10:10 +00001897 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stumpeed9cac2009-02-19 03:04:26 +00001898 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00001899 // diagostics look bad. We want extended vector types to appear built-in.
1900 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1901 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1902 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00001903 }
1904 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00001905}
1906
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001907static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001908 IdentifierInfo *Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001909 const Selector &Sel,
1910 ASTContext &Context) {
Mike Stump1eb44332009-09-09 15:08:12 +00001911
Anders Carlsson8f28f992009-08-26 18:25:21 +00001912 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001913 return PD;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001914 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001915 return OMD;
Mike Stump1eb44332009-09-09 15:08:12 +00001916
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001917 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
1918 E = PDecl->protocol_end(); I != E; ++I) {
Mike Stump1eb44332009-09-09 15:08:12 +00001919 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001920 Context))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001921 return D;
1922 }
1923 return 0;
1924}
1925
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001926static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Anders Carlsson8f28f992009-08-26 18:25:21 +00001927 IdentifierInfo *Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00001928 const Selector &Sel,
1929 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001930 // Check protocols on qualified interfaces.
1931 Decl *GDecl = 0;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001932 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001933 E = QIdTy->qual_end(); I != E; ++I) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00001934 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001935 GDecl = PD;
1936 break;
1937 }
1938 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001939 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001940 GDecl = OMD;
1941 break;
1942 }
1943 }
1944 if (!GDecl) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00001945 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001946 E = QIdTy->qual_end(); I != E; ++I) {
1947 // Search in the protocol-qualifier list of current protocol.
Douglas Gregor6ab35242009-04-09 21:40:53 +00001948 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00001949 if (GDecl)
1950 return GDecl;
1951 }
1952 }
1953 return GDecl;
1954}
Chris Lattner76a642f2009-02-15 22:43:40 +00001955
Mike Stump1eb44332009-09-09 15:08:12 +00001956Action::OwningExprResult
Anders Carlsson8f28f992009-08-26 18:25:21 +00001957Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
Sebastian Redl0eb23302009-01-19 00:08:26 +00001958 tok::TokenKind OpKind, SourceLocation MemberLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00001959 DeclarationName MemberName,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00001960 bool HasExplicitTemplateArgs,
1961 SourceLocation LAngleLoc,
John McCall833ca992009-10-29 08:12:44 +00001962 const TemplateArgumentLoc *ExplicitTemplateArgs,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00001963 unsigned NumExplicitTemplateArgs,
1964 SourceLocation RAngleLoc,
Douglas Gregorc68afe22009-09-03 21:38:09 +00001965 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS,
1966 NamedDecl *FirstQualifierInScope) {
Douglas Gregorfe85ced2009-08-06 03:17:00 +00001967 if (SS && SS->isInvalid())
1968 return ExprError();
1969
Nate Begeman2ef13e52009-08-10 23:49:36 +00001970 // Since this might be a postfix expression, get rid of ParenListExprs.
1971 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1972
Anders Carlssonf1b1d592009-05-01 19:30:39 +00001973 Expr *BaseExpr = Base.takeAs<Expr>();
Douglas Gregora71d8192009-09-04 17:36:40 +00001974 assert(BaseExpr && "no base expression");
Mike Stump1eb44332009-09-09 15:08:12 +00001975
Steve Naroff3cc4af82007-12-16 21:42:28 +00001976 // Perform default conversions.
1977 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redl0eb23302009-01-19 00:08:26 +00001978
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001979 QualType BaseType = BaseExpr->getType();
David Chisnall0f436562009-08-17 16:35:33 +00001980 // If this is an Objective-C pseudo-builtin and a definition is provided then
1981 // use that.
1982 if (BaseType->isObjCIdType()) {
1983 // We have an 'id' type. Rather than fall through, we check if this
1984 // is a reference to 'isa'.
1985 if (BaseType != Context.ObjCIdRedefinitionType) {
1986 BaseType = Context.ObjCIdRedefinitionType;
Eli Friedman73c39ab2009-10-20 08:27:19 +00001987 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
David Chisnall0f436562009-08-17 16:35:33 +00001988 }
David Chisnall0f436562009-08-17 16:35:33 +00001989 }
Steve Naroffdfa6aae2007-07-26 03:11:44 +00001990 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redl0eb23302009-01-19 00:08:26 +00001991
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00001992 // Handle properties on ObjC 'Class' types.
1993 if (OpKind == tok::period && BaseType->isObjCClassType()) {
1994 // Also must look for a getter name which uses property syntax.
1995 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
1996 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
1997 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
1998 ObjCInterfaceDecl *IFace = MD->getClassInterface();
1999 ObjCMethodDecl *Getter;
2000 // FIXME: need to also look locally in the implementation.
2001 if ((Getter = IFace->lookupClassMethod(Sel))) {
2002 // Check the use of this method.
2003 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2004 return ExprError();
2005 }
2006 // If we found a getter then this may be a valid dot-reference, we
2007 // will look for the matching setter, in case it is needed.
2008 Selector SetterSel =
2009 SelectorTable::constructSetterName(PP.getIdentifierTable(),
2010 PP.getSelectorTable(), Member);
2011 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
2012 if (!Setter) {
2013 // If this reference is in an @implementation, also check for 'private'
2014 // methods.
Steve Naroffd789d3d2009-10-01 23:46:04 +00002015 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002016 }
2017 // Look through local category implementations associated with the class.
2018 if (!Setter)
2019 Setter = IFace->getCategoryClassMethod(SetterSel);
2020
2021 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2022 return ExprError();
2023
2024 if (Getter || Setter) {
2025 QualType PType;
2026
2027 if (Getter)
2028 PType = Getter->getResultType();
2029 else
2030 // Get the expression type from Setter's incoming parameter.
2031 PType = (*(Setter->param_end() -1))->getType();
2032 // FIXME: we must check that the setter has property type.
2033 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter,
2034 PType,
2035 Setter, MemberLoc, BaseExpr));
2036 }
2037 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
2038 << MemberName << BaseType);
2039 }
2040 }
2041
2042 if (BaseType->isObjCClassType() &&
2043 BaseType != Context.ObjCClassRedefinitionType) {
2044 BaseType = Context.ObjCClassRedefinitionType;
Eli Friedman73c39ab2009-10-20 08:27:19 +00002045 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002046 }
2047
Chris Lattner68a057b2008-07-21 04:36:39 +00002048 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
2049 // must have pointer type, and the accessed type is the pointee.
Reid Spencer5f016e22007-07-11 17:01:13 +00002050 if (OpKind == tok::arrow) {
Douglas Gregorc68afe22009-09-03 21:38:09 +00002051 if (BaseType->isDependentType()) {
2052 NestedNameSpecifier *Qualifier = 0;
2053 if (SS) {
2054 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2055 if (!FirstQualifierInScope)
2056 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2057 }
Mike Stump1eb44332009-09-09 15:08:12 +00002058
2059 return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true,
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002060 OpLoc, Qualifier,
Douglas Gregora38c6872009-09-03 16:14:30 +00002061 SS? SS->getRange() : SourceRange(),
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002062 FirstQualifierInScope,
2063 MemberName,
2064 MemberLoc,
2065 HasExplicitTemplateArgs,
2066 LAngleLoc,
2067 ExplicitTemplateArgs,
2068 NumExplicitTemplateArgs,
2069 RAngleLoc));
Douglas Gregorc68afe22009-09-03 21:38:09 +00002070 }
Ted Kremenek6217b802009-07-29 21:53:49 +00002071 else if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002072 BaseType = PT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00002073 else if (BaseType->isObjCObjectPointerType())
2074 ;
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002075 else
Sebastian Redl0eb23302009-01-19 00:08:26 +00002076 return ExprError(Diag(MemberLoc,
2077 diag::err_typecheck_member_reference_arrow)
2078 << BaseType << BaseExpr->getSourceRange());
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00002079 } else if (BaseType->isDependentType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00002080 // Require that the base type isn't a pointer type
Anders Carlsson4ef27702009-05-16 20:31:20 +00002081 // (so we'll report an error for)
2082 // T* t;
2083 // t.f;
Mike Stump1eb44332009-09-09 15:08:12 +00002084 //
Anders Carlsson4ef27702009-05-16 20:31:20 +00002085 // In Obj-C++, however, the above expression is valid, since it could be
2086 // accessing the 'f' property if T is an Obj-C interface. The extra check
2087 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenek6217b802009-07-29 21:53:49 +00002088 const PointerType *PT = BaseType->getAs<PointerType>();
Anders Carlsson4ef27702009-05-16 20:31:20 +00002089
Mike Stump1eb44332009-09-09 15:08:12 +00002090 if (!PT || (getLangOptions().ObjC1 &&
Douglas Gregorc68afe22009-09-03 21:38:09 +00002091 !PT->getPointeeType()->isRecordType())) {
2092 NestedNameSpecifier *Qualifier = 0;
2093 if (SS) {
2094 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2095 if (!FirstQualifierInScope)
2096 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2097 }
Mike Stump1eb44332009-09-09 15:08:12 +00002098
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002099 return Owned(CXXUnresolvedMemberExpr::Create(Context,
Mike Stump1eb44332009-09-09 15:08:12 +00002100 BaseExpr, false,
2101 OpLoc,
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002102 Qualifier,
Douglas Gregora38c6872009-09-03 16:14:30 +00002103 SS? SS->getRange() : SourceRange(),
Douglas Gregor3b6afbb2009-09-09 00:23:06 +00002104 FirstQualifierInScope,
2105 MemberName,
2106 MemberLoc,
2107 HasExplicitTemplateArgs,
2108 LAngleLoc,
2109 ExplicitTemplateArgs,
2110 NumExplicitTemplateArgs,
2111 RAngleLoc));
Douglas Gregorc68afe22009-09-03 21:38:09 +00002112 }
Anders Carlsson4ef27702009-05-16 20:31:20 +00002113 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002114
Chris Lattner68a057b2008-07-21 04:36:39 +00002115 // Handle field access to simple records. This also handles access to fields
2116 // of the ObjC 'id' struct.
Ted Kremenek6217b802009-07-29 21:53:49 +00002117 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002118 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregor86447ec2009-03-09 16:13:40 +00002119 if (RequireCompleteType(OpLoc, BaseType,
Anders Carlssonb7906612009-08-26 23:45:07 +00002120 PDiag(diag::err_typecheck_incomplete_tag)
2121 << BaseExpr->getSourceRange()))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00002122 return ExprError();
2123
Douglas Gregorfe85ced2009-08-06 03:17:00 +00002124 DeclContext *DC = RDecl;
2125 if (SS && SS->isSet()) {
2126 // If the member name was a qualified-id, look into the
2127 // nested-name-specifier.
2128 DC = computeDeclContext(*SS, false);
Douglas Gregor8d1c9ae2009-10-17 22:37:54 +00002129
2130 if (!isa<TypeDecl>(DC)) {
2131 Diag(MemberLoc, diag::err_qualified_member_nonclass)
2132 << DC << SS->getRange();
2133 return ExprError();
2134 }
Mike Stump1eb44332009-09-09 15:08:12 +00002135
2136 // FIXME: If DC is not computable, we should build a
Douglas Gregorfe85ced2009-08-06 03:17:00 +00002137 // CXXUnresolvedMemberExpr.
2138 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2139 }
2140
Steve Naroffdfa6aae2007-07-26 03:11:44 +00002141 // The record definition is complete, now make sure the member is valid.
John McCallf36e02d2009-10-09 21:13:30 +00002142 LookupResult Result;
2143 LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false);
Douglas Gregor7176fff2009-01-15 00:26:24 +00002144
John McCallf36e02d2009-10-09 21:13:30 +00002145 if (Result.empty())
Douglas Gregor3f093272009-10-13 21:16:44 +00002146 return ExprError(Diag(MemberLoc, diag::err_no_member)
2147 << MemberName << DC << BaseExpr->getSourceRange());
Chris Lattnera3d25242009-03-31 08:18:48 +00002148 if (Result.isAmbiguous()) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002149 DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc,
2150 BaseExpr->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00002151 return ExprError();
Chris Lattnera3d25242009-03-31 08:18:48 +00002152 }
Mike Stump1eb44332009-09-09 15:08:12 +00002153
John McCallf36e02d2009-10-09 21:13:30 +00002154 NamedDecl *MemberDecl = Result.getAsSingleDecl(Context);
2155
Douglas Gregora38c6872009-09-03 16:14:30 +00002156 if (SS && SS->isSet()) {
John McCallf36e02d2009-10-09 21:13:30 +00002157 TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext());
Mike Stump1eb44332009-09-09 15:08:12 +00002158 QualType BaseTypeCanon
Douglas Gregora38c6872009-09-03 16:14:30 +00002159 = Context.getCanonicalType(BaseType).getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +00002160 QualType MemberTypeCanon
John McCallf36e02d2009-10-09 21:13:30 +00002161 = Context.getCanonicalType(Context.getTypeDeclType(TyD));
Mike Stump1eb44332009-09-09 15:08:12 +00002162
Douglas Gregora38c6872009-09-03 16:14:30 +00002163 if (BaseTypeCanon != MemberTypeCanon &&
2164 !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon))
2165 return ExprError(Diag(SS->getBeginLoc(),
2166 diag::err_not_direct_base_or_virtual)
2167 << MemberTypeCanon << BaseTypeCanon);
2168 }
Mike Stump1eb44332009-09-09 15:08:12 +00002169
Chris Lattner56cd21b2009-02-13 22:08:30 +00002170 // If the decl being referenced had an error, return an error for this
2171 // sub-expr without emitting another error, in order to avoid cascading
2172 // error cases.
2173 if (MemberDecl->isInvalidDecl())
2174 return ExprError();
Mike Stumpeed9cac2009-02-19 03:04:26 +00002175
Anders Carlsson0f728562009-09-10 20:48:14 +00002176 bool ShouldCheckUse = true;
2177 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
2178 // Don't diagnose the use of a virtual member function unless it's
2179 // explicitly qualified.
2180 if (MD->isVirtual() && (!SS || !SS->isSet()))
2181 ShouldCheckUse = false;
2182 }
Daniel Dunbar7e88a602009-09-17 06:31:17 +00002183
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002184 // Check the use of this field
Anders Carlsson0f728562009-09-10 20:48:14 +00002185 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002186 return ExprError();
Chris Lattner56cd21b2009-02-13 22:08:30 +00002187
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002188 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002189 // We may have found a field within an anonymous union or struct
2190 // (C++ [class.union]).
2191 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002192 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redl0eb23302009-01-19 00:08:26 +00002193 BaseExpr, OpLoc);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002194
Douglas Gregor86f19402008-12-20 23:49:58 +00002195 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregor3fc749d2008-12-23 00:26:44 +00002196 QualType MemberType = FD->getType();
Ted Kremenek6217b802009-07-29 21:53:49 +00002197 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
Douglas Gregor86f19402008-12-20 23:49:58 +00002198 MemberType = Ref->getPointeeType();
2199 else {
John McCall0953e762009-09-24 19:53:00 +00002200 Qualifiers BaseQuals = BaseType.getQualifiers();
2201 BaseQuals.removeObjCGCAttr();
2202 if (FD->isMutable()) BaseQuals.removeConst();
2203
2204 Qualifiers MemberQuals
2205 = Context.getCanonicalType(MemberType).getQualifiers();
2206
2207 Qualifiers Combined = BaseQuals + MemberQuals;
2208 if (Combined != MemberQuals)
2209 MemberType = Context.getQualifiedType(MemberType, Combined);
Douglas Gregor86f19402008-12-20 23:49:58 +00002210 }
Eli Friedman51019072008-02-06 22:48:16 +00002211
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002212 MarkDeclarationReferenced(MemberLoc, FD);
Fariborz Jahanianf3e53d32009-07-29 19:40:11 +00002213 if (PerformObjectMemberConversion(BaseExpr, FD))
2214 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002215 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002216 FD, MemberLoc, MemberType));
Chris Lattnera3d25242009-03-31 08:18:48 +00002217 }
Mike Stump1eb44332009-09-09 15:08:12 +00002218
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002219 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2220 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002221 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2222 Var, MemberLoc,
2223 Var->getType().getNonReferenceType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002224 }
2225 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2226 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002227 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2228 MemberFn, MemberLoc,
2229 MemberFn->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002230 }
Mike Stump1eb44332009-09-09 15:08:12 +00002231 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor6b906862009-08-21 00:16:32 +00002232 = dyn_cast<FunctionTemplateDecl>(MemberDecl)) {
2233 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump1eb44332009-09-09 15:08:12 +00002234
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002235 if (HasExplicitTemplateArgs)
Mike Stump1eb44332009-09-09 15:08:12 +00002236 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2237 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002238 SS? SS->getRange() : SourceRange(),
Mike Stump1eb44332009-09-09 15:08:12 +00002239 FunTmpl, MemberLoc, true,
2240 LAngleLoc, ExplicitTemplateArgs,
2241 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002242 Context.OverloadTy));
Mike Stump1eb44332009-09-09 15:08:12 +00002243
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002244 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2245 FunTmpl, MemberLoc,
2246 Context.OverloadTy));
Douglas Gregor6b906862009-08-21 00:16:32 +00002247 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002248 if (OverloadedFunctionDecl *Ovl
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002249 = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) {
2250 if (HasExplicitTemplateArgs)
Mike Stump1eb44332009-09-09 15:08:12 +00002251 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2252 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002253 SS? SS->getRange() : SourceRange(),
Mike Stump1eb44332009-09-09 15:08:12 +00002254 Ovl, MemberLoc, true,
2255 LAngleLoc, ExplicitTemplateArgs,
2256 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002257 Context.OverloadTy));
2258
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002259 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2260 Ovl, MemberLoc, Context.OverloadTy));
Douglas Gregorc4bf26f2009-09-01 00:37:14 +00002261 }
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002262 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2263 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002264 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2265 Enum, MemberLoc, Enum->getType()));
Douglas Gregord7f37bf2009-06-22 23:06:13 +00002266 }
Chris Lattnera3d25242009-03-31 08:18:48 +00002267 if (isa<TypeDecl>(MemberDecl))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002268 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002269 << MemberName << int(OpKind == tok::arrow));
Eli Friedman51019072008-02-06 22:48:16 +00002270
Douglas Gregor86f19402008-12-20 23:49:58 +00002271 // We found a declaration kind that we didn't expect. This is a
2272 // generic error message that tells the user that she can't refer
2273 // to this member with '.' or '->'.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002274 return ExprError(Diag(MemberLoc,
2275 diag::err_typecheck_member_reference_unknown)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002276 << MemberName << int(OpKind == tok::arrow));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002277 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002278
Douglas Gregora71d8192009-09-04 17:36:40 +00002279 // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring
2280 // into a record type was handled above, any destructor we see here is a
2281 // pseudo-destructor.
2282 if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) {
2283 // C++ [expr.pseudo]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00002284 // The left hand side of the dot operator shall be of scalar type. The
2285 // left hand side of the arrow operator shall be of pointer to scalar
Douglas Gregora71d8192009-09-04 17:36:40 +00002286 // type.
2287 if (!BaseType->isScalarType())
2288 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2289 << BaseType << BaseExpr->getSourceRange());
Mike Stump1eb44332009-09-09 15:08:12 +00002290
Douglas Gregora71d8192009-09-04 17:36:40 +00002291 // [...] The type designated by the pseudo-destructor-name shall be the
2292 // same as the object type.
2293 if (!MemberName.getCXXNameType()->isDependentType() &&
2294 !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType()))
2295 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch)
2296 << BaseType << MemberName.getCXXNameType()
2297 << BaseExpr->getSourceRange() << SourceRange(MemberLoc));
Mike Stump1eb44332009-09-09 15:08:12 +00002298
2299 // [...] Furthermore, the two type-names in a pseudo-destructor-name of
Douglas Gregora71d8192009-09-04 17:36:40 +00002300 // the form
2301 //
Mike Stump1eb44332009-09-09 15:08:12 +00002302 // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name
2303 //
Douglas Gregora71d8192009-09-04 17:36:40 +00002304 // shall designate the same scalar type.
2305 //
2306 // FIXME: DPG can't see any way to trigger this particular clause, so it
2307 // isn't checked here.
Mike Stump1eb44332009-09-09 15:08:12 +00002308
Douglas Gregora71d8192009-09-04 17:36:40 +00002309 // FIXME: We've lost the precise spelling of the type by going through
2310 // DeclarationName. Can we do better?
2311 return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr,
Mike Stump1eb44332009-09-09 15:08:12 +00002312 OpKind == tok::arrow,
Douglas Gregora71d8192009-09-04 17:36:40 +00002313 OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00002314 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregora71d8192009-09-04 17:36:40 +00002315 SS? SS->getRange() : SourceRange(),
2316 MemberName.getCXXNameType(),
2317 MemberLoc));
2318 }
Mike Stump1eb44332009-09-09 15:08:12 +00002319
Chris Lattnera38e6b12008-07-21 04:59:05 +00002320 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2321 // (*Obj).ivar.
Steve Naroff14108da2009-07-10 23:34:53 +00002322 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2323 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
John McCall183700f2009-09-21 23:43:11 +00002324 const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>();
Mike Stump1eb44332009-09-09 15:08:12 +00002325 const ObjCInterfaceType *IFaceT =
John McCall183700f2009-09-21 23:43:11 +00002326 OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>();
Steve Naroffc70e8d92009-07-16 00:25:06 +00002327 if (IFaceT) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002328 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2329
Steve Naroffc70e8d92009-07-16 00:25:06 +00002330 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2331 ObjCInterfaceDecl *ClassDeclared;
Anders Carlsson8f28f992009-08-26 18:25:21 +00002332 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
Mike Stump1eb44332009-09-09 15:08:12 +00002333
Steve Naroffc70e8d92009-07-16 00:25:06 +00002334 if (IV) {
2335 // If the decl being referenced had an error, return an error for this
2336 // sub-expr without emitting another error, in order to avoid cascading
2337 // error cases.
2338 if (IV->isInvalidDecl())
2339 return ExprError();
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002340
Steve Naroffc70e8d92009-07-16 00:25:06 +00002341 // Check whether we can reference this field.
2342 if (DiagnoseUseOfDecl(IV, MemberLoc))
2343 return ExprError();
2344 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2345 IV->getAccessControl() != ObjCIvarDecl::Package) {
2346 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2347 if (ObjCMethodDecl *MD = getCurMethodDecl())
2348 ClassOfMethodDecl = MD->getClassInterface();
2349 else if (ObjCImpDecl && getCurFunctionDecl()) {
2350 // Case of a c-function declared inside an objc implementation.
2351 // FIXME: For a c-style function nested inside an objc implementation
2352 // class, there is no implementation context available, so we pass
2353 // down the context as argument to this routine. Ideally, this context
2354 // need be passed down in the AST node and somehow calculated from the
2355 // AST for a function decl.
2356 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Mike Stump1eb44332009-09-09 15:08:12 +00002357 if (ObjCImplementationDecl *IMPD =
Steve Naroffc70e8d92009-07-16 00:25:06 +00002358 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2359 ClassOfMethodDecl = IMPD->getClassInterface();
2360 else if (ObjCCategoryImplDecl* CatImplClass =
2361 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2362 ClassOfMethodDecl = CatImplClass->getClassInterface();
2363 }
Mike Stump1eb44332009-09-09 15:08:12 +00002364
2365 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2366 if (ClassDeclared != IDecl ||
Steve Naroffc70e8d92009-07-16 00:25:06 +00002367 ClassOfMethodDecl != ClassDeclared)
Mike Stump1eb44332009-09-09 15:08:12 +00002368 Diag(MemberLoc, diag::error_private_ivar_access)
Steve Naroffc70e8d92009-07-16 00:25:06 +00002369 << IV->getDeclName();
Mike Stumpac5fc7c2009-08-04 21:02:39 +00002370 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2371 // @protected
Mike Stump1eb44332009-09-09 15:08:12 +00002372 Diag(MemberLoc, diag::error_protected_ivar_access)
Steve Naroffc70e8d92009-07-16 00:25:06 +00002373 << IV->getDeclName();
Steve Naroffb06d8752009-03-04 18:34:24 +00002374 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002375
2376 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2377 MemberLoc, BaseExpr,
2378 OpKind == tok::arrow));
Fariborz Jahanian935fd762009-03-03 01:21:12 +00002379 }
Steve Naroffc70e8d92009-07-16 00:25:06 +00002380 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002381 << IDecl->getDeclName() << MemberName
Steve Naroffc70e8d92009-07-16 00:25:06 +00002382 << BaseExpr->getSourceRange());
Fariborz Jahanianaaa63a72008-12-13 22:20:28 +00002383 }
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002384 }
Steve Naroffde2e22d2009-07-15 18:40:39 +00002385 // Handle properties on 'id' and qualified "id".
Mike Stump1eb44332009-09-09 15:08:12 +00002386 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
Steve Naroffde2e22d2009-07-15 18:40:39 +00002387 BaseType->isObjCQualifiedIdType())) {
John McCall183700f2009-09-21 23:43:11 +00002388 const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002389 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002390
Steve Naroff14108da2009-07-10 23:34:53 +00002391 // Check protocols on qualified interfaces.
Anders Carlsson8f28f992009-08-26 18:25:21 +00002392 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Steve Naroff14108da2009-07-10 23:34:53 +00002393 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2394 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2395 // Check the use of this declaration
2396 if (DiagnoseUseOfDecl(PD, MemberLoc))
2397 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002398
Steve Naroff14108da2009-07-10 23:34:53 +00002399 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2400 MemberLoc, BaseExpr));
2401 }
2402 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2403 // Check the use of this method.
2404 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2405 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002406
Steve Naroff14108da2009-07-10 23:34:53 +00002407 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Mike Stump1eb44332009-09-09 15:08:12 +00002408 OMD->getResultType(),
2409 OMD, OpLoc, MemberLoc,
Steve Naroff14108da2009-07-10 23:34:53 +00002410 NULL, 0));
2411 }
2412 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002413
Steve Naroff14108da2009-07-10 23:34:53 +00002414 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002415 << MemberName << BaseType);
Steve Naroff14108da2009-07-10 23:34:53 +00002416 }
Chris Lattnera38e6b12008-07-21 04:59:05 +00002417 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2418 // pointer to a (potentially qualified) interface type.
Steve Naroff14108da2009-07-10 23:34:53 +00002419 const ObjCObjectPointerType *OPT;
Mike Stump1eb44332009-09-09 15:08:12 +00002420 if (OpKind == tok::period &&
Steve Naroff14108da2009-07-10 23:34:53 +00002421 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2422 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2423 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002424 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump1eb44332009-09-09 15:08:12 +00002425
Daniel Dunbar2307d312008-09-03 01:05:41 +00002426 // Search for a declared property first.
Anders Carlsson8f28f992009-08-26 18:25:21 +00002427 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002428 // Check whether we can reference this property.
2429 if (DiagnoseUseOfDecl(PD, MemberLoc))
2430 return ExprError();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002431 QualType ResTy = PD->getType();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002432 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002433 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianc001e892009-05-08 20:20:55 +00002434 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2435 ResTy = Getter->getResultType();
Fariborz Jahanian4c2743f2009-05-08 19:36:34 +00002436 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner7eba82e2009-02-16 18:35:08 +00002437 MemberLoc, BaseExpr));
2438 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002439 // Check protocols on qualified interfaces.
Steve Naroff67ef8ea2009-07-20 17:56:53 +00002440 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2441 E = OPT->qual_end(); I != E; ++I)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002442 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002443 // Check whether we can reference this property.
2444 if (DiagnoseUseOfDecl(PD, MemberLoc))
2445 return ExprError();
Chris Lattner7eba82e2009-02-16 18:35:08 +00002446
Steve Naroff6ece14c2009-01-21 00:14:39 +00002447 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner7eba82e2009-02-16 18:35:08 +00002448 MemberLoc, BaseExpr));
2449 }
Steve Naroff14108da2009-07-10 23:34:53 +00002450 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2451 E = OPT->qual_end(); I != E; ++I)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002452 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Steve Naroff14108da2009-07-10 23:34:53 +00002453 // Check whether we can reference this property.
2454 if (DiagnoseUseOfDecl(PD, MemberLoc))
2455 return ExprError();
Daniel Dunbar2307d312008-09-03 01:05:41 +00002456
Steve Naroff14108da2009-07-10 23:34:53 +00002457 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2458 MemberLoc, BaseExpr));
2459 }
Daniel Dunbar2307d312008-09-03 01:05:41 +00002460 // If that failed, look for an "implicit" property by seeing if the nullary
2461 // selector is implemented.
2462
2463 // FIXME: The logic for looking up nullary and unary selectors should be
2464 // shared with the code in ActOnInstanceMessage.
2465
Anders Carlsson8f28f992009-08-26 18:25:21 +00002466 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002467 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002468
Daniel Dunbar2307d312008-09-03 01:05:41 +00002469 // If this reference is in an @implementation, check for 'private' methods.
2470 if (!Getter)
Steve Naroffd789d3d2009-10-01 23:46:04 +00002471 Getter = IFace->lookupPrivateInstanceMethod(Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002472
Steve Naroff7692ed62008-10-22 19:16:27 +00002473 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002474 if (!Getter)
2475 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbar2307d312008-09-03 01:05:41 +00002476 if (Getter) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002477 // Check if we can reference this property.
2478 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2479 return ExprError();
Steve Naroff1ca66942009-03-11 13:48:17 +00002480 }
2481 // If we found a getter then this may be a valid dot-reference, we
2482 // will look for the matching setter, in case it is needed.
Mike Stump1eb44332009-09-09 15:08:12 +00002483 Selector SetterSel =
2484 SelectorTable::constructSetterName(PP.getIdentifierTable(),
Anders Carlsson8f28f992009-08-26 18:25:21 +00002485 PP.getSelectorTable(), Member);
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002486 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002487 if (!Setter) {
2488 // If this reference is in an @implementation, also check for 'private'
2489 // methods.
Steve Naroffd789d3d2009-10-01 23:46:04 +00002490 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Steve Naroff1ca66942009-03-11 13:48:17 +00002491 }
2492 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1cb35dd2009-07-21 00:06:20 +00002493 if (!Setter)
2494 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redl0eb23302009-01-19 00:08:26 +00002495
Steve Naroff1ca66942009-03-11 13:48:17 +00002496 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2497 return ExprError();
2498
2499 if (Getter || Setter) {
2500 QualType PType;
2501
2502 if (Getter)
2503 PType = Getter->getResultType();
Fariborz Jahanian154440e2009-08-18 20:50:23 +00002504 else
2505 // Get the expression type from Setter's incoming parameter.
2506 PType = (*(Setter->param_end() -1))->getType();
Steve Naroff1ca66942009-03-11 13:48:17 +00002507 // FIXME: we must check that the setter has property type.
Fariborz Jahanian09105f52009-08-20 17:02:02 +00002508 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
Steve Naroff1ca66942009-03-11 13:48:17 +00002509 Setter, MemberLoc, BaseExpr));
2510 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002511 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlsson8f28f992009-08-26 18:25:21 +00002512 << MemberName << BaseType);
Fariborz Jahanian232220c2007-11-12 22:29:28 +00002513 }
Mike Stump1eb44332009-09-09 15:08:12 +00002514
Steve Narofff242b1b2009-07-24 17:54:45 +00002515 // Handle the following exceptional case (*Obj).isa.
Mike Stump1eb44332009-09-09 15:08:12 +00002516 if (OpKind == tok::period &&
Steve Narofff242b1b2009-07-24 17:54:45 +00002517 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Anders Carlsson8f28f992009-08-26 18:25:21 +00002518 MemberName.getAsIdentifierInfo()->isStr("isa"))
Steve Narofff242b1b2009-07-24 17:54:45 +00002519 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
2520 Context.getObjCIdType()));
2521
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002522 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner73525de2009-02-16 21:11:58 +00002523 if (BaseType->isExtVectorType()) {
Anders Carlsson8f28f992009-08-26 18:25:21 +00002524 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002525 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2526 if (ret.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00002527 return ExprError();
Anders Carlsson8f28f992009-08-26 18:25:21 +00002528 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002529 MemberLoc));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00002530 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00002531
Douglas Gregor214f31a2009-03-27 06:00:30 +00002532 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2533 << BaseType << BaseExpr->getSourceRange();
2534
2535 // If the user is trying to apply -> or . to a function or function
2536 // pointer, it's probably because they forgot parentheses to call
2537 // the function. Suggest the addition of those parentheses.
Mike Stump1eb44332009-09-09 15:08:12 +00002538 if (BaseType == Context.OverloadTy ||
Douglas Gregor214f31a2009-03-27 06:00:30 +00002539 BaseType->isFunctionType() ||
Mike Stump1eb44332009-09-09 15:08:12 +00002540 (BaseType->isPointerType() &&
Ted Kremenek6217b802009-07-29 21:53:49 +00002541 BaseType->getAs<PointerType>()->isFunctionType())) {
Douglas Gregor214f31a2009-03-27 06:00:30 +00002542 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
2543 Diag(Loc, diag::note_member_reference_needs_call)
2544 << CodeModificationHint::CreateInsertion(Loc, "()");
2545 }
2546
2547 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002548}
2549
Anders Carlsson8f28f992009-08-26 18:25:21 +00002550Action::OwningExprResult
2551Sema::ActOnMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
2552 tok::TokenKind OpKind, SourceLocation MemberLoc,
2553 IdentifierInfo &Member,
2554 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS) {
Mike Stump1eb44332009-09-09 15:08:12 +00002555 return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind, MemberLoc,
Anders Carlsson8f28f992009-08-26 18:25:21 +00002556 DeclarationName(&Member), ObjCImpDecl, SS);
2557}
2558
Anders Carlsson56c5e332009-08-25 03:49:14 +00002559Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
2560 FunctionDecl *FD,
2561 ParmVarDecl *Param) {
2562 if (Param->hasUnparsedDefaultArg()) {
2563 Diag (CallLoc,
2564 diag::err_use_of_default_argument_to_function_declared_later) <<
2565 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00002566 Diag(UnparsedDefaultArgLocs[Param],
Anders Carlsson56c5e332009-08-25 03:49:14 +00002567 diag::note_default_argument_declared_here);
2568 } else {
2569 if (Param->hasUninstantiatedDefaultArg()) {
2570 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
2571
2572 // Instantiate the expression.
Douglas Gregord6350ae2009-08-28 20:31:08 +00002573 MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD);
Anders Carlsson25cae7f2009-09-05 05:14:19 +00002574
Mike Stump1eb44332009-09-09 15:08:12 +00002575 InstantiatingTemplate Inst(*this, CallLoc, Param,
2576 ArgList.getInnermost().getFlatArgumentList(),
Douglas Gregord6350ae2009-08-28 20:31:08 +00002577 ArgList.getInnermost().flat_size());
Anders Carlsson56c5e332009-08-25 03:49:14 +00002578
John McCallce3ff2b2009-08-25 22:02:44 +00002579 OwningExprResult Result = SubstExpr(UninstExpr, ArgList);
Mike Stump1eb44332009-09-09 15:08:12 +00002580 if (Result.isInvalid())
Anders Carlsson56c5e332009-08-25 03:49:14 +00002581 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00002582
2583 if (SetParamDefaultArgument(Param, move(Result),
Anders Carlsson56c5e332009-08-25 03:49:14 +00002584 /*FIXME:EqualLoc*/
2585 UninstExpr->getSourceRange().getBegin()))
2586 return ExprError();
2587 }
Mike Stump1eb44332009-09-09 15:08:12 +00002588
Anders Carlsson56c5e332009-08-25 03:49:14 +00002589 Expr *DefaultExpr = Param->getDefaultArg();
Mike Stump1eb44332009-09-09 15:08:12 +00002590
Anders Carlsson56c5e332009-08-25 03:49:14 +00002591 // If the default expression creates temporaries, we need to
2592 // push them to the current stack of expression temporaries so they'll
2593 // be properly destroyed.
Mike Stump1eb44332009-09-09 15:08:12 +00002594 if (CXXExprWithTemporaries *E
Anders Carlsson56c5e332009-08-25 03:49:14 +00002595 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
Mike Stump1eb44332009-09-09 15:08:12 +00002596 assert(!E->shouldDestroyTemporaries() &&
Anders Carlsson56c5e332009-08-25 03:49:14 +00002597 "Can't destroy temporaries in a default argument expr!");
2598 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2599 ExprTemporaries.push_back(E->getTemporary(I));
2600 }
2601 }
2602
2603 // We already type-checked the argument, so we know it works.
2604 return Owned(CXXDefaultArgExpr::Create(Context, Param));
2605}
2606
Douglas Gregor88a35142008-12-22 05:46:06 +00002607/// ConvertArgumentsForCall - Converts the arguments specified in
2608/// Args/NumArgs to the parameter types of the function FDecl with
2609/// function prototype Proto. Call is the call expression itself, and
2610/// Fn is the function expression. For a C++ member function, this
2611/// routine does not attempt to convert the object argument. Returns
2612/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00002613bool
2614Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00002615 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00002616 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00002617 Expr **Args, unsigned NumArgs,
2618 SourceLocation RParenLoc) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002619 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00002620 // assignment, to the types of the corresponding parameter, ...
2621 unsigned NumArgsInProto = Proto->getNumArgs();
2622 unsigned NumArgsToCheck = NumArgs;
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002623 bool Invalid = false;
2624
Douglas Gregor88a35142008-12-22 05:46:06 +00002625 // If too few arguments are available (and we don't have default
2626 // arguments for the remaining parameters), don't make the call.
2627 if (NumArgs < NumArgsInProto) {
2628 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2629 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2630 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2631 // Use default arguments for missing arguments
2632 NumArgsToCheck = NumArgsInProto;
Ted Kremenek8189cde2009-02-07 01:47:29 +00002633 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00002634 }
2635
2636 // If too many are passed and not variadic, error on the extras and drop
2637 // them.
2638 if (NumArgs > NumArgsInProto) {
2639 if (!Proto->isVariadic()) {
2640 Diag(Args[NumArgsInProto]->getLocStart(),
2641 diag::err_typecheck_call_too_many_args)
2642 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2643 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2644 Args[NumArgs-1]->getLocEnd());
2645 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00002646 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002647 Invalid = true;
Douglas Gregor88a35142008-12-22 05:46:06 +00002648 }
2649 NumArgsToCheck = NumArgsInProto;
2650 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002651
Douglas Gregor88a35142008-12-22 05:46:06 +00002652 // Continue to check argument types (even if we have too few/many args).
2653 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2654 QualType ProtoArgType = Proto->getArgType(i);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002655
Douglas Gregor88a35142008-12-22 05:46:06 +00002656 Expr *Arg;
Douglas Gregor61366e92008-12-24 00:01:03 +00002657 if (i < NumArgs) {
Douglas Gregor88a35142008-12-22 05:46:06 +00002658 Arg = Args[i];
Douglas Gregor61366e92008-12-24 00:01:03 +00002659
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002660 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2661 ProtoArgType,
Anders Carlssonb7906612009-08-26 23:45:07 +00002662 PDiag(diag::err_call_incomplete_argument)
2663 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002664 return true;
2665
Douglas Gregor61366e92008-12-24 00:01:03 +00002666 // Pass the argument.
2667 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2668 return true;
Anders Carlsson5e300d12009-06-12 16:51:40 +00002669 } else {
Anders Carlssoned961f92009-08-25 02:29:20 +00002670 ParmVarDecl *Param = FDecl->getParamDecl(i);
Mike Stump1eb44332009-09-09 15:08:12 +00002671
2672 OwningExprResult ArgExpr =
Anders Carlsson56c5e332009-08-25 03:49:14 +00002673 BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(),
2674 FDecl, Param);
2675 if (ArgExpr.isInvalid())
2676 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002677
Anders Carlsson56c5e332009-08-25 03:49:14 +00002678 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00002679 }
Mike Stump1eb44332009-09-09 15:08:12 +00002680
Douglas Gregor88a35142008-12-22 05:46:06 +00002681 Call->setArg(i, Arg);
2682 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00002683
Douglas Gregor88a35142008-12-22 05:46:06 +00002684 // If this is a variadic call, handle args passed through "...".
2685 if (Proto->isVariadic()) {
Anders Carlssondce5e2c2009-01-16 16:48:51 +00002686 VariadicCallType CallType = VariadicFunction;
2687 if (Fn->getType()->isBlockPointerType())
2688 CallType = VariadicBlock; // Block
2689 else if (isa<MemberExpr>(Fn))
2690 CallType = VariadicMethod;
2691
Douglas Gregor88a35142008-12-22 05:46:06 +00002692 // Promote the arguments (C99 6.5.2.2p7).
2693 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2694 Expr *Arg = Args[i];
Chris Lattner312531a2009-04-12 08:11:20 +00002695 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor88a35142008-12-22 05:46:06 +00002696 Call->setArg(i, Arg);
2697 }
2698 }
2699
Douglas Gregor3fd56d72009-01-23 21:30:56 +00002700 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00002701}
2702
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002703/// \brief "Deconstruct" the function argument of a call expression to find
2704/// the underlying declaration (if any), the name of the called function,
2705/// whether argument-dependent lookup is available, whether it has explicit
2706/// template arguments, etc.
2707void Sema::DeconstructCallFunction(Expr *FnExpr,
2708 NamedDecl *&Function,
2709 DeclarationName &Name,
2710 NestedNameSpecifier *&Qualifier,
2711 SourceRange &QualifierRange,
2712 bool &ArgumentDependentLookup,
2713 bool &HasExplicitTemplateArguments,
John McCall833ca992009-10-29 08:12:44 +00002714 const TemplateArgumentLoc *&ExplicitTemplateArgs,
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002715 unsigned &NumExplicitTemplateArgs) {
2716 // Set defaults for all of the output parameters.
2717 Function = 0;
2718 Name = DeclarationName();
2719 Qualifier = 0;
2720 QualifierRange = SourceRange();
2721 ArgumentDependentLookup = getLangOptions().CPlusPlus;
2722 HasExplicitTemplateArguments = false;
2723
2724 // If we're directly calling a function, get the appropriate declaration.
2725 // Also, in C++, keep track of whether we should perform argument-dependent
2726 // lookup and whether there were any explicitly-specified template arguments.
2727 while (true) {
2728 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2729 FnExpr = IcExpr->getSubExpr();
2730 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
2731 // Parentheses around a function disable ADL
2732 // (C++0x [basic.lookup.argdep]p1).
2733 ArgumentDependentLookup = false;
2734 FnExpr = PExpr->getSubExpr();
2735 } else if (isa<UnaryOperator>(FnExpr) &&
2736 cast<UnaryOperator>(FnExpr)->getOpcode()
2737 == UnaryOperator::AddrOf) {
2738 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002739 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
2740 Function = dyn_cast<NamedDecl>(DRExpr->getDecl());
Douglas Gregora2813ce2009-10-23 18:54:35 +00002741 if ((Qualifier = DRExpr->getQualifier())) {
2742 ArgumentDependentLookup = false;
2743 QualifierRange = DRExpr->getQualifierRange();
2744 }
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002745 break;
2746 } else if (UnresolvedFunctionNameExpr *DepName
2747 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2748 Name = DepName->getName();
2749 break;
2750 } else if (TemplateIdRefExpr *TemplateIdRef
2751 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2752 Function = TemplateIdRef->getTemplateName().getAsTemplateDecl();
2753 if (!Function)
2754 Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl();
2755 HasExplicitTemplateArguments = true;
2756 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2757 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2758
2759 // C++ [temp.arg.explicit]p6:
2760 // [Note: For simple function names, argument dependent lookup (3.4.2)
2761 // applies even when the function name is not visible within the
2762 // scope of the call. This is because the call still has the syntactic
2763 // form of a function call (3.4.1). But when a function template with
2764 // explicit template arguments is used, the call does not have the
2765 // correct syntactic form unless there is a function template with
2766 // that name visible at the point of the call. If no such name is
2767 // visible, the call is not syntactically well-formed and
2768 // argument-dependent lookup does not apply. If some such name is
2769 // visible, argument dependent lookup applies and additional function
2770 // templates may be found in other namespaces.
2771 //
2772 // The summary of this paragraph is that, if we get to this point and the
2773 // template-id was not a qualified name, then argument-dependent lookup
2774 // is still possible.
2775 if ((Qualifier = TemplateIdRef->getQualifier())) {
2776 ArgumentDependentLookup = false;
2777 QualifierRange = TemplateIdRef->getQualifierRange();
2778 }
2779 break;
2780 } else {
2781 // Any kind of name that does not refer to a declaration (or
2782 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2783 ArgumentDependentLookup = false;
2784 break;
2785 }
2786 }
2787}
2788
Steve Narofff69936d2007-09-16 03:34:24 +00002789/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00002790/// This provides the location of the left/right parens and a list of comma
2791/// locations.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002792Action::OwningExprResult
2793Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2794 MultiExprArg args,
Douglas Gregor88a35142008-12-22 05:46:06 +00002795 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00002796 unsigned NumArgs = args.size();
Nate Begeman2ef13e52009-08-10 23:49:36 +00002797
2798 // Since this might be a postfix expression, get rid of ParenListExprs.
2799 fn = MaybeConvertParenListExprToParenExpr(S, move(fn));
Mike Stump1eb44332009-09-09 15:08:12 +00002800
Anders Carlssonf1b1d592009-05-01 19:30:39 +00002801 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redl0eb23302009-01-19 00:08:26 +00002802 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner74c469f2007-07-21 03:03:59 +00002803 assert(Fn && "no function call expression");
Chris Lattner04421082008-04-08 04:40:51 +00002804 FunctionDecl *FDecl = NULL;
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00002805 NamedDecl *NDecl = NULL;
Douglas Gregor17330012009-02-04 15:01:18 +00002806 DeclarationName UnqualifiedName;
Mike Stump1eb44332009-09-09 15:08:12 +00002807
Douglas Gregor88a35142008-12-22 05:46:06 +00002808 if (getLangOptions().CPlusPlus) {
Douglas Gregora71d8192009-09-04 17:36:40 +00002809 // If this is a pseudo-destructor expression, build the call immediately.
2810 if (isa<CXXPseudoDestructorExpr>(Fn)) {
2811 if (NumArgs > 0) {
2812 // Pseudo-destructor calls should not have any arguments.
2813 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
2814 << CodeModificationHint::CreateRemoval(
2815 SourceRange(Args[0]->getLocStart(),
2816 Args[NumArgs-1]->getLocEnd()));
Mike Stump1eb44332009-09-09 15:08:12 +00002817
Douglas Gregora71d8192009-09-04 17:36:40 +00002818 for (unsigned I = 0; I != NumArgs; ++I)
2819 Args[I]->Destroy(Context);
Mike Stump1eb44332009-09-09 15:08:12 +00002820
Douglas Gregora71d8192009-09-04 17:36:40 +00002821 NumArgs = 0;
2822 }
Mike Stump1eb44332009-09-09 15:08:12 +00002823
Douglas Gregora71d8192009-09-04 17:36:40 +00002824 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
2825 RParenLoc));
2826 }
Mike Stump1eb44332009-09-09 15:08:12 +00002827
Douglas Gregor17330012009-02-04 15:01:18 +00002828 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00002829 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00002830 // FIXME: Will need to cache the results of name lookup (including ADL) in
2831 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00002832 bool Dependent = false;
2833 if (Fn->isTypeDependent())
2834 Dependent = true;
2835 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2836 Dependent = true;
2837
2838 if (Dependent)
Ted Kremenek668bf912009-02-09 20:51:47 +00002839 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregor17330012009-02-04 15:01:18 +00002840 Context.DependentTy, RParenLoc));
2841
2842 // Determine whether this is a call to an object (C++ [over.call.object]).
2843 if (Fn->getType()->isRecordType())
2844 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2845 CommaLocs, RParenLoc));
2846
Douglas Gregorfa047642009-02-04 00:32:51 +00002847 // Determine whether this is a call to a member function.
Douglas Gregore53060f2009-06-25 22:08:12 +00002848 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2849 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2850 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2851 isa<CXXMethodDecl>(MemDecl) ||
2852 (isa<FunctionTemplateDecl>(MemDecl) &&
2853 isa<CXXMethodDecl>(
2854 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002855 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2856 CommaLocs, RParenLoc));
Douglas Gregore53060f2009-06-25 22:08:12 +00002857 }
Anders Carlsson83ccfc32009-10-03 17:40:22 +00002858
2859 // Determine whether this is a call to a pointer-to-member function.
2860 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) {
2861 if (BO->getOpcode() == BinaryOperator::PtrMemD ||
2862 BO->getOpcode() == BinaryOperator::PtrMemI) {
Fariborz Jahanian5de24502009-10-28 16:49:46 +00002863 if (const FunctionProtoType *FPT =
2864 dyn_cast<FunctionProtoType>(BO->getType())) {
2865 QualType ResultTy = FPT->getResultType().getNonReferenceType();
Anders Carlsson83ccfc32009-10-03 17:40:22 +00002866
Fariborz Jahanian5de24502009-10-28 16:49:46 +00002867 ExprOwningPtr<CXXMemberCallExpr>
2868 TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args,
2869 NumArgs, ResultTy,
2870 RParenLoc));
Anders Carlsson83ccfc32009-10-03 17:40:22 +00002871
Fariborz Jahanian5de24502009-10-28 16:49:46 +00002872 if (CheckCallReturnType(FPT->getResultType(),
2873 BO->getRHS()->getSourceRange().getBegin(),
2874 TheCall.get(), 0))
2875 return ExprError();
Anders Carlsson8d6d90d2009-10-15 00:41:48 +00002876
Fariborz Jahanian5de24502009-10-28 16:49:46 +00002877 if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs,
2878 RParenLoc))
2879 return ExprError();
Anders Carlsson83ccfc32009-10-03 17:40:22 +00002880
Fariborz Jahanian5de24502009-10-28 16:49:46 +00002881 return Owned(MaybeBindToTemporary(TheCall.release()).release());
2882 }
2883 return ExprError(Diag(Fn->getLocStart(),
2884 diag::err_typecheck_call_not_function)
2885 << Fn->getType() << Fn->getSourceRange());
Anders Carlsson83ccfc32009-10-03 17:40:22 +00002886 }
2887 }
Douglas Gregor88a35142008-12-22 05:46:06 +00002888 }
2889
Douglas Gregorfa047642009-02-04 00:32:51 +00002890 // If we're directly calling a function, get the appropriate declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00002891 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002892 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregorfa047642009-02-04 00:32:51 +00002893 bool ADL = true;
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002894 bool HasExplicitTemplateArgs = 0;
John McCall833ca992009-10-29 08:12:44 +00002895 const TemplateArgumentLoc *ExplicitTemplateArgs = 0;
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002896 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregor9c6a0e92009-09-22 15:41:20 +00002897 NestedNameSpecifier *Qualifier = 0;
2898 SourceRange QualifierRange;
2899 DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange,
2900 ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs,
2901 NumExplicitTemplateArgs);
Mike Stumpeed9cac2009-02-19 03:04:26 +00002902
Douglas Gregor17330012009-02-04 15:01:18 +00002903 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregore53060f2009-06-25 22:08:12 +00002904 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002905 if (NDecl) {
2906 FDecl = dyn_cast<FunctionDecl>(NDecl);
2907 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregore53060f2009-06-25 22:08:12 +00002908 FDecl = FunctionTemplate->getTemplatedDecl();
2909 else
Douglas Gregoredce4dd2009-06-30 22:34:41 +00002910 FDecl = dyn_cast<FunctionDecl>(NDecl);
2911 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregor17330012009-02-04 15:01:18 +00002912 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002913
Mike Stump1eb44332009-09-09 15:08:12 +00002914 if (Ovl || FunctionTemplate ||
Douglas Gregore53060f2009-06-25 22:08:12 +00002915 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregor3e41d602009-02-13 23:20:09 +00002916 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor7814e6d2009-09-12 00:22:50 +00002917 if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit())
Douglas Gregorfa047642009-02-04 00:32:51 +00002918 ADL = false;
2919
Douglas Gregorf9201e02009-02-11 23:02:49 +00002920 // We don't perform ADL in C.
2921 if (!getLangOptions().CPlusPlus)
2922 ADL = false;
2923
Douglas Gregore53060f2009-06-25 22:08:12 +00002924 if (Ovl || FunctionTemplate || ADL) {
Mike Stump1eb44332009-09-09 15:08:12 +00002925 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002926 HasExplicitTemplateArgs,
2927 ExplicitTemplateArgs,
2928 NumExplicitTemplateArgs,
Mike Stump1eb44332009-09-09 15:08:12 +00002929 LParenLoc, Args, NumArgs, CommaLocs,
Douglas Gregor6db8ed42009-06-30 23:57:56 +00002930 RParenLoc, ADL);
Douglas Gregorfa047642009-02-04 00:32:51 +00002931 if (!FDecl)
2932 return ExprError();
2933
Douglas Gregor097bfb12009-10-23 22:18:25 +00002934 Fn = FixOverloadedFunctionReference(Fn, FDecl);
Douglas Gregorfa047642009-02-04 00:32:51 +00002935 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00002936 }
Chris Lattner04421082008-04-08 04:40:51 +00002937
2938 // Promote the function operand.
2939 UsualUnaryConversions(Fn);
2940
Chris Lattner925e60d2007-12-28 05:29:59 +00002941 // Make the call expr early, before semantic checks. This guarantees cleanup
2942 // of arguments and function on error.
Ted Kremenek668bf912009-02-09 20:51:47 +00002943 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2944 Args, NumArgs,
2945 Context.BoolTy,
2946 RParenLoc));
Sebastian Redl0eb23302009-01-19 00:08:26 +00002947
Steve Naroffdd972f22008-09-05 22:11:13 +00002948 const FunctionType *FuncT;
2949 if (!Fn->getType()->isBlockPointerType()) {
2950 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2951 // have type pointer to function".
Ted Kremenek6217b802009-07-29 21:53:49 +00002952 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002953 if (PT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002954 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2955 << Fn->getType() << Fn->getSourceRange());
John McCall183700f2009-09-21 23:43:11 +00002956 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002957 } else { // This is a block call.
Ted Kremenek6217b802009-07-29 21:53:49 +00002958 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
John McCall183700f2009-09-21 23:43:11 +00002959 getAs<FunctionType>();
Steve Naroffdd972f22008-09-05 22:11:13 +00002960 }
Chris Lattner925e60d2007-12-28 05:29:59 +00002961 if (FuncT == 0)
Sebastian Redl0eb23302009-01-19 00:08:26 +00002962 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2963 << Fn->getType() << Fn->getSourceRange());
2964
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002965 // Check for a valid return type
Anders Carlsson8c8d9192009-10-09 23:51:55 +00002966 if (CheckCallReturnType(FuncT->getResultType(),
2967 Fn->getSourceRange().getBegin(), TheCall.get(),
2968 FDecl))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002969 return ExprError();
2970
Chris Lattner925e60d2007-12-28 05:29:59 +00002971 // We know the result type of the call, set it.
Douglas Gregor15da57e2008-10-29 02:00:59 +00002972 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redl0eb23302009-01-19 00:08:26 +00002973
Douglas Gregor72564e72009-02-26 23:50:07 +00002974 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00002975 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +00002976 RParenLoc))
Sebastian Redl0eb23302009-01-19 00:08:26 +00002977 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00002978 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00002979 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00002980
Douglas Gregor74734d52009-04-02 15:37:10 +00002981 if (FDecl) {
2982 // Check if we have too few/too many template arguments, based
2983 // on our knowledge of the function definition.
2984 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis6fb0aee2009-06-30 02:35:26 +00002985 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002986 const FunctionProtoType *Proto =
John McCall183700f2009-09-21 23:43:11 +00002987 Def->getType()->getAs<FunctionProtoType>();
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00002988 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
2989 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2990 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2991 }
2992 }
Douglas Gregor74734d52009-04-02 15:37:10 +00002993 }
2994
Steve Naroffb291ab62007-08-28 23:30:39 +00002995 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00002996 for (unsigned i = 0; i != NumArgs; i++) {
2997 Expr *Arg = Args[i];
2998 DefaultArgumentPromotion(Arg);
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00002999 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
3000 Arg->getType(),
Anders Carlssonb7906612009-08-26 23:45:07 +00003001 PDiag(diag::err_call_incomplete_argument)
3002 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00003003 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00003004 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00003005 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003006 }
Chris Lattner925e60d2007-12-28 05:29:59 +00003007
Douglas Gregor88a35142008-12-22 05:46:06 +00003008 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
3009 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00003010 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3011 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00003012
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00003013 // Check for sentinels
3014 if (NDecl)
3015 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00003016
Chris Lattner59907c42007-08-10 20:18:51 +00003017 // Do special checking on direct calls to functions.
Anders Carlssond406bf02009-08-16 01:56:34 +00003018 if (FDecl) {
3019 if (CheckFunctionCall(FDecl, TheCall.get()))
3020 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003021
Douglas Gregor7814e6d2009-09-12 00:22:50 +00003022 if (unsigned BuiltinID = FDecl->getBuiltinID())
Anders Carlssond406bf02009-08-16 01:56:34 +00003023 return CheckBuiltinFunctionCall(BuiltinID, TheCall.take());
3024 } else if (NDecl) {
3025 if (CheckBlockCall(NDecl, TheCall.get()))
3026 return ExprError();
3027 }
Chris Lattner59907c42007-08-10 20:18:51 +00003028
Anders Carlssonec74c592009-08-16 03:06:32 +00003029 return MaybeBindToTemporary(TheCall.take());
Reid Spencer5f016e22007-07-11 17:01:13 +00003030}
3031
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003032Action::OwningExprResult
3033Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
3034 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00003035 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00003036 //FIXME: Preserve type source info.
3037 QualType literalType = GetTypeFromParser(Ty);
Steve Naroffaff1edd2007-07-19 21:32:11 +00003038 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00003039 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003040 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlssond35c8322007-12-05 07:24:19 +00003041
Eli Friedman6223c222008-05-20 05:22:08 +00003042 if (literalType->isArrayType()) {
Chris Lattnerc63a1f22008-08-04 07:31:14 +00003043 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003044 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3045 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00003046 } else if (!literalType->isDependentType() &&
3047 RequireCompleteType(LParenLoc, literalType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003048 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00003049 << SourceRange(LParenLoc,
Anders Carlssonb7906612009-08-26 23:45:07 +00003050 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003051 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00003052
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003053 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor09f41cf2009-01-14 15:45:31 +00003054 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003055 return ExprError();
Steve Naroffe9b12192008-01-14 18:19:28 +00003056
Chris Lattner371f2582008-12-04 23:50:19 +00003057 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00003058 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00003059 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003060 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00003061 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003062 InitExpr.release();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003063 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003064 literalExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00003065}
3066
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003067Action::OwningExprResult
3068Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003069 SourceLocation RBraceLoc) {
3070 unsigned NumInit = initlist.size();
3071 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00003072
Steve Naroff08d92e42007-09-15 18:49:24 +00003073 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00003074 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003075
Mike Stumpeed9cac2009-02-19 03:04:26 +00003076 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor4c678342009-01-28 21:54:33 +00003077 RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00003078 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003079 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00003080}
3081
Anders Carlsson82debc72009-10-18 18:12:03 +00003082static CastExpr::CastKind getScalarCastKind(ASTContext &Context,
3083 QualType SrcTy, QualType DestTy) {
3084 if (Context.getCanonicalType(SrcTy).getUnqualifiedType() ==
3085 Context.getCanonicalType(DestTy).getUnqualifiedType())
3086 return CastExpr::CK_NoOp;
3087
3088 if (SrcTy->hasPointerRepresentation()) {
3089 if (DestTy->hasPointerRepresentation())
3090 return CastExpr::CK_BitCast;
3091 if (DestTy->isIntegerType())
3092 return CastExpr::CK_PointerToIntegral;
3093 }
3094
3095 if (SrcTy->isIntegerType()) {
3096 if (DestTy->isIntegerType())
3097 return CastExpr::CK_IntegralCast;
3098 if (DestTy->hasPointerRepresentation())
3099 return CastExpr::CK_IntegralToPointer;
3100 if (DestTy->isRealFloatingType())
3101 return CastExpr::CK_IntegralToFloating;
3102 }
3103
3104 if (SrcTy->isRealFloatingType()) {
3105 if (DestTy->isRealFloatingType())
3106 return CastExpr::CK_FloatingCast;
3107 if (DestTy->isIntegerType())
3108 return CastExpr::CK_FloatingToIntegral;
3109 }
3110
3111 // FIXME: Assert here.
3112 // assert(false && "Unhandled cast combination!");
3113 return CastExpr::CK_Unknown;
3114}
3115
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003116/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redlef0cb8e2009-07-29 13:50:23 +00003117bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Mike Stump1eb44332009-09-09 15:08:12 +00003118 CastExpr::CastKind& Kind,
Fariborz Jahaniane9f42082009-08-26 18:55:36 +00003119 CXXMethodDecl *& ConversionDecl,
3120 bool FunctionalStyle) {
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003121 if (getLangOptions().CPlusPlus)
Fariborz Jahaniane9f42082009-08-26 18:55:36 +00003122 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle,
3123 ConversionDecl);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003124
Eli Friedman199ea952009-08-15 19:02:19 +00003125 DefaultFunctionArrayConversion(castExpr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003126
3127 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
3128 // type needs to be scalar.
3129 if (castType->isVoidType()) {
3130 // Cast to void allows any expr type.
Anders Carlssonebeaf202009-10-16 02:35:04 +00003131 Kind = CastExpr::CK_ToVoid;
3132 return false;
3133 }
3134
3135 if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003136 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
3137 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
3138 (castType->isStructureType() || castType->isUnionType())) {
3139 // GCC struct/union extension: allow cast to self.
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003140 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003141 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
3142 << castType << castExpr->getSourceRange();
Anders Carlsson4d8673b2009-08-07 23:22:37 +00003143 Kind = CastExpr::CK_NoOp;
Anders Carlssonc3516322009-10-16 02:48:28 +00003144 return false;
3145 }
3146
3147 if (castType->isUnionType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003148 // GCC cast to union extension
Ted Kremenek6217b802009-07-29 21:53:49 +00003149 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003150 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003151 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00003152 Field != FieldEnd; ++Field) {
3153 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
3154 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
3155 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3156 << castExpr->getSourceRange();
3157 break;
3158 }
3159 }
3160 if (Field == FieldEnd)
3161 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3162 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlsson4d8673b2009-08-07 23:22:37 +00003163 Kind = CastExpr::CK_ToUnion;
Anders Carlssonc3516322009-10-16 02:48:28 +00003164 return false;
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003165 }
Anders Carlssonc3516322009-10-16 02:48:28 +00003166
3167 // Reject any other conversions to non-scalar types.
3168 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
3169 << castType << castExpr->getSourceRange();
3170 }
3171
3172 if (!castExpr->getType()->isScalarType() &&
3173 !castExpr->getType()->isVectorType()) {
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003174 return Diag(castExpr->getLocStart(),
3175 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00003176 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlssonc3516322009-10-16 02:48:28 +00003177 }
3178
Anders Carlsson16a89042009-10-16 05:23:41 +00003179 if (castType->isExtVectorType())
3180 return CheckExtVectorCast(TyR, castType, castExpr, Kind);
3181
Anders Carlssonc3516322009-10-16 02:48:28 +00003182 if (castType->isVectorType())
3183 return CheckVectorCast(TyR, castType, castExpr->getType(), Kind);
3184 if (castExpr->getType()->isVectorType())
3185 return CheckVectorCast(TyR, castExpr->getType(), castType, Kind);
3186
3187 if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr))
Steve Naroffa0c3e9c2009-04-08 23:52:26 +00003188 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Anders Carlssonc3516322009-10-16 02:48:28 +00003189
Anders Carlsson16a89042009-10-16 05:23:41 +00003190 if (isa<ObjCSelectorExpr>(castExpr))
3191 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
3192
Anders Carlssonc3516322009-10-16 02:48:28 +00003193 if (!castType->isArithmeticType()) {
Eli Friedman41826bb2009-05-01 02:23:58 +00003194 QualType castExprType = castExpr->getType();
3195 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3196 return Diag(castExpr->getLocStart(),
3197 diag::err_cast_pointer_from_non_pointer_int)
3198 << castExprType << castExpr->getSourceRange();
3199 } else if (!castExpr->getType()->isArithmeticType()) {
3200 if (!castType->isIntegralType() && castType->isArithmeticType())
3201 return Diag(castExpr->getLocStart(),
3202 diag::err_cast_pointer_to_non_pointer_int)
3203 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003204 }
Anders Carlsson82debc72009-10-18 18:12:03 +00003205
3206 Kind = getScalarCastKind(Context, castExpr->getType(), castType);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00003207 return false;
3208}
3209
Anders Carlssonc3516322009-10-16 02:48:28 +00003210bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
3211 CastExpr::CastKind &Kind) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00003212 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00003213
Anders Carlssona64db8f2007-11-27 05:51:55 +00003214 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00003215 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00003216 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00003217 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00003218 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003219 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00003220 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00003221 } else
3222 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00003223 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00003224 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003225
Anders Carlssonc3516322009-10-16 02:48:28 +00003226 Kind = CastExpr::CK_BitCast;
Anders Carlssona64db8f2007-11-27 05:51:55 +00003227 return false;
3228}
3229
Anders Carlsson16a89042009-10-16 05:23:41 +00003230bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr,
3231 CastExpr::CastKind &Kind) {
Nate Begeman58d29a42009-06-26 00:50:28 +00003232 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Anders Carlsson16a89042009-10-16 05:23:41 +00003233
3234 QualType SrcTy = CastExpr->getType();
3235
Nate Begeman9b10da62009-06-27 22:05:55 +00003236 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3237 // an ExtVectorType.
Nate Begeman58d29a42009-06-26 00:50:28 +00003238 if (SrcTy->isVectorType()) {
3239 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3240 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3241 << DestTy << SrcTy << R;
Anders Carlsson16a89042009-10-16 05:23:41 +00003242 Kind = CastExpr::CK_BitCast;
Nate Begeman58d29a42009-06-26 00:50:28 +00003243 return false;
3244 }
3245
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003246 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00003247 // conversion will take place first from scalar to elt type, and then
3248 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003249 if (SrcTy->isPointerType())
3250 return Diag(R.getBegin(),
3251 diag::err_invalid_conversion_between_vector_and_scalar)
3252 << DestTy << SrcTy << R;
Eli Friedman73c39ab2009-10-20 08:27:19 +00003253
3254 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
3255 ImpCastExprToType(CastExpr, DestElemTy,
3256 getScalarCastKind(Context, SrcTy, DestElemTy));
Anders Carlsson16a89042009-10-16 05:23:41 +00003257
3258 Kind = CastExpr::CK_VectorSplat;
Nate Begeman58d29a42009-06-26 00:50:28 +00003259 return false;
3260}
3261
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003262Action::OwningExprResult
Nate Begeman2ef13e52009-08-10 23:49:36 +00003263Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003264 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlssoncdb61972009-08-07 22:21:05 +00003265 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Mike Stump1eb44332009-09-09 15:08:12 +00003266
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003267 assert((Ty != 0) && (Op.get() != 0) &&
3268 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00003269
Nate Begeman2ef13e52009-08-10 23:49:36 +00003270 Expr *castExpr = (Expr *)Op.get();
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00003271 //FIXME: Preserve type source info.
3272 QualType castType = GetTypeFromParser(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00003273
Nate Begeman2ef13e52009-08-10 23:49:36 +00003274 // If the Expr being casted is a ParenListExpr, handle it specially.
3275 if (isa<ParenListExpr>(castExpr))
3276 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType);
Anders Carlsson0aebc812009-09-09 21:33:21 +00003277 CXXMethodDecl *Method = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00003278 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
Anders Carlsson0aebc812009-09-09 21:33:21 +00003279 Kind, Method))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003280 return ExprError();
Anders Carlsson0aebc812009-09-09 21:33:21 +00003281
3282 if (Method) {
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003283 OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind,
Anders Carlsson0aebc812009-09-09 21:33:21 +00003284 Method, move(Op));
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003285
Anders Carlsson0aebc812009-09-09 21:33:21 +00003286 if (CastArg.isInvalid())
3287 return ExprError();
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003288
Anders Carlsson0aebc812009-09-09 21:33:21 +00003289 castExpr = CastArg.takeAs<Expr>();
3290 } else {
3291 Op.release();
Fariborz Jahanian31976592009-08-29 19:15:16 +00003292 }
Mike Stump1eb44332009-09-09 15:08:12 +00003293
Sebastian Redl9cc11e72009-07-25 15:41:38 +00003294 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Mike Stump1eb44332009-09-09 15:08:12 +00003295 Kind, castExpr, castType,
Anders Carlssoncdb61972009-08-07 22:21:05 +00003296 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003297}
3298
Nate Begeman2ef13e52009-08-10 23:49:36 +00003299/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
3300/// of comma binary operators.
3301Action::OwningExprResult
3302Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) {
3303 Expr *expr = EA.takeAs<Expr>();
3304 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
3305 if (!E)
3306 return Owned(expr);
Mike Stump1eb44332009-09-09 15:08:12 +00003307
Nate Begeman2ef13e52009-08-10 23:49:36 +00003308 OwningExprResult Result(*this, E->getExpr(0));
Mike Stump1eb44332009-09-09 15:08:12 +00003309
Nate Begeman2ef13e52009-08-10 23:49:36 +00003310 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
3311 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result),
3312 Owned(E->getExpr(i)));
Mike Stump1eb44332009-09-09 15:08:12 +00003313
Nate Begeman2ef13e52009-08-10 23:49:36 +00003314 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result));
3315}
3316
3317Action::OwningExprResult
3318Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
3319 SourceLocation RParenLoc, ExprArg Op,
3320 QualType Ty) {
3321 ParenListExpr *PE = (ParenListExpr *)Op.get();
Mike Stump1eb44332009-09-09 15:08:12 +00003322
3323 // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')'
Nate Begeman2ef13e52009-08-10 23:49:36 +00003324 // then handle it as such.
3325 if (getLangOptions().AltiVec && Ty->isVectorType()) {
3326 if (PE->getNumExprs() == 0) {
3327 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
3328 return ExprError();
3329 }
3330
3331 llvm::SmallVector<Expr *, 8> initExprs;
3332 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
3333 initExprs.push_back(PE->getExpr(i));
3334
3335 // FIXME: This means that pretty-printing the final AST will produce curly
3336 // braces instead of the original commas.
3337 Op.release();
Mike Stump1eb44332009-09-09 15:08:12 +00003338 InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0],
Nate Begeman2ef13e52009-08-10 23:49:36 +00003339 initExprs.size(), RParenLoc);
3340 E->setType(Ty);
Mike Stump1eb44332009-09-09 15:08:12 +00003341 return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,
Nate Begeman2ef13e52009-08-10 23:49:36 +00003342 Owned(E));
3343 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00003344 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman2ef13e52009-08-10 23:49:36 +00003345 // sequence of BinOp comma operators.
3346 Op = MaybeConvertParenListExprToParenExpr(S, move(Op));
3347 return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op));
3348 }
3349}
3350
3351Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L,
3352 SourceLocation R,
3353 MultiExprArg Val) {
3354 unsigned nexprs = Val.size();
3355 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
3356 assert((exprs != 0) && "ActOnParenListExpr() missing expr list");
3357 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
3358 return Owned(expr);
3359}
3360
Sebastian Redl28507842009-02-26 14:39:58 +00003361/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3362/// In that case, lhs = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00003363/// C99 6.5.15
3364QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3365 SourceLocation QuestionLoc) {
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003366 // C++ is sufficiently different to merit its own checker.
3367 if (getLangOptions().CPlusPlus)
3368 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3369
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003370 UsualUnaryConversions(Cond);
3371 UsualUnaryConversions(LHS);
3372 UsualUnaryConversions(RHS);
3373 QualType CondTy = Cond->getType();
3374 QualType LHSTy = LHS->getType();
3375 QualType RHSTy = RHS->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00003376
Reid Spencer5f016e22007-07-11 17:01:13 +00003377 // first, check the condition.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00003378 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3379 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3380 << CondTy;
3381 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003382 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003383
Chris Lattner70d67a92008-01-06 22:42:25 +00003384 // Now check the two expressions.
Nate Begeman2ef13e52009-08-10 23:49:36 +00003385 if (LHSTy->isVectorType() || RHSTy->isVectorType())
3386 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor898574e2008-12-05 23:32:09 +00003387
Chris Lattner70d67a92008-01-06 22:42:25 +00003388 // If both operands have arithmetic type, do the usual arithmetic conversions
3389 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003390 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3391 UsualArithmeticConversions(LHS, RHS);
3392 return LHS->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00003393 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003394
Chris Lattner70d67a92008-01-06 22:42:25 +00003395 // If both operands are the same structure or union type, the result is that
3396 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003397 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3398 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattnera21ddb32007-11-26 01:40:58 +00003399 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00003400 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00003401 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003402 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00003403 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00003404 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003405
Chris Lattner70d67a92008-01-06 22:42:25 +00003406 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00003407 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003408 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3409 if (!LHSTy->isVoidType())
3410 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3411 << RHS->getSourceRange();
3412 if (!RHSTy->isVoidType())
3413 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3414 << LHS->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003415 ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid);
3416 ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid);
Eli Friedman0e724012008-06-04 19:47:51 +00003417 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00003418 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00003419 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3420 // the type of the other operand."
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003421 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Douglas Gregorce940492009-09-25 04:25:58 +00003422 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003423 // promote the null to a pointer.
3424 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown);
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003425 return LHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003426 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00003427 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Douglas Gregorce940492009-09-25 04:25:58 +00003428 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003429 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown);
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003430 return RHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00003431 }
David Chisnall0f436562009-08-17 16:35:33 +00003432 // Handle things like Class and struct objc_class*. Here we case the result
3433 // to the pseudo-builtin, because that will be implicitly cast back to the
3434 // redefinition type if an attempt is made to access its fields.
3435 if (LHSTy->isObjCClassType() &&
3436 (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003437 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
David Chisnall0f436562009-08-17 16:35:33 +00003438 return LHSTy;
3439 }
3440 if (RHSTy->isObjCClassType() &&
3441 (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003442 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
David Chisnall0f436562009-08-17 16:35:33 +00003443 return RHSTy;
3444 }
3445 // And the same for struct objc_object* / id
3446 if (LHSTy->isObjCIdType() &&
3447 (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003448 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
David Chisnall0f436562009-08-17 16:35:33 +00003449 return LHSTy;
3450 }
3451 if (RHSTy->isObjCIdType() &&
3452 (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00003453 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
David Chisnall0f436562009-08-17 16:35:33 +00003454 return RHSTy;
3455 }
Steve Naroff7154a772009-07-01 14:36:47 +00003456 // Handle block pointer types.
3457 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3458 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3459 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3460 QualType destType = Context.getPointerType(Context.VoidTy);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003461 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
3462 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003463 return destType;
3464 }
3465 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3466 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3467 return QualType();
Mike Stumpdd3e1662009-05-07 03:14:14 +00003468 }
Steve Naroff7154a772009-07-01 14:36:47 +00003469 // We have 2 block pointer types.
3470 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3471 // Two identical block pointer types are always compatible.
Mike Stumpdd3e1662009-05-07 03:14:14 +00003472 return LHSTy;
3473 }
Steve Naroff7154a772009-07-01 14:36:47 +00003474 // The block pointer types aren't identical, continue checking.
Ted Kremenek6217b802009-07-29 21:53:49 +00003475 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3476 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003477
Steve Naroff7154a772009-07-01 14:36:47 +00003478 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3479 rhptee.getUnqualifiedType())) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00003480 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3481 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3482 // In this situation, we assume void* type. No especially good
3483 // reason, but this is what gcc does, and we do have to pick
3484 // to get a consistent AST.
3485 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003486 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3487 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Mike Stumpdd3e1662009-05-07 03:14:14 +00003488 return incompatTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003489 }
Steve Naroff7154a772009-07-01 14:36:47 +00003490 // The block pointer types are compatible.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003491 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3492 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroff91588042009-04-08 17:05:15 +00003493 return LHSTy;
3494 }
Steve Naroff7154a772009-07-01 14:36:47 +00003495 // Check constraints for Objective-C object pointers types.
Steve Naroff14108da2009-07-10 23:34:53 +00003496 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00003497
Steve Naroff7154a772009-07-01 14:36:47 +00003498 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3499 // Two identical object pointer types are always compatible.
3500 return LHSTy;
3501 }
John McCall183700f2009-09-21 23:43:11 +00003502 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
3503 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
Steve Naroff7154a772009-07-01 14:36:47 +00003504 QualType compositeType = LHSTy;
Mike Stump1eb44332009-09-09 15:08:12 +00003505
Steve Naroff7154a772009-07-01 14:36:47 +00003506 // If both operands are interfaces and either operand can be
3507 // assigned to the other, use that type as the composite
3508 // type. This allows
3509 // xxx ? (A*) a : (B*) b
3510 // where B is a subclass of A.
3511 //
3512 // Additionally, as for assignment, if either type is 'id'
3513 // allow silent coercion. Finally, if the types are
3514 // incompatible then make sure to use 'id' as the composite
3515 // type so the result is acceptable for sending messages to.
3516
3517 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3518 // It could return the composite type.
Steve Naroff14108da2009-07-10 23:34:53 +00003519 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Fariborz Jahanian9ec22a32009-08-22 22:27:17 +00003520 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
Steve Naroff14108da2009-07-10 23:34:53 +00003521 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Fariborz Jahanian9ec22a32009-08-22 22:27:17 +00003522 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
Mike Stump1eb44332009-09-09 15:08:12 +00003523 } else if ((LHSTy->isObjCQualifiedIdType() ||
Steve Naroff14108da2009-07-10 23:34:53 +00003524 RHSTy->isObjCQualifiedIdType()) &&
Steve Naroff4084c302009-07-23 01:01:38 +00003525 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
Mike Stump1eb44332009-09-09 15:08:12 +00003526 // Need to handle "id<xx>" explicitly.
Steve Naroff14108da2009-07-10 23:34:53 +00003527 // GCC allows qualified id and any Objective-C type to devolve to
3528 // id. Currently localizing to here until clear this should be
3529 // part of ObjCQualifiedIdTypesAreCompatible.
3530 compositeType = Context.getObjCIdType();
3531 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff7154a772009-07-01 14:36:47 +00003532 compositeType = Context.getObjCIdType();
Fariborz Jahaniandb07b3f2009-10-27 23:02:38 +00003533 } else if (!(compositeType =
3534 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())
3535 ;
3536 else {
Steve Naroff7154a772009-07-01 14:36:47 +00003537 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3538 << LHSTy << RHSTy
3539 << LHS->getSourceRange() << RHS->getSourceRange();
3540 QualType incompatTy = Context.getObjCIdType();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003541 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3542 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003543 return incompatTy;
3544 }
3545 // The object pointer types are compatible.
Eli Friedman73c39ab2009-10-20 08:27:19 +00003546 ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast);
3547 ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003548 return compositeType;
3549 }
Steve Naroffc715e782009-07-29 15:09:39 +00003550 // Check Objective-C object pointer types and 'void *'
3551 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00003552 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00003553 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00003554 QualType destPointee
3555 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroffc715e782009-07-29 15:09:39 +00003556 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003557 // Add qualifiers if necessary.
3558 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3559 // Promote to void*.
3560 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroffc715e782009-07-29 15:09:39 +00003561 return destType;
3562 }
3563 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
John McCall183700f2009-09-21 23:43:11 +00003564 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003565 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
John McCall0953e762009-09-24 19:53:00 +00003566 QualType destPointee
3567 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroffc715e782009-07-29 15:09:39 +00003568 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003569 // Add qualifiers if necessary.
3570 ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp);
3571 // Promote to void*.
3572 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
Steve Naroffc715e782009-07-29 15:09:39 +00003573 return destType;
3574 }
Steve Naroff7154a772009-07-01 14:36:47 +00003575 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3576 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3577 // get the "pointed to" types
Ted Kremenek6217b802009-07-29 21:53:49 +00003578 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3579 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff7154a772009-07-01 14:36:47 +00003580
3581 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3582 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3583 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall0953e762009-09-24 19:53:00 +00003584 QualType destPointee
3585 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00003586 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003587 // Add qualifiers if necessary.
3588 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3589 // Promote to void*.
3590 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003591 return destType;
3592 }
3593 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall0953e762009-09-24 19:53:00 +00003594 QualType destPointee
3595 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00003596 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003597 // Add qualifiers if necessary.
3598 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3599 // Promote to void*.
3600 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003601 return destType;
3602 }
3603
3604 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3605 // Two identical pointer types are always compatible.
3606 return LHSTy;
3607 }
3608 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3609 rhptee.getUnqualifiedType())) {
3610 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3611 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3612 // In this situation, we assume void* type. No especially good
3613 // reason, but this is what gcc does, and we do have to pick
3614 // to get a consistent AST.
3615 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman73c39ab2009-10-20 08:27:19 +00003616 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3617 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003618 return incompatTy;
3619 }
3620 // The pointer types are compatible.
3621 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3622 // differently qualified versions of compatible types, the result type is
3623 // a pointer to an appropriately qualified version of the *composite*
3624 // type.
3625 // FIXME: Need to calculate the composite type.
3626 // FIXME: Need to add qualifiers
Eli Friedman73c39ab2009-10-20 08:27:19 +00003627 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3628 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00003629 return LHSTy;
3630 }
Mike Stump1eb44332009-09-09 15:08:12 +00003631
Steve Naroff7154a772009-07-01 14:36:47 +00003632 // GCC compatibility: soften pointer/integer mismatch.
3633 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3634 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3635 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003636 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff7154a772009-07-01 14:36:47 +00003637 return RHSTy;
3638 }
3639 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3640 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3641 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00003642 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff7154a772009-07-01 14:36:47 +00003643 return LHSTy;
3644 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00003645
Chris Lattner70d67a92008-01-06 22:42:25 +00003646 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00003647 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3648 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00003649 return QualType();
3650}
3651
Steve Narofff69936d2007-09-16 03:34:24 +00003652/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00003653/// in the case of a the GNU conditional expr extension.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003654Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3655 SourceLocation ColonLoc,
3656 ExprArg Cond, ExprArg LHS,
3657 ExprArg RHS) {
3658 Expr *CondExpr = (Expr *) Cond.get();
3659 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattnera21ddb32007-11-26 01:40:58 +00003660
3661 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3662 // was the condition.
3663 bool isLHSNull = LHSExpr == 0;
3664 if (isLHSNull)
3665 LHSExpr = CondExpr;
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003666
3667 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattner26824902007-07-16 21:39:03 +00003668 RHSExpr, QuestionLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00003669 if (result.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00003670 return ExprError();
3671
3672 Cond.release();
3673 LHS.release();
3674 RHS.release();
Douglas Gregor47e1f7c2009-08-26 14:37:04 +00003675 return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc,
Steve Naroff6ece14c2009-01-21 00:14:39 +00003676 isLHSNull ? 0 : LHSExpr,
Douglas Gregor47e1f7c2009-08-26 14:37:04 +00003677 ColonLoc, RHSExpr, result));
Reid Spencer5f016e22007-07-11 17:01:13 +00003678}
3679
Reid Spencer5f016e22007-07-11 17:01:13 +00003680// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00003681// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00003682// routine is it effectively iqnores the qualifiers on the top level pointee.
3683// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3684// FIXME: add a couple examples in this comment.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003685Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003686Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
3687 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003688
David Chisnall0f436562009-08-17 16:35:33 +00003689 if ((lhsType->isObjCClassType() &&
3690 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3691 (rhsType->isObjCClassType() &&
3692 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3693 return Compatible;
3694 }
3695
Reid Spencer5f016e22007-07-11 17:01:13 +00003696 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek6217b802009-07-29 21:53:49 +00003697 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
3698 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003699
Reid Spencer5f016e22007-07-11 17:01:13 +00003700 // make sure we operate on the canonical type
Chris Lattnerb77792e2008-07-26 22:17:49 +00003701 lhptee = Context.getCanonicalType(lhptee);
3702 rhptee = Context.getCanonicalType(rhptee);
Reid Spencer5f016e22007-07-11 17:01:13 +00003703
Chris Lattner5cf216b2008-01-04 18:04:52 +00003704 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003705
3706 // C99 6.5.16.1p1: This following citation is common to constraints
3707 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3708 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianf11284a2009-02-17 18:27:45 +00003709 // FIXME: Handle ExtQualType
Douglas Gregor98cd5992008-10-21 23:43:52 +00003710 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner5cf216b2008-01-04 18:04:52 +00003711 ConvTy = CompatiblePointerDiscardsQualifiers;
Reid Spencer5f016e22007-07-11 17:01:13 +00003712
Mike Stumpeed9cac2009-02-19 03:04:26 +00003713 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3714 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00003715 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003716 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003717 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003718 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003719
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003720 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003721 assert(rhptee->isFunctionType());
3722 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003723 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003724
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003725 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00003726 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00003727 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003728
3729 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00003730 assert(lhptee->isFunctionType());
3731 return FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00003732 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003733 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00003734 // unqualified versions of compatible types, ...
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003735 lhptee = lhptee.getUnqualifiedType();
3736 rhptee = rhptee.getUnqualifiedType();
3737 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3738 // Check if the pointee types are compatible ignoring the sign.
3739 // We explicitly check for char so that we catch "char" vs
3740 // "unsigned char" on systems where "char" is unsigned.
Chris Lattner6a2b9262009-10-17 20:33:28 +00003741 if (lhptee->isCharType())
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003742 lhptee = Context.UnsignedCharTy;
Chris Lattner6a2b9262009-10-17 20:33:28 +00003743 else if (lhptee->isSignedIntegerType())
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003744 lhptee = Context.getCorrespondingUnsignedType(lhptee);
Chris Lattner6a2b9262009-10-17 20:33:28 +00003745
3746 if (rhptee->isCharType())
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003747 rhptee = Context.UnsignedCharTy;
Chris Lattner6a2b9262009-10-17 20:33:28 +00003748 else if (rhptee->isSignedIntegerType())
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003749 rhptee = Context.getCorrespondingUnsignedType(rhptee);
Chris Lattner6a2b9262009-10-17 20:33:28 +00003750
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003751 if (lhptee == rhptee) {
3752 // Types are compatible ignoring the sign. Qualifier incompatibility
3753 // takes priority over sign incompatibility because the sign
3754 // warning can be disabled.
3755 if (ConvTy != Compatible)
3756 return ConvTy;
3757 return IncompatiblePointerSign;
3758 }
3759 // General pointer incompatibility takes priority over qualifiers.
Mike Stump1eb44332009-09-09 15:08:12 +00003760 return IncompatiblePointer;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00003761 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00003762 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00003763}
3764
Steve Naroff1c7d0672008-09-04 15:10:53 +00003765/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3766/// block pointer types are compatible or whether a block and normal pointer
3767/// are compatible. It is more restrict than comparing two function pointer
3768// types.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003769Sema::AssignConvertType
3770Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff1c7d0672008-09-04 15:10:53 +00003771 QualType rhsType) {
3772 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003773
Steve Naroff1c7d0672008-09-04 15:10:53 +00003774 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenek6217b802009-07-29 21:53:49 +00003775 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
3776 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003777
Steve Naroff1c7d0672008-09-04 15:10:53 +00003778 // make sure we operate on the canonical type
3779 lhptee = Context.getCanonicalType(lhptee);
3780 rhptee = Context.getCanonicalType(rhptee);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003781
Steve Naroff1c7d0672008-09-04 15:10:53 +00003782 AssignConvertType ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003783
Steve Naroff1c7d0672008-09-04 15:10:53 +00003784 // For blocks we enforce that qualifiers are identical.
3785 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3786 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003787
Eli Friedman26784c12009-06-08 05:08:54 +00003788 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stumpeed9cac2009-02-19 03:04:26 +00003789 return IncompatibleBlockPointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003790 return ConvTy;
3791}
3792
Mike Stumpeed9cac2009-02-19 03:04:26 +00003793/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3794/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00003795/// pointers. Here are some objectionable examples that GCC considers warnings:
3796///
3797/// int a, *pint;
3798/// short *pshort;
3799/// struct foo *pfoo;
3800///
3801/// pint = pshort; // warning: assignment from incompatible pointer type
3802/// a = pint; // warning: assignment makes integer from pointer without a cast
3803/// pint = a; // warning: assignment makes pointer from integer without a cast
3804/// pint = pfoo; // warning: assignment from incompatible pointer type
3805///
3806/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00003807/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00003808///
Chris Lattner5cf216b2008-01-04 18:04:52 +00003809Sema::AssignConvertType
Reid Spencer5f016e22007-07-11 17:01:13 +00003810Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnerfc144e22008-01-04 23:18:45 +00003811 // Get canonical types. We're not formatting these types, just comparing
3812 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00003813 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3814 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003815
3816 if (lhsType == rhsType)
Chris Lattnerd2656dd2008-01-07 17:51:46 +00003817 return Compatible; // Common case: fast path an exact match.
Steve Naroff700204c2007-07-24 21:46:40 +00003818
David Chisnall0f436562009-08-17 16:35:33 +00003819 if ((lhsType->isObjCClassType() &&
3820 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3821 (rhsType->isObjCClassType() &&
3822 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3823 return Compatible;
3824 }
3825
Douglas Gregor9d293df2008-10-28 00:22:11 +00003826 // If the left-hand side is a reference type, then we are in a
3827 // (rare!) case where we've allowed the use of references in C,
3828 // e.g., as a parameter type in a built-in function. In this case,
3829 // just make sure that the type referenced is compatible with the
3830 // right-hand side type. The caller is responsible for adjusting
3831 // lhsType so that the resulting expression does not have reference
3832 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00003833 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor9d293df2008-10-28 00:22:11 +00003834 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson793680e2007-10-12 23:56:29 +00003835 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003836 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00003837 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00003838 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3839 // to the same ExtVector type.
3840 if (lhsType->isExtVectorType()) {
3841 if (rhsType->isExtVectorType())
3842 return lhsType == rhsType ? Compatible : Incompatible;
3843 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3844 return Compatible;
3845 }
Mike Stump1eb44332009-09-09 15:08:12 +00003846
Nate Begemanbe2341d2008-07-14 18:02:46 +00003847 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003848 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stumpeed9cac2009-02-19 03:04:26 +00003849 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begemanbe2341d2008-07-14 18:02:46 +00003850 // no bits are changed but the result type is different.
Chris Lattnere8b3e962008-01-04 23:32:24 +00003851 if (getLangOptions().LaxVectorConversions &&
3852 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00003853 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00003854 return IncompatibleVectors;
Chris Lattnere8b3e962008-01-04 23:32:24 +00003855 }
3856 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003857 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003858
Chris Lattnere8b3e962008-01-04 23:32:24 +00003859 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Reid Spencer5f016e22007-07-11 17:01:13 +00003860 return Compatible;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003861
Chris Lattner78eca282008-04-07 06:49:41 +00003862 if (isa<PointerType>(lhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003863 if (rhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003864 return IntToPointer;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003865
Chris Lattner78eca282008-04-07 06:49:41 +00003866 if (isa<PointerType>(rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003867 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003868
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003869 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003870 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003871 if (lhsType->isVoidPointerType()) // an exception to the rule.
3872 return Compatible;
3873 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003874 }
Ted Kremenek6217b802009-07-29 21:53:49 +00003875 if (rhsType->getAs<BlockPointerType>()) {
3876 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003877 return Compatible;
Steve Naroffb4406862008-09-29 18:10:17 +00003878
3879 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003880 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003881 return Compatible;
3882 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00003883 return Incompatible;
3884 }
3885
3886 if (isa<BlockPointerType>(lhsType)) {
3887 if (rhsType->isIntegerType())
Eli Friedmand8f4f432009-02-25 04:20:42 +00003888 return IntToBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003889
Steve Naroffb4406862008-09-29 18:10:17 +00003890 // Treat block pointers as objects.
Steve Naroff14108da2009-07-10 23:34:53 +00003891 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroffb4406862008-09-29 18:10:17 +00003892 return Compatible;
3893
Steve Naroff1c7d0672008-09-04 15:10:53 +00003894 if (rhsType->isBlockPointerType())
3895 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003896
Ted Kremenek6217b802009-07-29 21:53:49 +00003897 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff1c7d0672008-09-04 15:10:53 +00003898 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003899 return Compatible;
Steve Naroff1c7d0672008-09-04 15:10:53 +00003900 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00003901 return Incompatible;
3902 }
3903
Steve Naroff14108da2009-07-10 23:34:53 +00003904 if (isa<ObjCObjectPointerType>(lhsType)) {
3905 if (rhsType->isIntegerType())
3906 return IntToPointer;
Mike Stump1eb44332009-09-09 15:08:12 +00003907
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003908 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003909 if (isa<PointerType>(rhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003910 if (rhsType->isVoidPointerType()) // an exception to the rule.
3911 return Compatible;
3912 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003913 }
3914 if (rhsType->isObjCObjectPointerType()) {
Steve Naroffde2e22d2009-07-15 18:40:39 +00003915 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3916 return Compatible;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003917 if (Context.typesAreCompatible(lhsType, rhsType))
3918 return Compatible;
Steve Naroff4084c302009-07-23 01:01:38 +00003919 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
3920 return IncompatibleObjCQualifiedId;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003921 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003922 }
Ted Kremenek6217b802009-07-29 21:53:49 +00003923 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003924 if (RHSPT->getPointeeType()->isVoidType())
3925 return Compatible;
3926 }
3927 // Treat block pointers as objects.
3928 if (rhsType->isBlockPointerType())
3929 return Compatible;
3930 return Incompatible;
3931 }
Chris Lattner78eca282008-04-07 06:49:41 +00003932 if (isa<PointerType>(rhsType)) {
Reid Spencer5f016e22007-07-11 17:01:13 +00003933 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003934 if (lhsType == Context.BoolTy)
3935 return Compatible;
3936
3937 if (lhsType->isIntegerType())
Chris Lattnerb7b61152008-01-04 18:22:42 +00003938 return PointerToInt;
Reid Spencer5f016e22007-07-11 17:01:13 +00003939
Mike Stumpeed9cac2009-02-19 03:04:26 +00003940 if (isa<PointerType>(lhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003941 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003942
3943 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003944 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregor63a94902008-11-27 00:44:28 +00003945 return Compatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003946 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00003947 }
Steve Naroff14108da2009-07-10 23:34:53 +00003948 if (isa<ObjCObjectPointerType>(rhsType)) {
3949 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3950 if (lhsType == Context.BoolTy)
3951 return Compatible;
3952
3953 if (lhsType->isIntegerType())
3954 return PointerToInt;
3955
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003956 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00003957 if (isa<PointerType>(lhsType)) {
Steve Naroff67ef8ea2009-07-20 17:56:53 +00003958 if (lhsType->isVoidPointerType()) // an exception to the rule.
3959 return Compatible;
3960 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00003961 }
3962 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenek6217b802009-07-29 21:53:49 +00003963 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff14108da2009-07-10 23:34:53 +00003964 return Compatible;
3965 return Incompatible;
3966 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00003967
Chris Lattnerfc144e22008-01-04 23:18:45 +00003968 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattner78eca282008-04-07 06:49:41 +00003969 if (Context.typesAreCompatible(lhsType, rhsType))
Reid Spencer5f016e22007-07-11 17:01:13 +00003970 return Compatible;
Reid Spencer5f016e22007-07-11 17:01:13 +00003971 }
3972 return Incompatible;
3973}
3974
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003975/// \brief Constructs a transparent union from an expression that is
3976/// used to initialize the transparent union.
Mike Stump1eb44332009-09-09 15:08:12 +00003977static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003978 QualType UnionType, FieldDecl *Field) {
3979 // Build an initializer list that designates the appropriate member
3980 // of the transparent union.
3981 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3982 &E, 1,
3983 SourceLocation());
3984 Initializer->setType(UnionType);
3985 Initializer->setInitializedFieldInUnion(Field);
3986
3987 // Build a compound literal constructing a value of the transparent
3988 // union type from this initializer list.
3989 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3990 false);
3991}
3992
3993Sema::AssignConvertType
3994Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
3995 QualType FromType = rExpr->getType();
3996
Mike Stump1eb44332009-09-09 15:08:12 +00003997 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00003998 // transparent_union GCC extension.
3999 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00004000 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004001 return Incompatible;
4002
4003 // The field to initialize within the transparent union.
4004 RecordDecl *UD = UT->getDecl();
4005 FieldDecl *InitField = 0;
4006 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00004007 for (RecordDecl::field_iterator it = UD->field_begin(),
4008 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004009 it != itend; ++it) {
4010 if (it->getType()->isPointerType()) {
4011 // If the transparent union contains a pointer type, we allow:
4012 // 1) void pointer
4013 // 2) null pointer constant
4014 if (FromType->isPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +00004015 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004016 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004017 InitField = *it;
4018 break;
4019 }
Mike Stump1eb44332009-09-09 15:08:12 +00004020
Douglas Gregorce940492009-09-25 04:25:58 +00004021 if (rExpr->isNullPointerConstant(Context,
4022 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004023 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004024 InitField = *it;
4025 break;
4026 }
4027 }
4028
4029 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
4030 == Compatible) {
4031 InitField = *it;
4032 break;
4033 }
4034 }
4035
4036 if (!InitField)
4037 return Incompatible;
4038
4039 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
4040 return Compatible;
4041}
4042
Chris Lattner5cf216b2008-01-04 18:04:52 +00004043Sema::AssignConvertType
Steve Naroff90045e82007-07-13 23:32:42 +00004044Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00004045 if (getLangOptions().CPlusPlus) {
4046 if (!lhsType->isRecordType()) {
4047 // C++ 5.17p3: If the left operand is not of class type, the
4048 // expression is implicitly converted (C++ 4) to the
4049 // cv-unqualified type of the left operand.
Douglas Gregor45920e82008-12-19 17:40:08 +00004050 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
4051 "assigning"))
Douglas Gregor98cd5992008-10-21 23:43:52 +00004052 return Incompatible;
Chris Lattner2c4463f2009-04-12 09:02:39 +00004053 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00004054 }
4055
4056 // FIXME: Currently, we fall through and treat C++ classes like C
4057 // structures.
4058 }
4059
Steve Naroff529a4ad2007-11-27 17:58:44 +00004060 // C99 6.5.16.1p1: the left operand is a pointer and the right is
4061 // a null pointer constant.
Mike Stump1eb44332009-09-09 15:08:12 +00004062 if ((lhsType->isPointerType() ||
4063 lhsType->isObjCObjectPointerType() ||
Mike Stumpeed9cac2009-02-19 03:04:26 +00004064 lhsType->isBlockPointerType())
Douglas Gregorce940492009-09-25 04:25:58 +00004065 && rExpr->isNullPointerConstant(Context,
4066 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004067 ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown);
Steve Naroff529a4ad2007-11-27 17:58:44 +00004068 return Compatible;
4069 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004070
Chris Lattner943140e2007-10-16 02:55:40 +00004071 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00004072 // conversion of functions/arrays. If the conversion were done for all
Steve Naroff08d92e42007-09-15 18:49:24 +00004073 // DeclExpr's (created by ActOnIdentifierExpr), it would mess up the unary
Steve Naroff90045e82007-07-13 23:32:42 +00004074 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00004075 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00004076 // Suppress this for references: C++ 8.5.3p5.
Chris Lattner943140e2007-10-16 02:55:40 +00004077 if (!lhsType->isReferenceType())
4078 DefaultFunctionArrayConversion(rExpr);
Steve Narofff1120de2007-08-24 22:33:52 +00004079
Chris Lattner5cf216b2008-01-04 18:04:52 +00004080 Sema::AssignConvertType result =
4081 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004082
Steve Narofff1120de2007-08-24 22:33:52 +00004083 // C99 6.5.16.1p2: The value of the right operand is converted to the
4084 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00004085 // CheckAssignmentConstraints allows the left-hand side to be a reference,
4086 // so that we can use references in built-in functions even in C.
4087 // The getNonReferenceType() call makes sure that the resulting expression
4088 // does not have reference type.
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00004089 if (result != Incompatible && rExpr->getType() != lhsType)
Eli Friedman73c39ab2009-10-20 08:27:19 +00004090 ImpCastExprToType(rExpr, lhsType.getNonReferenceType(),
4091 CastExpr::CK_Unknown);
Steve Narofff1120de2007-08-24 22:33:52 +00004092 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00004093}
4094
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004095QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004096 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner22caddc2008-11-23 09:13:29 +00004097 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004098 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00004099 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004100}
4101
Mike Stumpeed9cac2009-02-19 03:04:26 +00004102inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff49b45262007-07-13 16:58:59 +00004103 Expr *&rex) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00004104 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00004105 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00004106 QualType lhsType =
4107 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
4108 QualType rhsType =
4109 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004110
Nate Begemanbe2341d2008-07-14 18:02:46 +00004111 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00004112 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00004113 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00004114
Nate Begemanbe2341d2008-07-14 18:02:46 +00004115 // Handle the case of a vector & extvector type of the same size and element
4116 // type. It would be nice if we only had one vector type someday.
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004117 if (getLangOptions().LaxVectorConversions) {
4118 // FIXME: Should we warn here?
John McCall183700f2009-09-21 23:43:11 +00004119 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
4120 if (const VectorType *RV = rhsType->getAs<VectorType>())
Nate Begemanbe2341d2008-07-14 18:02:46 +00004121 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004122 LV->getNumElements() == RV->getNumElements()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00004123 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00004124 }
4125 }
4126 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004127
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004128 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
4129 // swap back (so that we don't reverse the inputs to a subtract, for instance.
4130 bool swapped = false;
4131 if (rhsType->isExtVectorType()) {
4132 swapped = true;
4133 std::swap(rex, lex);
4134 std::swap(rhsType, lhsType);
4135 }
Mike Stump1eb44332009-09-09 15:08:12 +00004136
Nate Begemandde25982009-06-28 19:12:57 +00004137 // Handle the case of an ext vector and scalar.
John McCall183700f2009-09-21 23:43:11 +00004138 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004139 QualType EltTy = LV->getElementType();
4140 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
4141 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004142 ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004143 if (swapped) std::swap(rex, lex);
4144 return lhsType;
4145 }
4146 }
4147 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
4148 rhsType->isRealFloatingType()) {
4149 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004150 ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00004151 if (swapped) std::swap(rex, lex);
4152 return lhsType;
4153 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00004154 }
4155 }
Mike Stump1eb44332009-09-09 15:08:12 +00004156
Nate Begemandde25982009-06-28 19:12:57 +00004157 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004158 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattnerd1625842008-11-24 06:25:27 +00004159 << lex->getType() << rex->getType()
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004160 << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004161 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00004162}
4163
Reid Spencer5f016e22007-07-11 17:01:13 +00004164inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004165 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar69d1d002009-01-05 22:42:10 +00004166 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004167 return CheckVectorOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004168
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004169 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004170
Steve Naroffa4332e22007-07-17 00:58:39 +00004171 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004172 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004173 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004174}
4175
4176inline QualType Sema::CheckRemainderOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004177 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar523aa602009-01-05 22:55:36 +00004178 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4179 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
4180 return CheckVectorOperands(Loc, lex, rex);
4181 return InvalidOperands(Loc, lex, rex);
4182 }
Steve Naroff90045e82007-07-13 23:32:42 +00004183
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004184 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004185
Steve Naroffa4332e22007-07-17 00:58:39 +00004186 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004187 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004188 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004189}
4190
4191inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Mike Stump1eb44332009-09-09 15:08:12 +00004192 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004193 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4194 QualType compType = CheckVectorOperands(Loc, lex, rex);
4195 if (CompLHSTy) *CompLHSTy = compType;
4196 return compType;
4197 }
Steve Naroff49b45262007-07-13 16:58:59 +00004198
Eli Friedmanab3a8522009-03-28 01:22:36 +00004199 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedmand72d16e2008-05-18 18:08:51 +00004200
Reid Spencer5f016e22007-07-11 17:01:13 +00004201 // handle the common case first (both operands are arithmetic).
Eli Friedmanab3a8522009-03-28 01:22:36 +00004202 if (lex->getType()->isArithmeticType() &&
4203 rex->getType()->isArithmeticType()) {
4204 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004205 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004206 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004207
Eli Friedmand72d16e2008-05-18 18:08:51 +00004208 // Put any potential pointer into PExp
4209 Expr* PExp = lex, *IExp = rex;
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004210 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00004211 std::swap(PExp, IExp);
4212
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004213 if (PExp->getType()->isAnyPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00004214
Eli Friedmand72d16e2008-05-18 18:08:51 +00004215 if (IExp->getType()->isIntegerType()) {
Steve Naroff760e3c42009-07-13 21:20:41 +00004216 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00004217
Chris Lattnerb5f15622009-04-24 23:50:08 +00004218 // Check for arithmetic on pointers to incomplete types.
4219 if (PointeeTy->isVoidType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00004220 if (getLangOptions().CPlusPlus) {
4221 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00004222 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregor4ec339f2009-01-19 19:26:10 +00004223 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00004224 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004225
4226 // GNU extension: arithmetic on pointer to void
4227 Diag(Loc, diag::ext_gnu_void_ptr)
4228 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00004229 } else if (PointeeTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00004230 if (getLangOptions().CPlusPlus) {
4231 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
4232 << lex->getType() << lex->getSourceRange();
4233 return QualType();
4234 }
4235
4236 // GNU extension: arithmetic on pointer to function
4237 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4238 << lex->getType() << lex->getSourceRange();
Steve Naroff9deaeca2009-07-13 21:32:29 +00004239 } else {
Steve Naroff760e3c42009-07-13 21:20:41 +00004240 // Check if we require a complete type.
Mike Stump1eb44332009-09-09 15:08:12 +00004241 if (((PExp->getType()->isPointerType() &&
Steve Naroff9deaeca2009-07-13 21:32:29 +00004242 !PExp->getType()->isDependentType()) ||
Steve Naroff760e3c42009-07-13 21:20:41 +00004243 PExp->getType()->isObjCObjectPointerType()) &&
4244 RequireCompleteType(Loc, PointeeTy,
Mike Stump1eb44332009-09-09 15:08:12 +00004245 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
4246 << PExp->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00004247 << PExp->getType()))
Steve Naroff760e3c42009-07-13 21:20:41 +00004248 return QualType();
4249 }
Chris Lattnerb5f15622009-04-24 23:50:08 +00004250 // Diagnose bad cases where we step over interface counts.
4251 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4252 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4253 << PointeeTy << PExp->getSourceRange();
4254 return QualType();
4255 }
Mike Stump1eb44332009-09-09 15:08:12 +00004256
Eli Friedmanab3a8522009-03-28 01:22:36 +00004257 if (CompLHSTy) {
Eli Friedman04e83572009-08-20 04:21:42 +00004258 QualType LHSTy = Context.isPromotableBitField(lex);
4259 if (LHSTy.isNull()) {
4260 LHSTy = lex->getType();
4261 if (LHSTy->isPromotableIntegerType())
4262 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregor2d833e32009-05-02 00:36:19 +00004263 }
Eli Friedmanab3a8522009-03-28 01:22:36 +00004264 *CompLHSTy = LHSTy;
4265 }
Eli Friedmand72d16e2008-05-18 18:08:51 +00004266 return PExp->getType();
4267 }
4268 }
4269
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004270 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004271}
4272
Chris Lattnereca7be62008-04-07 05:30:13 +00004273// C99 6.5.6
4274QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedmanab3a8522009-03-28 01:22:36 +00004275 SourceLocation Loc, QualType* CompLHSTy) {
4276 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4277 QualType compType = CheckVectorOperands(Loc, lex, rex);
4278 if (CompLHSTy) *CompLHSTy = compType;
4279 return compType;
4280 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004281
Eli Friedmanab3a8522009-03-28 01:22:36 +00004282 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004283
Chris Lattner6e4ab612007-12-09 21:53:25 +00004284 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004285
Chris Lattner6e4ab612007-12-09 21:53:25 +00004286 // Handle the common case first (both operands are arithmetic).
Mike Stumpaf199f32009-05-07 18:43:07 +00004287 if (lex->getType()->isArithmeticType()
4288 && rex->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00004289 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004290 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00004291 }
Mike Stump1eb44332009-09-09 15:08:12 +00004292
Chris Lattner6e4ab612007-12-09 21:53:25 +00004293 // Either ptr - int or ptr - ptr.
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004294 if (lex->getType()->isAnyPointerType()) {
Steve Naroff430ee5a2009-07-13 17:19:15 +00004295 QualType lpointee = lex->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004296
Douglas Gregore7450f52009-03-24 19:52:54 +00004297 // The LHS must be an completely-defined object type.
Douglas Gregorc983b862009-01-23 00:36:41 +00004298
Douglas Gregore7450f52009-03-24 19:52:54 +00004299 bool ComplainAboutVoid = false;
4300 Expr *ComplainAboutFunc = 0;
4301 if (lpointee->isVoidType()) {
4302 if (getLangOptions().CPlusPlus) {
4303 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4304 << lex->getSourceRange() << rex->getSourceRange();
4305 return QualType();
4306 }
4307
4308 // GNU C extension: arithmetic on pointer to void
4309 ComplainAboutVoid = true;
4310 } else if (lpointee->isFunctionType()) {
4311 if (getLangOptions().CPlusPlus) {
4312 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00004313 << lex->getType() << lex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004314 return QualType();
4315 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004316
4317 // GNU C extension: arithmetic on pointer to function
4318 ComplainAboutFunc = lex;
4319 } else if (!lpointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00004320 RequireCompleteType(Loc, lpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00004321 PDiag(diag::err_typecheck_sub_ptr_object)
Mike Stump1eb44332009-09-09 15:08:12 +00004322 << lex->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00004323 << lex->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00004324 return QualType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004325
Chris Lattnerb5f15622009-04-24 23:50:08 +00004326 // Diagnose bad cases where we step over interface counts.
4327 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4328 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4329 << lpointee << lex->getSourceRange();
4330 return QualType();
4331 }
Mike Stump1eb44332009-09-09 15:08:12 +00004332
Chris Lattner6e4ab612007-12-09 21:53:25 +00004333 // The result type of a pointer-int computation is the pointer type.
Douglas Gregore7450f52009-03-24 19:52:54 +00004334 if (rex->getType()->isIntegerType()) {
4335 if (ComplainAboutVoid)
4336 Diag(Loc, diag::ext_gnu_void_ptr)
4337 << lex->getSourceRange() << rex->getSourceRange();
4338 if (ComplainAboutFunc)
4339 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00004340 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00004341 << ComplainAboutFunc->getSourceRange();
4342
Eli Friedmanab3a8522009-03-28 01:22:36 +00004343 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004344 return lex->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00004345 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004346
Chris Lattner6e4ab612007-12-09 21:53:25 +00004347 // Handle pointer-pointer subtractions.
Ted Kremenek6217b802009-07-29 21:53:49 +00004348 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00004349 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004350
Douglas Gregore7450f52009-03-24 19:52:54 +00004351 // RHS must be a completely-type object type.
4352 // Handle the GNU void* extension.
4353 if (rpointee->isVoidType()) {
4354 if (getLangOptions().CPlusPlus) {
4355 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4356 << lex->getSourceRange() << rex->getSourceRange();
4357 return QualType();
4358 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004359
Douglas Gregore7450f52009-03-24 19:52:54 +00004360 ComplainAboutVoid = true;
4361 } else if (rpointee->isFunctionType()) {
4362 if (getLangOptions().CPlusPlus) {
4363 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattnerd1625842008-11-24 06:25:27 +00004364 << rex->getType() << rex->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004365 return QualType();
4366 }
Douglas Gregore7450f52009-03-24 19:52:54 +00004367
4368 // GNU extension: arithmetic on pointer to function
4369 if (!ComplainAboutFunc)
4370 ComplainAboutFunc = rex;
4371 } else if (!rpointee->isDependentType() &&
4372 RequireCompleteType(Loc, rpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00004373 PDiag(diag::err_typecheck_sub_ptr_object)
4374 << rex->getSourceRange()
4375 << rex->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00004376 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004377
Eli Friedman88d936b2009-05-16 13:54:38 +00004378 if (getLangOptions().CPlusPlus) {
4379 // Pointee types must be the same: C++ [expr.add]
4380 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4381 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4382 << lex->getType() << rex->getType()
4383 << lex->getSourceRange() << rex->getSourceRange();
4384 return QualType();
4385 }
4386 } else {
4387 // Pointee types must be compatible C99 6.5.6p3
4388 if (!Context.typesAreCompatible(
4389 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4390 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4391 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4392 << lex->getType() << rex->getType()
4393 << lex->getSourceRange() << rex->getSourceRange();
4394 return QualType();
4395 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00004396 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004397
Douglas Gregore7450f52009-03-24 19:52:54 +00004398 if (ComplainAboutVoid)
4399 Diag(Loc, diag::ext_gnu_void_ptr)
4400 << lex->getSourceRange() << rex->getSourceRange();
4401 if (ComplainAboutFunc)
4402 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00004403 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00004404 << ComplainAboutFunc->getSourceRange();
Eli Friedmanab3a8522009-03-28 01:22:36 +00004405
4406 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00004407 return Context.getPointerDiffType();
4408 }
4409 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004410
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004411 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004412}
4413
Chris Lattnereca7be62008-04-07 05:30:13 +00004414// C99 6.5.7
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004415QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattnereca7be62008-04-07 05:30:13 +00004416 bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00004417 // C99 6.5.7p2: Each of the operands shall have integer type.
4418 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004419 return InvalidOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004420
Nate Begeman2207d792009-10-25 02:26:48 +00004421 // Vector shifts promote their scalar inputs to vector type.
4422 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
4423 return CheckVectorOperands(Loc, lex, rex);
4424
Chris Lattnerca5eede2007-12-12 05:47:28 +00004425 // Shifts don't perform usual arithmetic conversions, they just do integer
4426 // promotions on each operand. C99 6.5.7p3
Eli Friedman04e83572009-08-20 04:21:42 +00004427 QualType LHSTy = Context.isPromotableBitField(lex);
4428 if (LHSTy.isNull()) {
4429 LHSTy = lex->getType();
4430 if (LHSTy->isPromotableIntegerType())
4431 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregor2d833e32009-05-02 00:36:19 +00004432 }
Chris Lattner1dcf2c82007-12-13 07:28:16 +00004433 if (!isCompAssign)
Eli Friedman73c39ab2009-10-20 08:27:19 +00004434 ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast);
Eli Friedmanab3a8522009-03-28 01:22:36 +00004435
Chris Lattnerca5eede2007-12-12 05:47:28 +00004436 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004437
Ryan Flynnd0439682009-08-07 16:20:20 +00004438 // Sanity-check shift operands
4439 llvm::APSInt Right;
4440 // Check right/shifter operand
Daniel Dunbar3f180c62009-09-17 06:31:27 +00004441 if (!rex->isValueDependent() &&
4442 rex->isIntegerConstantExpr(Right, Context)) {
Ryan Flynn8045c732009-08-08 19:18:23 +00004443 if (Right.isNegative())
Ryan Flynnd0439682009-08-07 16:20:20 +00004444 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4445 else {
4446 llvm::APInt LeftBits(Right.getBitWidth(),
4447 Context.getTypeSize(lex->getType()));
4448 if (Right.uge(LeftBits))
4449 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4450 }
4451 }
4452
Chris Lattnerca5eede2007-12-12 05:47:28 +00004453 // "The type of the result is that of the promoted left operand."
Eli Friedmanab3a8522009-03-28 01:22:36 +00004454 return LHSTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004455}
4456
Douglas Gregor0c6db942009-05-04 06:07:12 +00004457// C99 6.5.8, C++ [expr.rel]
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004458QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregora86b8322009-04-06 18:45:53 +00004459 unsigned OpaqueOpc, bool isRelational) {
4460 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4461
Nate Begemanbe2341d2008-07-14 18:02:46 +00004462 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004463 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004464
Chris Lattnera5937dd2007-08-26 01:18:55 +00004465 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff30bf7712007-08-10 18:26:40 +00004466 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4467 UsualArithmeticConversions(lex, rex);
4468 else {
4469 UsualUnaryConversions(lex);
4470 UsualUnaryConversions(rex);
4471 }
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004472 QualType lType = lex->getType();
4473 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004474
Mike Stumpaf199f32009-05-07 18:43:07 +00004475 if (!lType->isFloatingType()
4476 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner55660a72009-03-08 19:39:53 +00004477 // For non-floating point types, check for self-comparisons of the form
4478 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4479 // often indicate logic errors in the program.
Mike Stump1eb44332009-09-09 15:08:12 +00004480 // NOTE: Don't warn about comparisons of enum constants. These can arise
Ted Kremenek9ecede72009-03-20 19:57:37 +00004481 // from macro expansions, and are usually quite deliberate.
Chris Lattner55660a72009-03-08 19:39:53 +00004482 Expr *LHSStripped = lex->IgnoreParens();
4483 Expr *RHSStripped = rex->IgnoreParens();
4484 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4485 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenekb82dcd82009-03-20 18:35:45 +00004486 if (DRL->getDecl() == DRR->getDecl() &&
4487 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stumpeed9cac2009-02-19 03:04:26 +00004488 Diag(Loc, diag::warn_selfcomparison);
Mike Stump1eb44332009-09-09 15:08:12 +00004489
Chris Lattner55660a72009-03-08 19:39:53 +00004490 if (isa<CastExpr>(LHSStripped))
4491 LHSStripped = LHSStripped->IgnoreParenCasts();
4492 if (isa<CastExpr>(RHSStripped))
4493 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00004494
Chris Lattner55660a72009-03-08 19:39:53 +00004495 // Warn about comparisons against a string constant (unless the other
4496 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00004497 Expr *literalString = 0;
4498 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00004499 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregorce940492009-09-25 04:25:58 +00004500 !RHSStripped->isNullPointerConstant(Context,
4501 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregora86b8322009-04-06 18:45:53 +00004502 literalString = lex;
4503 literalStringStripped = LHSStripped;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00004504 } else if ((isa<StringLiteral>(RHSStripped) ||
4505 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregorce940492009-09-25 04:25:58 +00004506 !LHSStripped->isNullPointerConstant(Context,
4507 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregora86b8322009-04-06 18:45:53 +00004508 literalString = rex;
4509 literalStringStripped = RHSStripped;
4510 }
4511
4512 if (literalString) {
4513 std::string resultComparison;
4514 switch (Opc) {
4515 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4516 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4517 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4518 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4519 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4520 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4521 default: assert(false && "Invalid comparison operator");
4522 }
4523 Diag(Loc, diag::warn_stringcompare)
4524 << isa<ObjCEncodeExpr>(literalStringStripped)
4525 << literalString->getSourceRange()
Douglas Gregora3a83512009-04-01 23:51:29 +00004526 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4527 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4528 "strcmp(")
4529 << CodeModificationHint::CreateInsertion(
4530 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregora86b8322009-04-06 18:45:53 +00004531 resultComparison);
4532 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00004533 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004534
Douglas Gregor447b69e2008-11-19 03:25:36 +00004535 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner55660a72009-03-08 19:39:53 +00004536 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregor447b69e2008-11-19 03:25:36 +00004537
Chris Lattnera5937dd2007-08-26 01:18:55 +00004538 if (isRelational) {
4539 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004540 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004541 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004542 // Check for comparisons of floating point operands using != and ==.
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00004543 if (lType->isFloatingType()) {
Chris Lattner55660a72009-03-08 19:39:53 +00004544 assert(rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004545 CheckFloatComparison(Loc,lex,rex);
Ted Kremenek6a261552007-10-29 16:40:01 +00004546 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004547
Chris Lattnera5937dd2007-08-26 01:18:55 +00004548 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00004549 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00004550 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004551
Douglas Gregorce940492009-09-25 04:25:58 +00004552 bool LHSIsNull = lex->isNullPointerConstant(Context,
4553 Expr::NPC_ValueDependentIsNull);
4554 bool RHSIsNull = rex->isNullPointerConstant(Context,
4555 Expr::NPC_ValueDependentIsNull);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004556
Chris Lattnera5937dd2007-08-26 01:18:55 +00004557 // All of the following pointer related warnings are GCC extensions, except
4558 // when handling null pointer constants. One day, we can consider making them
4559 // errors (when -pedantic-errors is enabled).
Steve Naroff77878cc2007-08-27 04:08:11 +00004560 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00004561 QualType LCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00004562 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00004563 QualType RCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00004564 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00004565
Douglas Gregor0c6db942009-05-04 06:07:12 +00004566 if (getLangOptions().CPlusPlus) {
Eli Friedman3075e762009-08-23 00:27:47 +00004567 if (LCanPointeeTy == RCanPointeeTy)
4568 return ResultTy;
4569
Douglas Gregor0c6db942009-05-04 06:07:12 +00004570 // C++ [expr.rel]p2:
4571 // [...] Pointer conversions (4.10) and qualification
4572 // conversions (4.4) are performed on pointer operands (or on
4573 // a pointer operand and a null pointer constant) to bring
4574 // them to their composite pointer type. [...]
4575 //
Douglas Gregor20b3e992009-08-24 17:42:35 +00004576 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor0c6db942009-05-04 06:07:12 +00004577 // comparisons of pointers.
Douglas Gregorde866f32009-05-05 04:50:50 +00004578 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor0c6db942009-05-04 06:07:12 +00004579 if (T.isNull()) {
4580 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4581 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4582 return QualType();
4583 }
4584
Eli Friedman73c39ab2009-10-20 08:27:19 +00004585 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
4586 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregor0c6db942009-05-04 06:07:12 +00004587 return ResultTy;
4588 }
Eli Friedman3075e762009-08-23 00:27:47 +00004589 // C99 6.5.9p2 and C99 6.5.8p2
4590 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
4591 RCanPointeeTy.getUnqualifiedType())) {
4592 // Valid unless a relational comparison of function pointers
4593 if (isRelational && LCanPointeeTy->isFunctionType()) {
4594 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4595 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4596 }
4597 } else if (!isRelational &&
4598 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
4599 // Valid unless comparison between non-null pointer and function pointer
4600 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
4601 && !LHSIsNull && !RHSIsNull) {
4602 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
4603 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4604 }
4605 } else {
4606 // Invalid
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004607 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004608 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00004609 }
Eli Friedman3075e762009-08-23 00:27:47 +00004610 if (LCanPointeeTy != RCanPointeeTy)
Eli Friedman73c39ab2009-10-20 08:27:19 +00004611 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004612 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004613 }
Mike Stump1eb44332009-09-09 15:08:12 +00004614
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004615 if (getLangOptions().CPlusPlus) {
Mike Stump1eb44332009-09-09 15:08:12 +00004616 // Comparison of pointers with null pointer constants and equality
Douglas Gregor20b3e992009-08-24 17:42:35 +00004617 // comparisons of member pointers to null pointer constants.
Mike Stump1eb44332009-09-09 15:08:12 +00004618 if (RHSIsNull &&
Douglas Gregor20b3e992009-08-24 17:42:35 +00004619 (lType->isPointerType() ||
4620 (!isRelational && lType->isMemberPointerType()))) {
Anders Carlsson26ba8502009-08-24 18:03:14 +00004621 ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004622 return ResultTy;
4623 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00004624 if (LHSIsNull &&
4625 (rType->isPointerType() ||
4626 (!isRelational && rType->isMemberPointerType()))) {
Anders Carlsson26ba8502009-08-24 18:03:14 +00004627 ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004628 return ResultTy;
4629 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00004630
4631 // Comparison of member pointers.
Mike Stump1eb44332009-09-09 15:08:12 +00004632 if (!isRelational &&
Douglas Gregor20b3e992009-08-24 17:42:35 +00004633 lType->isMemberPointerType() && rType->isMemberPointerType()) {
4634 // C++ [expr.eq]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00004635 // In addition, pointers to members can be compared, or a pointer to
4636 // member and a null pointer constant. Pointer to member conversions
4637 // (4.11) and qualification conversions (4.4) are performed to bring
4638 // them to a common type. If one operand is a null pointer constant,
4639 // the common type is the type of the other operand. Otherwise, the
4640 // common type is a pointer to member type similar (4.4) to the type
4641 // of one of the operands, with a cv-qualification signature (4.4)
4642 // that is the union of the cv-qualification signatures of the operand
Douglas Gregor20b3e992009-08-24 17:42:35 +00004643 // types.
4644 QualType T = FindCompositePointerType(lex, rex);
4645 if (T.isNull()) {
4646 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4647 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4648 return QualType();
4649 }
Mike Stump1eb44332009-09-09 15:08:12 +00004650
Eli Friedman73c39ab2009-10-20 08:27:19 +00004651 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
4652 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregor20b3e992009-08-24 17:42:35 +00004653 return ResultTy;
4654 }
Mike Stump1eb44332009-09-09 15:08:12 +00004655
Douglas Gregor20b3e992009-08-24 17:42:35 +00004656 // Comparison of nullptr_t with itself.
Sebastian Redl6e8ed162009-05-10 18:38:11 +00004657 if (lType->isNullPtrType() && rType->isNullPtrType())
4658 return ResultTy;
4659 }
Mike Stump1eb44332009-09-09 15:08:12 +00004660
Steve Naroff1c7d0672008-09-04 15:10:53 +00004661 // Handle block pointer types.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004662 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004663 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
4664 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004665
Steve Naroff1c7d0672008-09-04 15:10:53 +00004666 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00004667 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004668 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattnerd1625842008-11-24 06:25:27 +00004669 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00004670 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00004671 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004672 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00004673 }
Steve Naroff59f53942008-09-28 01:11:11 +00004674 // Allow block pointers to be compared with null pointer constants.
Mike Stumpdd3e1662009-05-07 03:14:14 +00004675 if (!isRelational
4676 && ((lType->isBlockPointerType() && rType->isPointerType())
4677 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00004678 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004679 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004680 ->getPointeeType()->isVoidType())
Ted Kremenek6217b802009-07-29 21:53:49 +00004681 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00004682 ->getPointeeType()->isVoidType())))
4683 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4684 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00004685 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00004686 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004687 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00004688 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00004689
Steve Naroff14108da2009-07-10 23:34:53 +00004690 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroffa5ad8632008-10-27 10:33:19 +00004691 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00004692 const PointerType *LPT = lType->getAs<PointerType>();
4693 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004694 bool LPtrToVoid = LPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004695 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004696 bool RPtrToVoid = RPT ?
Steve Naroffa8069f12008-11-17 19:49:16 +00004697 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004698
Steve Naroffa8069f12008-11-17 19:49:16 +00004699 if (!LPtrToVoid && !RPtrToVoid &&
4700 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00004701 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattnerd1625842008-11-24 06:25:27 +00004702 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00004703 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00004704 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004705 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00004706 }
Steve Naroff14108da2009-07-10 23:34:53 +00004707 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004708 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff14108da2009-07-10 23:34:53 +00004709 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4710 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Eli Friedman73c39ab2009-10-20 08:27:19 +00004711 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004712 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00004713 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00004714 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004715 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004716 unsigned DiagID = 0;
4717 if (RHSIsNull) {
4718 if (isRelational)
4719 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4720 } else if (isRelational)
4721 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4722 else
4723 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00004724
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004725 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004726 Diag(Loc, DiagID)
Chris Lattner149f1382009-06-30 06:24:05 +00004727 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6365e3e2009-08-22 18:58:31 +00004728 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00004729 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004730 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00004731 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00004732 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004733 unsigned DiagID = 0;
4734 if (LHSIsNull) {
4735 if (isRelational)
4736 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4737 } else if (isRelational)
4738 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4739 else
4740 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00004741
Chris Lattner06c0f5b2009-08-23 00:03:44 +00004742 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00004743 Diag(Loc, DiagID)
Chris Lattner149f1382009-06-30 06:24:05 +00004744 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner6365e3e2009-08-22 18:58:31 +00004745 }
Eli Friedman73c39ab2009-10-20 08:27:19 +00004746 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004747 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004748 }
Steve Naroff39218df2008-09-04 16:56:14 +00004749 // Handle block pointers.
Mike Stumpaf199f32009-05-07 18:43:07 +00004750 if (!isRelational && RHSIsNull
4751 && lType->isBlockPointerType() && rType->isIntegerType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004752 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004753 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004754 }
Mike Stumpaf199f32009-05-07 18:43:07 +00004755 if (!isRelational && LHSIsNull
4756 && lType->isIntegerType() && rType->isBlockPointerType()) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00004757 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00004758 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00004759 }
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004760 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004761}
4762
Nate Begemanbe2341d2008-07-14 18:02:46 +00004763/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00004764/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004765/// like a scalar comparison, a vector comparison produces a vector of integer
4766/// types.
4767QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004768 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00004769 bool isRelational) {
4770 // Check to make sure we're operating on vectors of the same type and width,
4771 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004772 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004773 if (vType.isNull())
4774 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004775
Nate Begemanbe2341d2008-07-14 18:02:46 +00004776 QualType lType = lex->getType();
4777 QualType rType = rex->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004778
Nate Begemanbe2341d2008-07-14 18:02:46 +00004779 // For non-floating point types, check for self-comparisons of the form
4780 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4781 // often indicate logic errors in the program.
4782 if (!lType->isFloatingType()) {
4783 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4784 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4785 if (DRL->getDecl() == DRR->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00004786 Diag(Loc, diag::warn_selfcomparison);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004787 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004788
Nate Begemanbe2341d2008-07-14 18:02:46 +00004789 // Check for comparisons of floating point operands using != and ==.
4790 if (!isRelational && lType->isFloatingType()) {
4791 assert (rType->isFloatingType());
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004792 CheckFloatComparison(Loc,lex,rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00004793 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00004794
Nate Begemanbe2341d2008-07-14 18:02:46 +00004795 // Return the type for the comparison, which is the same as vector type for
4796 // integer vectors, or an integer type of identical size and number of
4797 // elements for floating point vectors.
4798 if (lType->isIntegerType())
4799 return lType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004800
John McCall183700f2009-09-21 23:43:11 +00004801 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begemanbe2341d2008-07-14 18:02:46 +00004802 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman59b5da62009-01-18 03:20:47 +00004803 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanbe2341d2008-07-14 18:02:46 +00004804 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattnerd013aa12009-03-31 07:46:52 +00004805 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman59b5da62009-01-18 03:20:47 +00004806 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4807
Mike Stumpeed9cac2009-02-19 03:04:26 +00004808 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman59b5da62009-01-18 03:20:47 +00004809 "Unhandled vector element size in vector compare");
Nate Begemanbe2341d2008-07-14 18:02:46 +00004810 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4811}
4812
Reid Spencer5f016e22007-07-11 17:01:13 +00004813inline QualType Sema::CheckBitwiseOperands(
Mike Stump1eb44332009-09-09 15:08:12 +00004814 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Steve Naroff3e5e5562007-07-16 22:23:01 +00004815 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004816 return CheckVectorOperands(Loc, lex, rex);
Steve Naroff90045e82007-07-13 23:32:42 +00004817
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004818 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004819
Steve Naroffa4332e22007-07-17 00:58:39 +00004820 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00004821 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004822 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00004823}
4824
4825inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump1eb44332009-09-09 15:08:12 +00004826 Expr *&lex, Expr *&rex, SourceLocation Loc) {
Steve Naroffc80b4ee2007-07-16 21:54:35 +00004827 UsualUnaryConversions(lex);
4828 UsualUnaryConversions(rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00004829
Anders Carlsson04905012009-10-16 01:44:21 +00004830 if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType())
4831 return InvalidOperands(Loc, lex, rex);
4832
4833 if (Context.getLangOptions().CPlusPlus) {
4834 // C++ [expr.log.and]p2
4835 // C++ [expr.log.or]p2
4836 return Context.BoolTy;
4837 }
4838
4839 return Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00004840}
4841
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004842/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4843/// is a read-only property; return true if so. A readonly property expression
4844/// depends on various declarations and thus must be treated specially.
4845///
Mike Stump1eb44332009-09-09 15:08:12 +00004846static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004847 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4848 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4849 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4850 QualType BaseType = PropExpr->getBase()->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00004851 if (const ObjCObjectPointerType *OPT =
Steve Naroff14108da2009-07-10 23:34:53 +00004852 BaseType->getAsObjCInterfacePointerType())
4853 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4854 if (S.isPropertyReadonly(PDecl, IFace))
4855 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004856 }
4857 }
4858 return false;
4859}
4860
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004861/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4862/// emit an error and return true. If so, return false.
4863static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004864 SourceLocation OrigLoc = Loc;
Mike Stump1eb44332009-09-09 15:08:12 +00004865 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004866 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00004867 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4868 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004869 if (IsLV == Expr::MLV_Valid)
4870 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004871
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004872 unsigned Diag = 0;
4873 bool NeedType = false;
4874 switch (IsLV) { // C99 6.5.16p2
4875 default: assert(0 && "Unknown result from isModifiableLvalue!");
4876 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004877 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004878 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4879 NeedType = true;
4880 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004881 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004882 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4883 NeedType = true;
4884 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00004885 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004886 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4887 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004888 case Expr::MLV_InvalidExpression:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004889 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4890 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00004891 case Expr::MLV_IncompleteType:
4892 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00004893 return S.RequireCompleteType(Loc, E->getType(),
Anders Carlssonb7906612009-08-26 23:45:07 +00004894 PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
4895 << E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00004896 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004897 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4898 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00004899 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004900 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4901 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00004902 case Expr::MLV_ReadonlyProperty:
4903 Diag = diag::error_readonly_property_assignment;
4904 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00004905 case Expr::MLV_NoSetterProperty:
4906 Diag = diag::error_nosetter_property_assignment;
4907 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00004908 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00004909
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004910 SourceRange Assign;
4911 if (Loc != OrigLoc)
4912 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004913 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00004914 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004915 else
Mike Stump1eb44332009-09-09 15:08:12 +00004916 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004917 return true;
4918}
4919
4920
4921
4922// C99 6.5.16.1
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004923QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
4924 SourceLocation Loc,
4925 QualType CompoundType) {
4926 // Verify that LHS is a modifiable lvalue, and emit error if not.
4927 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00004928 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004929
4930 QualType LHSType = LHS->getType();
4931 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004932
Chris Lattner5cf216b2008-01-04 18:04:52 +00004933 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004934 if (CompoundType.isNull()) {
Chris Lattner2c156472008-08-21 18:04:13 +00004935 // Simple assignment "x = y".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004936 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004937 // Special case of NSObject attributes on c-style pointer types.
4938 if (ConvTy == IncompatiblePointer &&
4939 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004940 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004941 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00004942 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00004943 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00004944
Chris Lattner2c156472008-08-21 18:04:13 +00004945 // If the RHS is a unary plus or minus, check to see if they = and + are
4946 // right next to each other. If so, the user may have typo'd "x =+ 4"
4947 // instead of "x += 4".
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004948 Expr *RHSCheck = RHS;
Chris Lattner2c156472008-08-21 18:04:13 +00004949 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
4950 RHSCheck = ICE->getSubExpr();
4951 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
4952 if ((UO->getOpcode() == UnaryOperator::Plus ||
4953 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004954 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00004955 // Only if the two operators are exactly adjacent.
Chris Lattner399bd1b2009-03-08 06:51:10 +00004956 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
4957 // And there is a space or other character before the subexpr of the
4958 // unary +/-. We don't want to warn on "x=-1".
Chris Lattner3e872092009-03-09 07:11:10 +00004959 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
4960 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00004961 Diag(Loc, diag::warn_not_compound_assign)
4962 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
4963 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00004964 }
Chris Lattner2c156472008-08-21 18:04:13 +00004965 }
4966 } else {
4967 // Compound assignment "x += y"
Eli Friedman623712b2009-05-16 05:56:02 +00004968 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00004969 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00004970
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004971 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
4972 RHS, "assigning"))
Chris Lattner5cf216b2008-01-04 18:04:52 +00004973 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00004974
Reid Spencer5f016e22007-07-11 17:01:13 +00004975 // C99 6.5.16p3: The type of an assignment expression is the type of the
4976 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00004977 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00004978 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
4979 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00004980 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00004981 // operand.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004982 return LHSType.getUnqualifiedType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004983}
4984
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004985// C99 6.5.17
4986QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattner53fcaa92008-07-25 20:54:07 +00004987 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004988 DefaultFunctionArrayConversion(RHS);
Eli Friedmanb1d796d2009-03-23 00:24:07 +00004989
4990 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
4991 // incomplete in C++).
4992
Chris Lattner29a1cfb2008-11-18 01:30:42 +00004993 return RHS->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00004994}
4995
Steve Naroff49b45262007-07-13 16:58:59 +00004996/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
4997/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00004998QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
4999 bool isInc) {
Sebastian Redl28507842009-02-26 14:39:58 +00005000 if (Op->isTypeDependent())
5001 return Context.DependentTy;
5002
Chris Lattner3528d352008-11-21 07:05:48 +00005003 QualType ResType = Op->getType();
5004 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00005005
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00005006 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
5007 // Decrement of bool is not allowed.
5008 if (!isInc) {
5009 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
5010 return QualType();
5011 }
5012 // Increment of bool sets it to true, but is deprecated.
5013 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
5014 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00005015 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00005016 } else if (ResType->isAnyPointerType()) {
5017 QualType PointeeTy = ResType->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00005018
Chris Lattner3528d352008-11-21 07:05:48 +00005019 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff14108da2009-07-10 23:34:53 +00005020 if (PointeeTy->isVoidType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00005021 if (getLangOptions().CPlusPlus) {
5022 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
5023 << Op->getSourceRange();
5024 return QualType();
5025 }
5026
5027 // Pointer to void is a GNU extension in C.
Chris Lattner3528d352008-11-21 07:05:48 +00005028 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00005029 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorc983b862009-01-23 00:36:41 +00005030 if (getLangOptions().CPlusPlus) {
5031 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
5032 << Op->getType() << Op->getSourceRange();
5033 return QualType();
5034 }
5035
5036 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattnerd1625842008-11-24 06:25:27 +00005037 << ResType << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00005038 } else if (RequireCompleteType(OpLoc, PointeeTy,
Anders Carlssond497ba72009-08-26 22:59:12 +00005039 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00005040 << Op->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00005041 << ResType))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00005042 return QualType();
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00005043 // Diagnose bad cases where we step over interface counts.
5044 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
5045 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
5046 << PointeeTy << Op->getSourceRange();
5047 return QualType();
5048 }
Chris Lattner3528d352008-11-21 07:05:48 +00005049 } else if (ResType->isComplexType()) {
5050 // C99 does not support ++/-- on complex types, we allow as an extension.
5051 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00005052 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00005053 } else {
5054 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattnerd1625842008-11-24 06:25:27 +00005055 << ResType << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00005056 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00005057 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005058 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00005059 // Now make sure the operand is a modifiable lvalue.
Chris Lattner3528d352008-11-21 07:05:48 +00005060 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Reid Spencer5f016e22007-07-11 17:01:13 +00005061 return QualType();
Chris Lattner3528d352008-11-21 07:05:48 +00005062 return ResType;
Reid Spencer5f016e22007-07-11 17:01:13 +00005063}
5064
Anders Carlsson369dee42008-02-01 07:15:58 +00005065/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00005066/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005067/// where the declaration is needed for type checking. We only need to
5068/// handle cases when the expression references a function designator
5069/// or is an lvalue. Here are some examples:
5070/// - &(x) => x
5071/// - &*****f => f for f a function designator.
5072/// - &s.xx => s
5073/// - &s.zz[1].yy -> s, if zz is an array
5074/// - *(x + 1) -> x, if x is an array
5075/// - &"123"[2] -> 0
5076/// - & __real__ x -> x
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005077static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00005078 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005079 case Stmt::DeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00005080 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00005081 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00005082 // If this is an arrow operator, the address is an offset from
5083 // the base's value, so the object the base refers to is
5084 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00005085 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00005086 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00005087 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00005088 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00005089 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00005090 // FIXME: This code shouldn't be necessary! We should catch the implicit
5091 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00005092 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
5093 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
5094 if (ICE->getSubExpr()->getType()->isArrayType())
5095 return getPrimaryDecl(ICE->getSubExpr());
5096 }
5097 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00005098 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005099 case Stmt::UnaryOperatorClass: {
5100 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005101
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005102 switch(UO->getOpcode()) {
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00005103 case UnaryOperator::Real:
5104 case UnaryOperator::Imag:
5105 case UnaryOperator::Extension:
5106 return getPrimaryDecl(UO->getSubExpr());
5107 default:
5108 return 0;
5109 }
5110 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005111 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00005112 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00005113 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00005114 // If the result of an implicit cast is an l-value, we care about
5115 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00005116 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00005117 default:
5118 return 0;
5119 }
5120}
5121
5122/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00005123/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00005124/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005125/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00005126/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005127/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00005128/// we allow the '&' but retain the overloaded-function type.
Reid Spencer5f016e22007-07-11 17:01:13 +00005129QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00005130 // Make sure to ignore parentheses in subsequent checks
5131 op = op->IgnoreParens();
5132
Douglas Gregor9103bb22008-12-17 22:52:20 +00005133 if (op->isTypeDependent())
5134 return Context.DependentTy;
5135
Steve Naroff08f19672008-01-13 17:10:08 +00005136 if (getLangOptions().C99) {
5137 // Implement C99-only parts of addressof rules.
5138 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
5139 if (uOp->getOpcode() == UnaryOperator::Deref)
5140 // Per C99 6.5.3.2, the address of a deref always returns a valid result
5141 // (assuming the deref expression is valid).
5142 return uOp->getSubExpr()->getType();
5143 }
5144 // Technically, there should be a check for array subscript
5145 // expressions here, but the result of one is always an lvalue anyway.
5146 }
Douglas Gregor8e9bebd2008-10-21 16:13:35 +00005147 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner28be73f2008-07-26 21:30:36 +00005148 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes6b6609f2008-12-16 22:59:47 +00005149
Eli Friedman441cf102009-05-16 23:27:50 +00005150 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
5151 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00005152 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00005153 if (!op->getType()->isFunctionType()) {
Chris Lattnerf82228f2007-11-16 17:46:48 +00005154 // FIXME: emit more specific diag...
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005155 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
5156 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005157 return QualType();
5158 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00005159 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00005160 // The operand cannot be a bit-field
5161 Diag(OpLoc, diag::err_typecheck_address_of)
5162 << "bit-field" << op->getSourceRange();
Douglas Gregor86f19402008-12-20 23:49:58 +00005163 return QualType();
Nate Begemanb104b1f2009-02-15 22:45:20 +00005164 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
5165 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman23d58ce2009-04-20 08:23:18 +00005166 // The operand cannot be an element of a vector
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005167 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemanb104b1f2009-02-15 22:45:20 +00005168 << "vector element" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00005169 return QualType();
Fariborz Jahanian0337f212009-07-07 18:50:52 +00005170 } else if (isa<ObjCPropertyRefExpr>(op)) {
5171 // cannot take address of a property expression.
5172 Diag(OpLoc, diag::err_typecheck_address_of)
5173 << "property expression" << op->getSourceRange();
5174 return QualType();
Anders Carlsson1d524c32009-09-14 23:15:26 +00005175 } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) {
5176 // FIXME: Can LHS ever be null here?
Anders Carlsson474e1022009-09-15 16:03:44 +00005177 if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull())
5178 return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc);
Steve Naroffbcb2b612008-02-29 23:30:25 +00005179 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00005180 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00005181 // with the register storage-class specifier.
5182 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
5183 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005184 Diag(OpLoc, diag::err_typecheck_address_of)
5185 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005186 return QualType();
5187 }
Douglas Gregor83314aa2009-07-08 20:55:45 +00005188 } else if (isa<OverloadedFunctionDecl>(dcl) ||
5189 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregor904eed32008-11-10 20:40:00 +00005190 return Context.OverloadTy;
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005191 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00005192 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00005193 // Could be a pointer to member, though, if there is an explicit
5194 // scope qualifier for the class.
Douglas Gregora2813ce2009-10-23 18:54:35 +00005195 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redlebc07d52009-02-03 20:19:35 +00005196 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005197 if (Ctx && Ctx->isRecord()) {
5198 if (FD->getType()->isReferenceType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005199 Diag(OpLoc,
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005200 diag::err_cannot_form_pointer_to_member_of_reference_type)
5201 << FD->getDeclName() << FD->getType();
5202 return QualType();
5203 }
Mike Stump1eb44332009-09-09 15:08:12 +00005204
Sebastian Redlebc07d52009-02-03 20:19:35 +00005205 return Context.getMemberPointerType(op->getType(),
5206 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00005207 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00005208 }
Anders Carlsson196f7d02009-05-16 21:43:42 +00005209 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes6fea8d22008-12-16 22:58:26 +00005210 // Okay: we can take the address of a function.
Sebastian Redl33b399a2009-02-04 21:23:32 +00005211 // As above.
Douglas Gregora2813ce2009-10-23 18:54:35 +00005212 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() &&
5213 MD->isInstance())
Anders Carlsson196f7d02009-05-16 21:43:42 +00005214 return Context.getMemberPointerType(op->getType(),
5215 Context.getTypeDeclType(MD->getParent()).getTypePtr());
5216 } else if (!isa<FunctionDecl>(dcl))
Reid Spencer5f016e22007-07-11 17:01:13 +00005217 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00005218 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00005219
Eli Friedman441cf102009-05-16 23:27:50 +00005220 if (lval == Expr::LV_IncompleteVoidType) {
5221 // Taking the address of a void variable is technically illegal, but we
5222 // allow it in cases which are otherwise valid.
5223 // Example: "extern void x; void* y = &x;".
5224 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
5225 }
5226
Reid Spencer5f016e22007-07-11 17:01:13 +00005227 // If the operand has type "type", the result has type "pointer to type".
5228 return Context.getPointerType(op->getType());
5229}
5230
Chris Lattner22caddc2008-11-23 09:13:29 +00005231QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00005232 if (Op->isTypeDependent())
5233 return Context.DependentTy;
5234
Chris Lattner22caddc2008-11-23 09:13:29 +00005235 UsualUnaryConversions(Op);
5236 QualType Ty = Op->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005237
Chris Lattner22caddc2008-11-23 09:13:29 +00005238 // Note that per both C89 and C99, this is always legal, even if ptype is an
5239 // incomplete type or void. It would be possible to warn about dereferencing
5240 // a void pointer, but it's completely well-defined, and such a warning is
5241 // unlikely to catch any mistakes.
Ted Kremenek6217b802009-07-29 21:53:49 +00005242 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff08f19672008-01-13 17:10:08 +00005243 return PT->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005244
John McCall183700f2009-09-21 23:43:11 +00005245 if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>())
Fariborz Jahanian16b10372009-09-03 00:43:07 +00005246 return OPT->getPointeeType();
Steve Naroff14108da2009-07-10 23:34:53 +00005247
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005248 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner22caddc2008-11-23 09:13:29 +00005249 << Ty << Op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005250 return QualType();
5251}
5252
5253static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
5254 tok::TokenKind Kind) {
5255 BinaryOperator::Opcode Opc;
5256 switch (Kind) {
5257 default: assert(0 && "Unknown binop!");
Sebastian Redl22460502009-02-07 00:15:38 +00005258 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
5259 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005260 case tok::star: Opc = BinaryOperator::Mul; break;
5261 case tok::slash: Opc = BinaryOperator::Div; break;
5262 case tok::percent: Opc = BinaryOperator::Rem; break;
5263 case tok::plus: Opc = BinaryOperator::Add; break;
5264 case tok::minus: Opc = BinaryOperator::Sub; break;
5265 case tok::lessless: Opc = BinaryOperator::Shl; break;
5266 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
5267 case tok::lessequal: Opc = BinaryOperator::LE; break;
5268 case tok::less: Opc = BinaryOperator::LT; break;
5269 case tok::greaterequal: Opc = BinaryOperator::GE; break;
5270 case tok::greater: Opc = BinaryOperator::GT; break;
5271 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
5272 case tok::equalequal: Opc = BinaryOperator::EQ; break;
5273 case tok::amp: Opc = BinaryOperator::And; break;
5274 case tok::caret: Opc = BinaryOperator::Xor; break;
5275 case tok::pipe: Opc = BinaryOperator::Or; break;
5276 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
5277 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
5278 case tok::equal: Opc = BinaryOperator::Assign; break;
5279 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
5280 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
5281 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
5282 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
5283 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
5284 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
5285 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
5286 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
5287 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
5288 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
5289 case tok::comma: Opc = BinaryOperator::Comma; break;
5290 }
5291 return Opc;
5292}
5293
5294static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
5295 tok::TokenKind Kind) {
5296 UnaryOperator::Opcode Opc;
5297 switch (Kind) {
5298 default: assert(0 && "Unknown unary op!");
5299 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
5300 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
5301 case tok::amp: Opc = UnaryOperator::AddrOf; break;
5302 case tok::star: Opc = UnaryOperator::Deref; break;
5303 case tok::plus: Opc = UnaryOperator::Plus; break;
5304 case tok::minus: Opc = UnaryOperator::Minus; break;
5305 case tok::tilde: Opc = UnaryOperator::Not; break;
5306 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005307 case tok::kw___real: Opc = UnaryOperator::Real; break;
5308 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
5309 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
5310 }
5311 return Opc;
5312}
5313
Douglas Gregoreaebc752008-11-06 23:29:22 +00005314/// CreateBuiltinBinOp - Creates a new built-in binary operation with
5315/// operator @p Opc at location @c TokLoc. This routine only supports
5316/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005317Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
5318 unsigned Op,
5319 Expr *lhs, Expr *rhs) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00005320 QualType ResultTy; // Result type of the binary operator.
Douglas Gregoreaebc752008-11-06 23:29:22 +00005321 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedmanab3a8522009-03-28 01:22:36 +00005322 // The following two variables are used for compound assignment operators
5323 QualType CompLHSTy; // Type of LHS after promotions for computation
5324 QualType CompResultTy; // Type of computation result
Douglas Gregoreaebc752008-11-06 23:29:22 +00005325
5326 switch (Opc) {
Douglas Gregoreaebc752008-11-06 23:29:22 +00005327 case BinaryOperator::Assign:
5328 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
5329 break;
Sebastian Redl22460502009-02-07 00:15:38 +00005330 case BinaryOperator::PtrMemD:
5331 case BinaryOperator::PtrMemI:
5332 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
5333 Opc == BinaryOperator::PtrMemI);
5334 break;
5335 case BinaryOperator::Mul:
Douglas Gregoreaebc752008-11-06 23:29:22 +00005336 case BinaryOperator::Div:
5337 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
5338 break;
5339 case BinaryOperator::Rem:
5340 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
5341 break;
5342 case BinaryOperator::Add:
5343 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
5344 break;
5345 case BinaryOperator::Sub:
5346 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
5347 break;
Sebastian Redl22460502009-02-07 00:15:38 +00005348 case BinaryOperator::Shl:
Douglas Gregoreaebc752008-11-06 23:29:22 +00005349 case BinaryOperator::Shr:
5350 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
5351 break;
5352 case BinaryOperator::LE:
5353 case BinaryOperator::LT:
5354 case BinaryOperator::GE:
5355 case BinaryOperator::GT:
Douglas Gregora86b8322009-04-06 18:45:53 +00005356 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005357 break;
5358 case BinaryOperator::EQ:
5359 case BinaryOperator::NE:
Douglas Gregora86b8322009-04-06 18:45:53 +00005360 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005361 break;
5362 case BinaryOperator::And:
5363 case BinaryOperator::Xor:
5364 case BinaryOperator::Or:
5365 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5366 break;
5367 case BinaryOperator::LAnd:
5368 case BinaryOperator::LOr:
5369 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
5370 break;
5371 case BinaryOperator::MulAssign:
5372 case BinaryOperator::DivAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005373 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
5374 CompLHSTy = CompResultTy;
5375 if (!CompResultTy.isNull())
5376 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005377 break;
5378 case BinaryOperator::RemAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005379 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
5380 CompLHSTy = CompResultTy;
5381 if (!CompResultTy.isNull())
5382 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005383 break;
5384 case BinaryOperator::AddAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005385 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5386 if (!CompResultTy.isNull())
5387 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005388 break;
5389 case BinaryOperator::SubAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005390 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5391 if (!CompResultTy.isNull())
5392 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005393 break;
5394 case BinaryOperator::ShlAssign:
5395 case BinaryOperator::ShrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005396 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
5397 CompLHSTy = CompResultTy;
5398 if (!CompResultTy.isNull())
5399 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005400 break;
5401 case BinaryOperator::AndAssign:
5402 case BinaryOperator::XorAssign:
5403 case BinaryOperator::OrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00005404 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
5405 CompLHSTy = CompResultTy;
5406 if (!CompResultTy.isNull())
5407 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00005408 break;
5409 case BinaryOperator::Comma:
5410 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
5411 break;
5412 }
5413 if (ResultTy.isNull())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005414 return ExprError();
Eli Friedmanab3a8522009-03-28 01:22:36 +00005415 if (CompResultTy.isNull())
Steve Naroff6ece14c2009-01-21 00:14:39 +00005416 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
5417 else
5418 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedmanab3a8522009-03-28 01:22:36 +00005419 CompLHSTy, CompResultTy,
5420 OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00005421}
5422
Sebastian Redlaee3c932009-10-27 12:10:02 +00005423/// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps
5424/// ParenRange in parentheses.
Sebastian Redl6b169ac2009-10-26 17:01:32 +00005425static void SuggestParentheses(Sema &Self, SourceLocation Loc,
5426 const PartialDiagnostic &PD,
5427 SourceRange ParenRange)
5428{
5429 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
5430 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
5431 // We can't display the parentheses, so just dig the
5432 // warning/error and return.
5433 Self.Diag(Loc, PD);
5434 return;
5435 }
5436
5437 Self.Diag(Loc, PD)
5438 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
5439 << CodeModificationHint::CreateInsertion(EndLoc, ")");
5440}
5441
Sebastian Redlaee3c932009-10-27 12:10:02 +00005442/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
5443/// operators are mixed in a way that suggests that the programmer forgot that
5444/// comparison operators have higher precedence. The most typical example of
5445/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005446static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc,
5447 SourceLocation OpLoc,Expr *lhs,Expr *rhs){
Sebastian Redlaee3c932009-10-27 12:10:02 +00005448 typedef BinaryOperator BinOp;
5449 BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1),
5450 rhsopc = static_cast<BinOp::Opcode>(-1);
5451 if (BinOp *BO = dyn_cast<BinOp>(lhs))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005452 lhsopc = BO->getOpcode();
Sebastian Redlaee3c932009-10-27 12:10:02 +00005453 if (BinOp *BO = dyn_cast<BinOp>(rhs))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005454 rhsopc = BO->getOpcode();
5455
5456 // Subs are not binary operators.
5457 if (lhsopc == -1 && rhsopc == -1)
5458 return;
5459
5460 // Bitwise operations are sometimes used as eager logical ops.
5461 // Don't diagnose this.
Sebastian Redlaee3c932009-10-27 12:10:02 +00005462 if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) &&
5463 (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc)))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005464 return;
5465
Sebastian Redlaee3c932009-10-27 12:10:02 +00005466 if (BinOp::isComparisonOp(lhsopc))
Sebastian Redl6b169ac2009-10-26 17:01:32 +00005467 SuggestParentheses(Self, OpLoc,
5468 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redlaee3c932009-10-27 12:10:02 +00005469 << SourceRange(lhs->getLocStart(), OpLoc)
5470 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc),
5471 SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd()));
5472 else if (BinOp::isComparisonOp(rhsopc))
Sebastian Redl6b169ac2009-10-26 17:01:32 +00005473 SuggestParentheses(Self, OpLoc,
5474 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redlaee3c932009-10-27 12:10:02 +00005475 << SourceRange(OpLoc, rhs->getLocEnd())
5476 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc),
5477 SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart()));
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005478}
5479
5480/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
5481/// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3".
5482/// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does.
5483static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc,
5484 SourceLocation OpLoc, Expr *lhs, Expr *rhs){
Sebastian Redlaee3c932009-10-27 12:10:02 +00005485 if (BinaryOperator::isBitwiseOp(Opc))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005486 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs);
5487}
5488
Reid Spencer5f016e22007-07-11 17:01:13 +00005489// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005490Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
5491 tok::TokenKind Kind,
5492 ExprArg LHS, ExprArg RHS) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005493 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssone9146f22009-05-01 19:49:17 +00005494 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Reid Spencer5f016e22007-07-11 17:01:13 +00005495
Steve Narofff69936d2007-09-16 03:34:24 +00005496 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
5497 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00005498
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00005499 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
5500 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs);
5501
Douglas Gregor063daf62009-03-13 18:40:31 +00005502 if (getLangOptions().CPlusPlus &&
Mike Stump1eb44332009-09-09 15:08:12 +00005503 (lhs->getType()->isOverloadableType() ||
Douglas Gregor063daf62009-03-13 18:40:31 +00005504 rhs->getType()->isOverloadableType())) {
5505 // Find all of the overloaded operators visible from this
5506 // point. We perform both an operator-name lookup from the local
5507 // scope and an argument-dependent lookup based on the types of
5508 // the arguments.
Douglas Gregor3fd95ce2009-03-13 00:33:25 +00005509 FunctionSet Functions;
Douglas Gregor063daf62009-03-13 18:40:31 +00005510 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
5511 if (OverOp != OO_None) {
5512 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
5513 Functions);
5514 Expr *Args[2] = { lhs, rhs };
Mike Stump1eb44332009-09-09 15:08:12 +00005515 DeclarationName OpName
Douglas Gregor063daf62009-03-13 18:40:31 +00005516 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redl644be852009-10-23 19:23:15 +00005517 ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions);
Douglas Gregoreb8f3062008-11-12 17:17:38 +00005518 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005519
Douglas Gregor063daf62009-03-13 18:40:31 +00005520 // Build the (potentially-overloaded, potentially-dependent)
5521 // binary operation.
5522 return CreateOverloadedBinOp(TokLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005523 }
5524
Douglas Gregoreaebc752008-11-06 23:29:22 +00005525 // Build a built-in binary operation.
5526 return CreateBuiltinBinOp(TokLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00005527}
5528
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005529Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Mike Stump1eb44332009-09-09 15:08:12 +00005530 unsigned OpcIn,
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005531 ExprArg InputArg) {
5532 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregor74253732008-11-19 15:42:04 +00005533
Mike Stump390b4cc2009-05-16 07:39:55 +00005534 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005535 Expr *Input = (Expr *)InputArg.get();
Reid Spencer5f016e22007-07-11 17:01:13 +00005536 QualType resultType;
5537 switch (Opc) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005538 case UnaryOperator::OffsetOf:
5539 assert(false && "Invalid unary operator");
5540 break;
5541
Reid Spencer5f016e22007-07-11 17:01:13 +00005542 case UnaryOperator::PreInc:
5543 case UnaryOperator::PreDec:
Eli Friedmande99a452009-07-22 22:25:00 +00005544 case UnaryOperator::PostInc:
5545 case UnaryOperator::PostDec:
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00005546 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedmande99a452009-07-22 22:25:00 +00005547 Opc == UnaryOperator::PreInc ||
5548 Opc == UnaryOperator::PostInc);
Reid Spencer5f016e22007-07-11 17:01:13 +00005549 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005550 case UnaryOperator::AddrOf:
Reid Spencer5f016e22007-07-11 17:01:13 +00005551 resultType = CheckAddressOfOperand(Input, OpLoc);
5552 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005553 case UnaryOperator::Deref:
Steve Naroff1ca9b112007-12-18 04:06:57 +00005554 DefaultFunctionArrayConversion(Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00005555 resultType = CheckIndirectionOperand(Input, OpLoc);
5556 break;
5557 case UnaryOperator::Plus:
5558 case UnaryOperator::Minus:
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005559 UsualUnaryConversions(Input);
5560 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005561 if (resultType->isDependentType())
5562 break;
Douglas Gregor74253732008-11-19 15:42:04 +00005563 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5564 break;
5565 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5566 resultType->isEnumeralType())
5567 break;
5568 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5569 Opc == UnaryOperator::Plus &&
5570 resultType->isPointerType())
5571 break;
5572
Sebastian Redl0eb23302009-01-19 00:08:26 +00005573 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5574 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005575 case UnaryOperator::Not: // bitwise complement
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005576 UsualUnaryConversions(Input);
5577 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005578 if (resultType->isDependentType())
5579 break;
Chris Lattner02a65142008-07-25 23:52:49 +00005580 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5581 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5582 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00005583 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00005584 << resultType << Input->getSourceRange();
Chris Lattner02a65142008-07-25 23:52:49 +00005585 else if (!resultType->isIntegerType())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005586 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5587 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005588 break;
5589 case UnaryOperator::LNot: // logical negation
5590 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005591 DefaultFunctionArrayConversion(Input);
5592 resultType = Input->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00005593 if (resultType->isDependentType())
5594 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005595 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redl0eb23302009-01-19 00:08:26 +00005596 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5597 << resultType << Input->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00005598 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00005599 // In C++, it's bool. C++ 5.3.1p8
5600 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005601 break;
Chris Lattnerdbb36972007-08-24 21:16:53 +00005602 case UnaryOperator::Real:
Chris Lattnerdbb36972007-08-24 21:16:53 +00005603 case UnaryOperator::Imag:
Chris Lattnerba27e2a2009-02-17 08:12:06 +00005604 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattnerdbb36972007-08-24 21:16:53 +00005605 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00005606 case UnaryOperator::Extension:
Reid Spencer5f016e22007-07-11 17:01:13 +00005607 resultType = Input->getType();
5608 break;
5609 }
5610 if (resultType.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00005611 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005612
5613 InputArg.release();
Steve Naroff6ece14c2009-01-21 00:14:39 +00005614 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00005615}
5616
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005617// Unary Operators. 'Tok' is the token for the operator.
5618Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5619 tok::TokenKind Op, ExprArg input) {
5620 Expr *Input = (Expr*)input.get();
5621 UnaryOperator::Opcode Opc = ConvertTokenKindToUnaryOpcode(Op);
5622
5623 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5624 // Find all of the overloaded operators visible from this
5625 // point. We perform both an operator-name lookup from the local
5626 // scope and an argument-dependent lookup based on the types of
5627 // the arguments.
5628 FunctionSet Functions;
5629 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5630 if (OverOp != OO_None) {
5631 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5632 Functions);
Mike Stump1eb44332009-09-09 15:08:12 +00005633 DeclarationName OpName
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005634 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redl644be852009-10-23 19:23:15 +00005635 ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00005636 }
5637
5638 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5639 }
5640
5641 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5642}
5643
Steve Naroff1b273c42007-09-16 14:56:35 +00005644/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redlf53597f2009-03-15 17:47:39 +00005645Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5646 SourceLocation LabLoc,
5647 IdentifierInfo *LabelII) {
Reid Spencer5f016e22007-07-11 17:01:13 +00005648 // Look up the record for this label identifier.
Chris Lattnerea29a3a2009-04-18 20:01:55 +00005649 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stumpeed9cac2009-02-19 03:04:26 +00005650
Daniel Dunbar0ffb1252008-08-04 16:51:22 +00005651 // If we haven't seen this label yet, create a forward reference. It
5652 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroffcaaacec2009-03-13 15:38:40 +00005653 if (LabelDecl == 0)
Steve Naroff6ece14c2009-01-21 00:14:39 +00005654 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005655
Reid Spencer5f016e22007-07-11 17:01:13 +00005656 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redlf53597f2009-03-15 17:47:39 +00005657 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5658 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00005659}
5660
Sebastian Redlf53597f2009-03-15 17:47:39 +00005661Sema::OwningExprResult
5662Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5663 SourceLocation RPLoc) { // "({..})"
5664 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005665 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5666 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5667
Eli Friedmandca2b732009-01-24 23:09:00 +00005668 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattner4a049f02009-04-25 19:11:05 +00005669 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005670 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00005671
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005672 // FIXME: there are a variety of strange constraints to enforce here, for
5673 // example, it is not possible to goto into a stmt expression apparently.
5674 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00005675
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005676 // If there are sub stmts in the compound stmt, take the type of the last one
5677 // as the type of the stmtexpr.
5678 QualType Ty = Context.VoidTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005679
Chris Lattner611b2ec2008-07-26 19:51:01 +00005680 if (!Compound->body_empty()) {
5681 Stmt *LastStmt = Compound->body_back();
5682 // If LastStmt is a label, skip down through into the body.
5683 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5684 LastStmt = Label->getSubStmt();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005685
Chris Lattner611b2ec2008-07-26 19:51:01 +00005686 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005687 Ty = LastExpr->getType();
Chris Lattner611b2ec2008-07-26 19:51:01 +00005688 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005689
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005690 // FIXME: Check that expression type is complete/non-abstract; statement
5691 // expressions are not lvalues.
5692
Sebastian Redlf53597f2009-03-15 17:47:39 +00005693 substmt.release();
5694 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattnerab18c4c2007-07-24 16:58:17 +00005695}
Steve Naroffd34e9152007-08-01 22:05:33 +00005696
Sebastian Redlf53597f2009-03-15 17:47:39 +00005697Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5698 SourceLocation BuiltinLoc,
5699 SourceLocation TypeLoc,
5700 TypeTy *argty,
5701 OffsetOfComponent *CompPtr,
5702 unsigned NumComponents,
5703 SourceLocation RPLoc) {
5704 // FIXME: This function leaks all expressions in the offset components on
5705 // error.
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00005706 // FIXME: Preserve type source info.
5707 QualType ArgTy = GetTypeFromParser(argty);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005708 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005709
Sebastian Redl28507842009-02-26 14:39:58 +00005710 bool Dependent = ArgTy->isDependentType();
5711
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005712 // We must have at least one component that refers to the type, and the first
5713 // one is known to be a field designator. Verify that the ArgTy represents
5714 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00005715 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005716 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005717
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005718 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5719 // with an incomplete type would be illegal.
Douglas Gregor4fdf1fa2009-03-11 16:48:53 +00005720
Eli Friedman35183ac2009-02-27 06:44:11 +00005721 // Otherwise, create a null pointer as the base, and iteratively process
5722 // the offsetof designators.
5723 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5724 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005725 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman35183ac2009-02-27 06:44:11 +00005726 ArgTy, SourceLocation());
Eli Friedman1d242592009-01-26 01:33:06 +00005727
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005728 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5729 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00005730 // FIXME: This diagnostic isn't actually visible because the location is in
5731 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00005732 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00005733 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5734 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005735
Sebastian Redl28507842009-02-26 14:39:58 +00005736 if (!Dependent) {
Eli Friedmanc0d600c2009-05-03 21:22:18 +00005737 bool DidWarnAboutNonPOD = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005738
Sebastian Redl28507842009-02-26 14:39:58 +00005739 // FIXME: Dependent case loses a lot of information here. And probably
5740 // leaks like a sieve.
5741 for (unsigned i = 0; i != NumComponents; ++i) {
5742 const OffsetOfComponent &OC = CompPtr[i];
5743 if (OC.isBrackets) {
5744 // Offset of an array sub-field. TODO: Should we allow vector elements?
5745 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5746 if (!AT) {
5747 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005748 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5749 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005750 }
5751
5752 // FIXME: C++: Verify that operator[] isn't overloaded.
5753
Eli Friedman35183ac2009-02-27 06:44:11 +00005754 // Promote the array so it looks more like a normal array subscript
5755 // expression.
5756 DefaultFunctionArrayConversion(Res);
5757
Sebastian Redl28507842009-02-26 14:39:58 +00005758 // C99 6.5.2.1p1
5759 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005760 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005761 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redlf53597f2009-03-15 17:47:39 +00005762 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner338395d2009-04-25 22:50:55 +00005763 diag::err_typecheck_subscript_not_integer)
Sebastian Redlf53597f2009-03-15 17:47:39 +00005764 << Idx->getSourceRange());
Sebastian Redl28507842009-02-26 14:39:58 +00005765
5766 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5767 OC.LocEnd);
5768 continue;
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005769 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005770
Ted Kremenek6217b802009-07-29 21:53:49 +00005771 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl28507842009-02-26 14:39:58 +00005772 if (!RC) {
5773 Res->Destroy(Context);
Sebastian Redlf53597f2009-03-15 17:47:39 +00005774 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5775 << Res->getType());
Sebastian Redl28507842009-02-26 14:39:58 +00005776 }
Chris Lattner704fe352007-08-30 17:59:59 +00005777
Sebastian Redl28507842009-02-26 14:39:58 +00005778 // Get the decl corresponding to this.
5779 RecordDecl *RD = RC->getDecl();
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005780 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005781 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlssonf9b8bc62009-05-02 17:45:47 +00005782 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5783 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5784 << Res->getType());
Anders Carlsson5992e4a2009-05-02 18:36:10 +00005785 DidWarnAboutNonPOD = true;
5786 }
Anders Carlsson6d7f1492009-05-01 23:20:30 +00005787 }
Mike Stump1eb44332009-09-09 15:08:12 +00005788
John McCallf36e02d2009-10-09 21:13:30 +00005789 LookupResult R;
5790 LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName);
5791
Sebastian Redl28507842009-02-26 14:39:58 +00005792 FieldDecl *MemberDecl
John McCallf36e02d2009-10-09 21:13:30 +00005793 = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context));
Sebastian Redlf53597f2009-03-15 17:47:39 +00005794 // FIXME: Leaks Res
Sebastian Redl28507842009-02-26 14:39:58 +00005795 if (!MemberDecl)
Douglas Gregor3f093272009-10-13 21:16:44 +00005796 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
5797 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stumpeed9cac2009-02-19 03:04:26 +00005798
Sebastian Redl28507842009-02-26 14:39:58 +00005799 // FIXME: C++: Verify that MemberDecl isn't a static field.
5800 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedmane9356962009-04-26 20:50:44 +00005801 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlssonf1b1d592009-05-01 19:30:39 +00005802 Res = BuildAnonymousStructUnionMemberReference(
5803 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedmane9356962009-04-26 20:50:44 +00005804 } else {
5805 // MemberDecl->getType() doesn't get the right qualifiers, but it
5806 // doesn't matter here.
5807 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5808 MemberDecl->getType().getNonReferenceType());
5809 }
Sebastian Redl28507842009-02-26 14:39:58 +00005810 }
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005811 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005812
Sebastian Redlf53597f2009-03-15 17:47:39 +00005813 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5814 Context.getSizeType(), BuiltinLoc));
Chris Lattner73d0d4f2007-08-30 17:45:32 +00005815}
5816
5817
Sebastian Redlf53597f2009-03-15 17:47:39 +00005818Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5819 TypeTy *arg1,TypeTy *arg2,
5820 SourceLocation RPLoc) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00005821 // FIXME: Preserve type source info.
5822 QualType argT1 = GetTypeFromParser(arg1);
5823 QualType argT2 = GetTypeFromParser(arg2);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005824
Steve Naroffd34e9152007-08-01 22:05:33 +00005825 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005826
Douglas Gregorc12a9c52009-05-19 22:28:02 +00005827 if (getLangOptions().CPlusPlus) {
5828 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5829 << SourceRange(BuiltinLoc, RPLoc);
5830 return ExprError();
5831 }
5832
Sebastian Redlf53597f2009-03-15 17:47:39 +00005833 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5834 argT1, argT2, RPLoc));
Steve Naroffd34e9152007-08-01 22:05:33 +00005835}
5836
Sebastian Redlf53597f2009-03-15 17:47:39 +00005837Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5838 ExprArg cond,
5839 ExprArg expr1, ExprArg expr2,
5840 SourceLocation RPLoc) {
5841 Expr *CondExpr = static_cast<Expr*>(cond.get());
5842 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5843 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00005844
Steve Naroffd04fdd52007-08-03 21:21:27 +00005845 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5846
Sebastian Redl28507842009-02-26 14:39:58 +00005847 QualType resType;
Douglas Gregorce940492009-09-25 04:25:58 +00005848 bool ValueDependent = false;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00005849 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00005850 resType = Context.DependentTy;
Douglas Gregorce940492009-09-25 04:25:58 +00005851 ValueDependent = true;
Sebastian Redl28507842009-02-26 14:39:58 +00005852 } else {
5853 // The conditional expression is required to be a constant expression.
5854 llvm::APSInt condEval(32);
5855 SourceLocation ExpLoc;
5856 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redlf53597f2009-03-15 17:47:39 +00005857 return ExprError(Diag(ExpLoc,
5858 diag::err_typecheck_choose_expr_requires_constant)
5859 << CondExpr->getSourceRange());
Steve Naroffd04fdd52007-08-03 21:21:27 +00005860
Sebastian Redl28507842009-02-26 14:39:58 +00005861 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5862 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
Douglas Gregorce940492009-09-25 04:25:58 +00005863 ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent()
5864 : RHSExpr->isValueDependent();
Sebastian Redl28507842009-02-26 14:39:58 +00005865 }
5866
Sebastian Redlf53597f2009-03-15 17:47:39 +00005867 cond.release(); expr1.release(); expr2.release();
5868 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
Douglas Gregorce940492009-09-25 04:25:58 +00005869 resType, RPLoc,
5870 resType->isDependentType(),
5871 ValueDependent));
Steve Naroffd04fdd52007-08-03 21:21:27 +00005872}
5873
Steve Naroff4eb206b2008-09-03 18:15:37 +00005874//===----------------------------------------------------------------------===//
5875// Clang Extensions.
5876//===----------------------------------------------------------------------===//
5877
5878/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00005879void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005880 // Analyze block parameters.
5881 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stumpeed9cac2009-02-19 03:04:26 +00005882
Steve Naroff4eb206b2008-09-03 18:15:37 +00005883 // Add BSI to CurBlock.
5884 BSI->PrevBlockInfo = CurBlock;
5885 CurBlock = BSI;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005886
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005887 BSI->ReturnType = QualType();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005888 BSI->TheScope = BlockScope;
Mike Stumpb83d2872009-02-19 22:01:56 +00005889 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbar1d2154c2009-07-29 01:59:17 +00005890 BSI->hasPrototype = false;
Chris Lattner17a78302009-04-19 05:28:12 +00005891 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5892 CurFunctionNeedsScopeChecking = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005893
Steve Naroff090276f2008-10-10 01:28:17 +00005894 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor44b43212008-12-11 16:49:14 +00005895 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff090276f2008-10-10 01:28:17 +00005896}
5897
Mike Stump98eb8a72009-02-04 22:31:32 +00005898void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00005899 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump98eb8a72009-02-04 22:31:32 +00005900
5901 if (ParamInfo.getNumTypeObjects() == 0
5902 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005903 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump98eb8a72009-02-04 22:31:32 +00005904 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
5905
Mike Stump4eeab842009-04-28 01:10:27 +00005906 if (T->isArrayType()) {
5907 Diag(ParamInfo.getSourceRange().getBegin(),
5908 diag::err_block_returns_array);
5909 return;
5910 }
5911
Mike Stump98eb8a72009-02-04 22:31:32 +00005912 // The parameter list is optional, if there was none, assume ().
5913 if (!T->isFunctionType())
5914 T = Context.getFunctionType(T, NULL, 0, 0, 0);
5915
5916 CurBlock->hasPrototype = true;
5917 CurBlock->isVariadic = false;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005918 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005919 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005920 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005921 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005922 // FIXME: remove the attribute.
5923 }
John McCall183700f2009-09-21 23:43:11 +00005924 QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00005925
Chris Lattner9097af12009-04-11 19:27:54 +00005926 // Do not allow returning a objc interface by-value.
5927 if (RetTy->isObjCInterfaceType()) {
5928 Diag(ParamInfo.getSourceRange().getBegin(),
5929 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5930 return;
5931 }
Mike Stump98eb8a72009-02-04 22:31:32 +00005932 return;
5933 }
5934
Steve Naroff4eb206b2008-09-03 18:15:37 +00005935 // Analyze arguments to block.
5936 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
5937 "Not a function declarator!");
5938 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005939
Steve Naroff090276f2008-10-10 01:28:17 +00005940 CurBlock->hasPrototype = FTI.hasPrototype;
5941 CurBlock->isVariadic = true;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005942
Steve Naroff4eb206b2008-09-03 18:15:37 +00005943 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
5944 // no arguments, not a function that takes a single void argument.
5945 if (FTI.hasPrototype &&
5946 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattnerb28317a2009-03-28 19:18:32 +00005947 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
5948 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00005949 // empty arg list, don't push any params.
Steve Naroff090276f2008-10-10 01:28:17 +00005950 CurBlock->isVariadic = false;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005951 } else if (FTI.hasPrototype) {
5952 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattnerb28317a2009-03-28 19:18:32 +00005953 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff090276f2008-10-10 01:28:17 +00005954 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005955 }
Jay Foadbeaaccd2009-05-21 09:52:38 +00005956 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner9097af12009-04-11 19:27:54 +00005957 CurBlock->Params.size());
Fariborz Jahaniand66f22d2009-05-19 17:08:59 +00005958 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00005959 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff090276f2008-10-10 01:28:17 +00005960 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
5961 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
5962 // If this has an identifier, add it to the scope stack.
5963 if ((*AI)->getIdentifier())
5964 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner9097af12009-04-11 19:27:54 +00005965
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005966 // Check for a valid sentinel attribute on this block.
Mike Stump1eb44332009-09-09 15:08:12 +00005967 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00005968 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump1eb44332009-09-09 15:08:12 +00005969 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian3bba33d2009-05-15 21:18:04 +00005970 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian2f7c3922009-05-14 20:53:39 +00005971 // FIXME: remove the attribute.
5972 }
Mike Stump1eb44332009-09-09 15:08:12 +00005973
Chris Lattner9097af12009-04-11 19:27:54 +00005974 // Analyze the return type.
5975 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall183700f2009-09-21 23:43:11 +00005976 QualType RetTy = T->getAs<FunctionType>()->getResultType();
Mike Stump1eb44332009-09-09 15:08:12 +00005977
Chris Lattner9097af12009-04-11 19:27:54 +00005978 // Do not allow returning a objc interface by-value.
5979 if (RetTy->isObjCInterfaceType()) {
5980 Diag(ParamInfo.getSourceRange().getBegin(),
5981 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
5982 } else if (!RetTy->isDependentType())
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00005983 CurBlock->ReturnType = RetTy;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005984}
5985
5986/// ActOnBlockError - If there is an error parsing a block, this callback
5987/// is invoked to pop the information about the block from the action impl.
5988void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
5989 // Ensure that CurBlock is deleted.
5990 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stumpeed9cac2009-02-19 03:04:26 +00005991
Chris Lattner17a78302009-04-19 05:28:12 +00005992 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
5993
Steve Naroff4eb206b2008-09-03 18:15:37 +00005994 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00005995 PopDeclContext();
Steve Naroff4eb206b2008-09-03 18:15:37 +00005996 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroff4eb206b2008-09-03 18:15:37 +00005997 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroff4eb206b2008-09-03 18:15:37 +00005998}
5999
6000/// ActOnBlockStmtExpr - This is called when the body of a block statement
6001/// literal was successfully completed. ^(int x){...}
Sebastian Redlf53597f2009-03-15 17:47:39 +00006002Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
6003 StmtArg body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00006004 // If blocks are disabled, emit an error.
6005 if (!LangOpts.Blocks)
6006 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +00006007
Steve Naroff4eb206b2008-09-03 18:15:37 +00006008 // Ensure that CurBlock is deleted.
6009 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroff4eb206b2008-09-03 18:15:37 +00006010
Steve Naroff090276f2008-10-10 01:28:17 +00006011 PopDeclContext();
6012
Steve Naroff4eb206b2008-09-03 18:15:37 +00006013 // Pop off CurBlock, handle nested blocks.
6014 CurBlock = CurBlock->PrevBlockInfo;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006015
Steve Naroff4eb206b2008-09-03 18:15:37 +00006016 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00006017 if (!BSI->ReturnType.isNull())
6018 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006019
Steve Naroff4eb206b2008-09-03 18:15:37 +00006020 llvm::SmallVector<QualType, 8> ArgTypes;
6021 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
6022 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00006023
Mike Stump56925862009-07-28 22:04:01 +00006024 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00006025 QualType BlockTy;
6026 if (!BSI->hasPrototype)
Mike Stump56925862009-07-28 22:04:01 +00006027 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
6028 NoReturn);
Steve Naroff4eb206b2008-09-03 18:15:37 +00006029 else
Jay Foadbeaaccd2009-05-21 09:52:38 +00006030 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump56925862009-07-28 22:04:01 +00006031 BSI->isVariadic, 0, false, false, 0, 0,
6032 NoReturn);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006033
Eli Friedmanb1d796d2009-03-23 00:24:07 +00006034 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregore0762c92009-06-19 23:52:42 +00006035 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00006036 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006037
Chris Lattner17a78302009-04-19 05:28:12 +00006038 // If needed, diagnose invalid gotos and switches in the block.
6039 if (CurFunctionNeedsScopeChecking)
6040 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
6041 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
Mike Stump1eb44332009-09-09 15:08:12 +00006042
Anders Carlssone9146f22009-05-01 19:49:17 +00006043 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump56925862009-07-28 22:04:01 +00006044 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redlf53597f2009-03-15 17:47:39 +00006045 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
6046 BSI->hasBlockDeclRefExprs));
Steve Naroff4eb206b2008-09-03 18:15:37 +00006047}
6048
Sebastian Redlf53597f2009-03-15 17:47:39 +00006049Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
6050 ExprArg expr, TypeTy *type,
6051 SourceLocation RPLoc) {
Argyrios Kyrtzidise8661902009-08-19 01:28:28 +00006052 QualType T = GetTypeFromParser(type);
Chris Lattner0d20b8a2009-04-05 15:49:53 +00006053 Expr *E = static_cast<Expr*>(expr.get());
6054 Expr *OrigExpr = E;
Mike Stump1eb44332009-09-09 15:08:12 +00006055
Anders Carlsson7c50aca2007-10-15 20:28:48 +00006056 InitBuiltinVaListType();
Eli Friedmanc34bcde2008-08-09 23:32:40 +00006057
6058 // Get the va_list type
6059 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00006060 if (VaListType->isArrayType()) {
6061 // Deal with implicit array decay; for example, on x86-64,
6062 // va_list is an array, but it's supposed to decay to
6063 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00006064 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00006065 // Make sure the input expression also decays appropriately.
6066 UsualUnaryConversions(E);
6067 } else {
6068 // Otherwise, the va_list argument must be an l-value because
6069 // it is modified by va_arg.
Mike Stump1eb44332009-09-09 15:08:12 +00006070 if (!E->isTypeDependent() &&
Douglas Gregordd027302009-05-19 23:10:31 +00006071 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00006072 return ExprError();
6073 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00006074
Douglas Gregordd027302009-05-19 23:10:31 +00006075 if (!E->isTypeDependent() &&
6076 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00006077 return ExprError(Diag(E->getLocStart(),
6078 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00006079 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00006080 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006081
Eli Friedmanb1d796d2009-03-23 00:24:07 +00006082 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7c50aca2007-10-15 20:28:48 +00006083 // FIXME: Warn if a non-POD type is passed in.
Mike Stumpeed9cac2009-02-19 03:04:26 +00006084
Sebastian Redlf53597f2009-03-15 17:47:39 +00006085 expr.release();
6086 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
6087 RPLoc));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00006088}
6089
Sebastian Redlf53597f2009-03-15 17:47:39 +00006090Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00006091 // The type of __null will be int or long, depending on the size of
6092 // pointers on the target.
6093 QualType Ty;
6094 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
6095 Ty = Context.IntTy;
6096 else
6097 Ty = Context.LongTy;
6098
Sebastian Redlf53597f2009-03-15 17:47:39 +00006099 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00006100}
6101
Chris Lattner5cf216b2008-01-04 18:04:52 +00006102bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
6103 SourceLocation Loc,
6104 QualType DstType, QualType SrcType,
6105 Expr *SrcExpr, const char *Flavor) {
6106 // Decode the result (notice that AST's are still created for extensions).
6107 bool isInvalid = false;
6108 unsigned DiagKind;
6109 switch (ConvTy) {
6110 default: assert(0 && "Unknown conversion type");
6111 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00006112 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00006113 DiagKind = diag::ext_typecheck_convert_pointer_int;
6114 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00006115 case IntToPointer:
6116 DiagKind = diag::ext_typecheck_convert_int_pointer;
6117 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006118 case IncompatiblePointer:
6119 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
6120 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006121 case IncompatiblePointerSign:
6122 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
6123 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006124 case FunctionVoidPointer:
6125 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
6126 break;
6127 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00006128 // If the qualifiers lost were because we were applying the
6129 // (deprecated) C++ conversion from a string literal to a char*
6130 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
6131 // Ideally, this check would be performed in
6132 // CheckPointerTypesForAssignment. However, that would require a
6133 // bit of refactoring (so that the second argument is an
6134 // expression, rather than a type), which should be done as part
6135 // of a larger effort to fix CheckPointerTypesForAssignment for
6136 // C++ semantics.
6137 if (getLangOptions().CPlusPlus &&
6138 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
6139 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006140 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
6141 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00006142 case IntToBlockPointer:
6143 DiagKind = diag::err_int_to_block_pointer;
6144 break;
6145 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00006146 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00006147 break;
Steve Naroff39579072008-10-14 22:18:38 +00006148 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00006149 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00006150 // it can give a more specific diagnostic.
6151 DiagKind = diag::warn_incompatible_qualified_id;
6152 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006153 case IncompatibleVectors:
6154 DiagKind = diag::warn_incompatible_vectors;
6155 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006156 case Incompatible:
6157 DiagKind = diag::err_typecheck_convert_incompatible;
6158 isInvalid = true;
6159 break;
6160 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006161
Chris Lattnerd9d22dd2008-11-24 05:29:24 +00006162 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
6163 << SrcExpr->getSourceRange();
Chris Lattner5cf216b2008-01-04 18:04:52 +00006164 return isInvalid;
6165}
Anders Carlssone21555e2008-11-30 19:50:32 +00006166
Chris Lattner3bf68932009-04-25 21:59:05 +00006167bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006168 llvm::APSInt ICEResult;
6169 if (E->isIntegerConstantExpr(ICEResult, Context)) {
6170 if (Result)
6171 *Result = ICEResult;
6172 return false;
6173 }
6174
Anders Carlssone21555e2008-11-30 19:50:32 +00006175 Expr::EvalResult EvalResult;
6176
Mike Stumpeed9cac2009-02-19 03:04:26 +00006177 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone21555e2008-11-30 19:50:32 +00006178 EvalResult.HasSideEffects) {
6179 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
6180
6181 if (EvalResult.Diag) {
6182 // We only show the note if it's not the usual "invalid subexpression"
6183 // or if it's actually in a subexpression.
6184 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
6185 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
6186 Diag(EvalResult.DiagLoc, EvalResult.Diag);
6187 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006188
Anders Carlssone21555e2008-11-30 19:50:32 +00006189 return true;
6190 }
6191
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006192 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
6193 E->getSourceRange();
Anders Carlssone21555e2008-11-30 19:50:32 +00006194
Eli Friedman3b5ccca2009-04-25 22:26:58 +00006195 if (EvalResult.Diag &&
6196 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
6197 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006198
Anders Carlssone21555e2008-11-30 19:50:32 +00006199 if (Result)
6200 *Result = EvalResult.Val.getInt();
6201 return false;
6202}
Douglas Gregore0762c92009-06-19 23:52:42 +00006203
Mike Stump1eb44332009-09-09 15:08:12 +00006204Sema::ExpressionEvaluationContext
6205Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregorac7610d2009-06-22 20:57:11 +00006206 // Introduce a new set of potentially referenced declarations to the stack.
6207 if (NewContext == PotentiallyPotentiallyEvaluated)
6208 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
Mike Stump1eb44332009-09-09 15:08:12 +00006209
Douglas Gregorac7610d2009-06-22 20:57:11 +00006210 std::swap(ExprEvalContext, NewContext);
6211 return NewContext;
6212}
6213
Mike Stump1eb44332009-09-09 15:08:12 +00006214void
Douglas Gregorac7610d2009-06-22 20:57:11 +00006215Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
6216 ExpressionEvaluationContext NewContext) {
6217 ExprEvalContext = NewContext;
6218
6219 if (OldContext == PotentiallyPotentiallyEvaluated) {
6220 // Mark any remaining declarations in the current position of the stack
6221 // as "referenced". If they were not meant to be referenced, semantic
6222 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
6223 PotentiallyReferencedDecls RemainingDecls;
6224 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
6225 PotentiallyReferencedDeclStack.pop_back();
Mike Stump1eb44332009-09-09 15:08:12 +00006226
Douglas Gregorac7610d2009-06-22 20:57:11 +00006227 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
6228 IEnd = RemainingDecls.end();
6229 I != IEnd; ++I)
6230 MarkDeclarationReferenced(I->first, I->second);
6231 }
6232}
Douglas Gregore0762c92009-06-19 23:52:42 +00006233
6234/// \brief Note that the given declaration was referenced in the source code.
6235///
6236/// This routine should be invoke whenever a given declaration is referenced
6237/// in the source code, and where that reference occurred. If this declaration
6238/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
6239/// C99 6.9p3), then the declaration will be marked as used.
6240///
6241/// \param Loc the location where the declaration was referenced.
6242///
6243/// \param D the declaration that has been referenced by the source code.
6244void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
6245 assert(D && "No declaration?");
Mike Stump1eb44332009-09-09 15:08:12 +00006246
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006247 if (D->isUsed())
6248 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006249
Douglas Gregorb5352cf2009-10-08 21:35:42 +00006250 // Mark a parameter or variable declaration "used", regardless of whether we're in a
6251 // template or not. The reason for this is that unevaluated expressions
6252 // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and
6253 // -Wunused-parameters)
6254 if (isa<ParmVarDecl>(D) ||
6255 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod()))
Douglas Gregore0762c92009-06-19 23:52:42 +00006256 D->setUsed(true);
Mike Stump1eb44332009-09-09 15:08:12 +00006257
Douglas Gregore0762c92009-06-19 23:52:42 +00006258 // Do not mark anything as "used" within a dependent context; wait for
6259 // an instantiation.
6260 if (CurContext->isDependentContext())
6261 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006262
Douglas Gregorac7610d2009-06-22 20:57:11 +00006263 switch (ExprEvalContext) {
6264 case Unevaluated:
6265 // We are in an expression that is not potentially evaluated; do nothing.
6266 return;
Mike Stump1eb44332009-09-09 15:08:12 +00006267
Douglas Gregorac7610d2009-06-22 20:57:11 +00006268 case PotentiallyEvaluated:
6269 // We are in a potentially-evaluated expression, so this declaration is
6270 // "used"; handle this below.
6271 break;
Mike Stump1eb44332009-09-09 15:08:12 +00006272
Douglas Gregorac7610d2009-06-22 20:57:11 +00006273 case PotentiallyPotentiallyEvaluated:
6274 // We are in an expression that may be potentially evaluated; queue this
6275 // declaration reference until we know whether the expression is
6276 // potentially evaluated.
6277 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
6278 return;
6279 }
Mike Stump1eb44332009-09-09 15:08:12 +00006280
Douglas Gregore0762c92009-06-19 23:52:42 +00006281 // Note that this declaration has been used.
Fariborz Jahanianb7f4cc02009-06-22 17:30:33 +00006282 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006283 unsigned TypeQuals;
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00006284 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
6285 if (!Constructor->isUsed())
6286 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump1eb44332009-09-09 15:08:12 +00006287 } else if (Constructor->isImplicit() &&
Mike Stumpac5fc7c2009-08-04 21:02:39 +00006288 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00006289 if (!Constructor->isUsed())
6290 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
6291 }
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00006292 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
6293 if (Destructor->isImplicit() && !Destructor->isUsed())
6294 DefineImplicitDestructor(Loc, Destructor);
Mike Stump1eb44332009-09-09 15:08:12 +00006295
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00006296 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
6297 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
6298 MethodDecl->getOverloadedOperator() == OO_Equal) {
6299 if (!MethodDecl->isUsed())
6300 DefineImplicitOverloadedAssign(Loc, MethodDecl);
6301 }
6302 }
Fariborz Jahanianf5ed9e02009-06-24 22:09:44 +00006303 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Mike Stump1eb44332009-09-09 15:08:12 +00006304 // Implicit instantiation of function templates and member functions of
Douglas Gregor1637be72009-06-26 00:10:03 +00006305 // class templates.
Douglas Gregor3b846b62009-10-27 20:53:28 +00006306 if (!Function->getBody() && Function->isImplicitlyInstantiable()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006307 bool AlreadyInstantiated = false;
6308 if (FunctionTemplateSpecializationInfo *SpecInfo
6309 = Function->getTemplateSpecializationInfo()) {
6310 if (SpecInfo->getPointOfInstantiation().isInvalid())
6311 SpecInfo->setPointOfInstantiation(Loc);
Douglas Gregor3b846b62009-10-27 20:53:28 +00006312 else if (SpecInfo->getTemplateSpecializationKind()
6313 == TSK_ImplicitInstantiation)
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006314 AlreadyInstantiated = true;
6315 } else if (MemberSpecializationInfo *MSInfo
6316 = Function->getMemberSpecializationInfo()) {
6317 if (MSInfo->getPointOfInstantiation().isInvalid())
6318 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregor3b846b62009-10-27 20:53:28 +00006319 else if (MSInfo->getTemplateSpecializationKind()
6320 == TSK_ImplicitInstantiation)
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006321 AlreadyInstantiated = true;
6322 }
6323
6324 if (!AlreadyInstantiated)
6325 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
6326 }
6327
Douglas Gregore0762c92009-06-19 23:52:42 +00006328 // FIXME: keep track of references to static functions
Douglas Gregore0762c92009-06-19 23:52:42 +00006329 Function->setUsed(true);
6330 return;
Douglas Gregord7f37bf2009-06-22 23:06:13 +00006331 }
Mike Stump1eb44332009-09-09 15:08:12 +00006332
Douglas Gregore0762c92009-06-19 23:52:42 +00006333 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00006334 // Implicit instantiation of static data members of class templates.
Mike Stump1eb44332009-09-09 15:08:12 +00006335 if (Var->isStaticDataMember() &&
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00006336 Var->getInstantiatedFromStaticDataMember()) {
6337 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
6338 assert(MSInfo && "Missing member specialization information?");
6339 if (MSInfo->getPointOfInstantiation().isInvalid() &&
6340 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) {
6341 MSInfo->setPointOfInstantiation(Loc);
6342 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
6343 }
6344 }
Mike Stump1eb44332009-09-09 15:08:12 +00006345
Douglas Gregore0762c92009-06-19 23:52:42 +00006346 // FIXME: keep track of references to static data?
Douglas Gregor7caa6822009-07-24 20:34:43 +00006347
Douglas Gregore0762c92009-06-19 23:52:42 +00006348 D->setUsed(true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00006349 return;
Sam Weinigcce6ebc2009-09-11 03:29:30 +00006350 }
Douglas Gregore0762c92009-06-19 23:52:42 +00006351}
Anders Carlsson8c8d9192009-10-09 23:51:55 +00006352
6353bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
6354 CallExpr *CE, FunctionDecl *FD) {
6355 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
6356 return false;
6357
6358 PartialDiagnostic Note =
6359 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
6360 << FD->getDeclName() : PDiag();
6361 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
6362
6363 if (RequireCompleteType(Loc, ReturnType,
6364 FD ?
6365 PDiag(diag::err_call_function_incomplete_return)
6366 << CE->getSourceRange() << FD->getDeclName() :
6367 PDiag(diag::err_call_incomplete_return)
6368 << CE->getSourceRange(),
6369 std::make_pair(NoteLoc, Note)))
6370 return true;
6371
6372 return false;
6373}
6374
John McCall5a881bb2009-10-12 21:59:07 +00006375// Diagnose the common s/=/==/ typo. Note that adding parentheses
6376// will prevent this condition from triggering, which is what we want.
6377void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
6378 SourceLocation Loc;
6379
6380 if (isa<BinaryOperator>(E)) {
6381 BinaryOperator *Op = cast<BinaryOperator>(E);
6382 if (Op->getOpcode() != BinaryOperator::Assign)
6383 return;
6384
6385 Loc = Op->getOperatorLoc();
6386 } else if (isa<CXXOperatorCallExpr>(E)) {
6387 CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E);
6388 if (Op->getOperator() != OO_Equal)
6389 return;
6390
6391 Loc = Op->getOperatorLoc();
6392 } else {
6393 // Not an assignment.
6394 return;
6395 }
6396
John McCall5a881bb2009-10-12 21:59:07 +00006397 SourceLocation Open = E->getSourceRange().getBegin();
John McCall2d152152009-10-12 22:25:59 +00006398 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
John McCall5a881bb2009-10-12 21:59:07 +00006399
6400 Diag(Loc, diag::warn_condition_is_assignment)
6401 << E->getSourceRange()
6402 << CodeModificationHint::CreateInsertion(Open, "(")
6403 << CodeModificationHint::CreateInsertion(Close, ")");
6404}
6405
6406bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) {
6407 DiagnoseAssignmentAsCondition(E);
6408
6409 if (!E->isTypeDependent()) {
6410 DefaultFunctionArrayConversion(E);
6411
6412 QualType T = E->getType();
6413
6414 if (getLangOptions().CPlusPlus) {
6415 if (CheckCXXBooleanCondition(E)) // C++ 6.4p4
6416 return true;
6417 } else if (!T->isScalarType()) { // C99 6.8.4.1p1
6418 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
6419 << T << E->getSourceRange();
6420 return true;
6421 }
6422 }
6423
6424 return false;
6425}