blob: a09f6a9005e4a504bc55bcea2aec6384d0230d4d [file] [log] [blame]
Chris Lattner5b183d82006-11-10 05:03:26 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183d82006-11-10 05:03:26 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Sema.h"
Chris Lattnercb6a3822006-11-10 06:20:45 +000015#include "clang/AST/ASTContext.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000016#include "clang/AST/DeclObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000017#include "clang/AST/DeclTemplate.h"
Chris Lattneraa9c7ae2008-04-08 04:40:51 +000018#include "clang/AST/ExprCXX.h"
Steve Naroff021ca182008-05-29 21:12:08 +000019#include "clang/AST/ExprObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000020#include "clang/Basic/PartialDiagnostic.h"
Steve Narofff2fb89e2007-03-13 20:29:44 +000021#include "clang/Basic/SourceManager.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000022#include "clang/Basic/TargetInfo.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000023#include "clang/Lex/LiteralSupport.h"
24#include "clang/Lex/Preprocessor.h"
Steve Naroffc540d662008-09-03 18:15:37 +000025#include "clang/Parse/DeclSpec.h"
Chris Lattner07d754a2008-10-26 23:43:26 +000026#include "clang/Parse/Designator.h"
Steve Naroffc540d662008-09-03 18:15:37 +000027#include "clang/Parse/Scope.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000028using namespace clang;
29
David Chisnall9f57c292009-08-17 16:35:33 +000030
Douglas Gregor171c45a2009-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 Lattnerb7df3c62009-10-25 22:31:57 +000040/// If IgnoreDeprecated is set to true, this should not want about deprecated
41/// decls.
42///
Douglas Gregor171c45a2009-02-18 21:56:37 +000043/// \returns true if there was an error (this declaration cannot be
44/// referenced), false otherwise.
Chris Lattnerb7df3c62009-10-25 22:31:57 +000045///
John McCall28a6aea2009-11-04 02:18:39 +000046bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc) {
Chris Lattner4bf74fd2009-02-15 22:43:40 +000047 // See if the decl is deprecated.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000048 if (D->getAttr<DeprecatedAttr>()) {
John McCall28a6aea2009-11-04 02:18:39 +000049 EmitDeprecationWarning(D, Loc);
Chris Lattner4bf74fd2009-02-15 22:43:40 +000050 }
51
Chris Lattnera27dd592009-10-25 17:21:40 +000052 // See if the decl is unavailable
53 if (D->getAttr<UnavailableAttr>()) {
54 Diag(Loc, diag::warn_unavailable) << D->getDeclName();
55 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
56 }
57
Douglas Gregor171c45a2009-02-18 21:56:37 +000058 // See if this is a deleted function.
Douglas Gregorde681d42009-02-24 04:26:15 +000059 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +000060 if (FD->isDeleted()) {
61 Diag(Loc, diag::err_deleted_function_use);
62 Diag(D->getLocation(), diag::note_unavailable_here) << true;
63 return true;
64 }
Douglas Gregorde681d42009-02-24 04:26:15 +000065 }
Douglas Gregor171c45a2009-02-18 21:56:37 +000066
Douglas Gregor171c45a2009-02-18 21:56:37 +000067 return false;
Chris Lattner4bf74fd2009-02-15 22:43:40 +000068}
69
Fariborz Jahanian027b8862009-05-13 18:09:35 +000070/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump11289f42009-09-09 15:08:12 +000071/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian027b8862009-05-13 18:09:35 +000072/// attribute. It warns if call does not have the sentinel argument.
73///
74void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump11289f42009-09-09 15:08:12 +000075 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +000076 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump11289f42009-09-09 15:08:12 +000077 if (!attr)
Fariborz Jahanian9e877212009-05-13 23:20:50 +000078 return;
Fariborz Jahanian9e877212009-05-13 23:20:50 +000079 int sentinelPos = attr->getSentinel();
80 int nullPos = attr->getNullPos();
Mike Stump11289f42009-09-09 15:08:12 +000081
Mike Stump87c57ac2009-05-16 07:39:55 +000082 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
83 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian9e877212009-05-13 23:20:50 +000084 unsigned int i = 0;
Fariborz Jahanian4a528032009-05-14 18:00:00 +000085 bool warnNotEnoughArgs = false;
86 int isMethod = 0;
87 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
88 // skip over named parameters.
89 ObjCMethodDecl::param_iterator P, E = MD->param_end();
90 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
91 if (nullPos)
92 --nullPos;
93 else
94 ++i;
95 }
96 warnNotEnoughArgs = (P != E || i >= NumArgs);
97 isMethod = 1;
Mike Stump12b8ce12009-08-04 21:02:39 +000098 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian4a528032009-05-14 18:00:00 +000099 // skip over named parameters.
100 ObjCMethodDecl::param_iterator P, E = FD->param_end();
101 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
102 if (nullPos)
103 --nullPos;
104 else
105 ++i;
106 }
107 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stump12b8ce12009-08-04 21:02:39 +0000108 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000109 // block or function pointer call.
110 QualType Ty = V->getType();
111 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +0000112 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall9dd450b2009-09-21 23:43:11 +0000113 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
114 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000115 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
116 unsigned NumArgsInProto = Proto->getNumArgs();
117 unsigned k;
118 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
119 if (nullPos)
120 --nullPos;
121 else
122 ++i;
123 }
124 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
125 }
126 if (Ty->isBlockPointerType())
127 isMethod = 2;
Mike Stump12b8ce12009-08-04 21:02:39 +0000128 } else
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000129 return;
Mike Stump12b8ce12009-08-04 21:02:39 +0000130 } else
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000131 return;
132
133 if (warnNotEnoughArgs) {
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000134 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000135 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000136 return;
137 }
138 int sentinel = i;
139 while (sentinelPos > 0 && i < NumArgs-1) {
140 --sentinelPos;
141 ++i;
142 }
143 if (sentinelPos > 0) {
144 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000145 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000146 return;
147 }
148 while (i < NumArgs-1) {
149 ++i;
150 ++sentinel;
151 }
152 Expr *sentinelExpr = Args[sentinel];
153 if (sentinelExpr && (!sentinelExpr->getType()->isPointerType() ||
Douglas Gregor56751b52009-09-25 04:25:58 +0000154 !sentinelExpr->isNullPointerConstant(Context,
155 Expr::NPC_ValueDependentIsNull))) {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000156 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000157 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000158 }
159 return;
Fariborz Jahanian027b8862009-05-13 18:09:35 +0000160}
161
Douglas Gregor87f95b02009-02-26 21:00:50 +0000162SourceRange Sema::getExprRange(ExprTy *E) const {
163 Expr *Ex = (Expr *)E;
164 return Ex? Ex->getSourceRange() : SourceRange();
165}
166
Chris Lattner513165e2008-07-25 21:10:04 +0000167//===----------------------------------------------------------------------===//
168// Standard Promotions and Conversions
169//===----------------------------------------------------------------------===//
170
Chris Lattner513165e2008-07-25 21:10:04 +0000171/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
172void Sema::DefaultFunctionArrayConversion(Expr *&E) {
173 QualType Ty = E->getType();
174 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
175
Chris Lattner513165e2008-07-25 21:10:04 +0000176 if (Ty->isFunctionType())
Mike Stump11289f42009-09-09 15:08:12 +0000177 ImpCastExprToType(E, Context.getPointerType(Ty),
Anders Carlsson6904f642009-09-01 20:37:18 +0000178 CastExpr::CK_FunctionToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000179 else if (Ty->isArrayType()) {
180 // In C90 mode, arrays only promote to pointers if the array expression is
181 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
182 // type 'array of type' is converted to an expression that has type 'pointer
183 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
184 // that has type 'array of type' ...". The relevant change is "an lvalue"
185 // (C90) to "an expression" (C99).
Argyrios Kyrtzidis9321c742008-09-11 04:25:59 +0000186 //
187 // C++ 4.2p1:
188 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
189 // T" can be converted to an rvalue of type "pointer to T".
190 //
191 if (getLangOptions().C99 || getLangOptions().CPlusPlus ||
192 E->isLvalue(Context) == Expr::LV_Valid)
Anders Carlsson8fc489d2009-08-07 23:48:20 +0000193 ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
194 CastExpr::CK_ArrayToPointerDecay);
Chris Lattner61f60a02008-07-25 21:33:13 +0000195 }
Chris Lattner513165e2008-07-25 21:10:04 +0000196}
197
198/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump11289f42009-09-09 15:08:12 +0000199/// operators (C99 6.3). The conversions of array and function types are
Chris Lattner513165e2008-07-25 21:10:04 +0000200/// sometimes surpressed. For example, the array->pointer conversion doesn't
201/// apply if the array is an argument to the sizeof or address (&) operators.
202/// In these instances, this routine should *not* be called.
203Expr *Sema::UsualUnaryConversions(Expr *&Expr) {
204 QualType Ty = Expr->getType();
205 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000206
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000207 // C99 6.3.1.1p2:
208 //
209 // The following may be used in an expression wherever an int or
210 // unsigned int may be used:
211 // - an object or expression with an integer type whose integer
212 // conversion rank is less than or equal to the rank of int
213 // and unsigned int.
214 // - A bit-field of type _Bool, int, signed int, or unsigned int.
215 //
216 // If an int can represent all values of the original type, the
217 // value is converted to an int; otherwise, it is converted to an
218 // unsigned int. These are called the integer promotions. All
219 // other types are unchanged by the integer promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000220 QualType PTy = Context.isPromotableBitField(Expr);
221 if (!PTy.isNull()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +0000222 ImpCastExprToType(Expr, PTy, CastExpr::CK_IntegralCast);
Eli Friedman629ffb92009-08-20 04:21:42 +0000223 return Expr;
224 }
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000225 if (Ty->isPromotableIntegerType()) {
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000226 QualType PT = Context.getPromotedIntegerType(Ty);
Eli Friedman06ed2a52009-10-20 08:27:19 +0000227 ImpCastExprToType(Expr, PT, CastExpr::CK_IntegralCast);
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000228 return Expr;
Eli Friedman629ffb92009-08-20 04:21:42 +0000229 }
230
Douglas Gregor8d9c5092009-05-01 20:41:21 +0000231 DefaultFunctionArrayConversion(Expr);
Chris Lattner513165e2008-07-25 21:10:04 +0000232 return Expr;
233}
234
Chris Lattner2ce500f2008-07-25 22:25:12 +0000235/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump11289f42009-09-09 15:08:12 +0000236/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner2ce500f2008-07-25 22:25:12 +0000237/// double. All other argument types are converted by UsualUnaryConversions().
238void Sema::DefaultArgumentPromotion(Expr *&Expr) {
239 QualType Ty = Expr->getType();
240 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000241
Chris Lattner2ce500f2008-07-25 22:25:12 +0000242 // If this is a 'float' (CVR qualified or typedef) promote to double.
John McCall9dd450b2009-09-21 23:43:11 +0000243 if (const BuiltinType *BT = Ty->getAs<BuiltinType>())
Chris Lattner2ce500f2008-07-25 22:25:12 +0000244 if (BT->getKind() == BuiltinType::Float)
Eli Friedman06ed2a52009-10-20 08:27:19 +0000245 return ImpCastExprToType(Expr, Context.DoubleTy,
246 CastExpr::CK_FloatingCast);
Mike Stump11289f42009-09-09 15:08:12 +0000247
Chris Lattner2ce500f2008-07-25 22:25:12 +0000248 UsualUnaryConversions(Expr);
249}
250
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000251/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
252/// will warn if the resulting type is not a POD type, and rejects ObjC
253/// interfaces passed by value. This returns true if the argument type is
254/// completely illegal.
255bool Sema::DefaultVariadicArgumentPromotion(Expr *&Expr, VariadicCallType CT) {
Anders Carlssona7d069d2009-01-16 16:48:51 +0000256 DefaultArgumentPromotion(Expr);
Mike Stump11289f42009-09-09 15:08:12 +0000257
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000258 if (Expr->getType()->isObjCInterfaceType()) {
259 Diag(Expr->getLocStart(),
260 diag::err_cannot_pass_objc_interface_to_vararg)
261 << Expr->getType() << CT;
262 return true;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000263 }
Mike Stump11289f42009-09-09 15:08:12 +0000264
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000265 if (!Expr->getType()->isPODType())
266 Diag(Expr->getLocStart(), diag::warn_cannot_pass_non_pod_arg_to_vararg)
267 << Expr->getType() << CT;
268
269 return false;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000270}
271
272
Chris Lattner513165e2008-07-25 21:10:04 +0000273/// UsualArithmeticConversions - Performs various conversions that are common to
274/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump11289f42009-09-09 15:08:12 +0000275/// routine returns the first non-arithmetic type found. The client is
Chris Lattner513165e2008-07-25 21:10:04 +0000276/// responsible for emitting appropriate error diagnostics.
277/// FIXME: verify the conversion rules for "complex int" are consistent with
278/// GCC.
279QualType Sema::UsualArithmeticConversions(Expr *&lhsExpr, Expr *&rhsExpr,
280 bool isCompAssign) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000281 if (!isCompAssign)
Chris Lattner513165e2008-07-25 21:10:04 +0000282 UsualUnaryConversions(lhsExpr);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000283
284 UsualUnaryConversions(rhsExpr);
Douglas Gregora11693b2008-11-12 17:17:38 +0000285
Mike Stump11289f42009-09-09 15:08:12 +0000286 // For conversion purposes, we ignore any qualifiers.
Chris Lattner513165e2008-07-25 21:10:04 +0000287 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +0000288 QualType lhs =
289 Context.getCanonicalType(lhsExpr->getType()).getUnqualifiedType();
Mike Stump11289f42009-09-09 15:08:12 +0000290 QualType rhs =
Chris Lattner574dee62008-07-26 22:17:49 +0000291 Context.getCanonicalType(rhsExpr->getType()).getUnqualifiedType();
Douglas Gregora11693b2008-11-12 17:17:38 +0000292
293 // If both types are identical, no conversion is needed.
294 if (lhs == rhs)
295 return lhs;
296
297 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
298 // The caller can deal with this (e.g. pointer + int).
299 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
300 return lhs;
301
Douglas Gregord2c2d172009-05-02 00:36:19 +0000302 // Perform bitfield promotions.
Eli Friedman629ffb92009-08-20 04:21:42 +0000303 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000304 if (!LHSBitfieldPromoteTy.isNull())
305 lhs = LHSBitfieldPromoteTy;
Eli Friedman629ffb92009-08-20 04:21:42 +0000306 QualType RHSBitfieldPromoteTy = Context.isPromotableBitField(rhsExpr);
Douglas Gregord2c2d172009-05-02 00:36:19 +0000307 if (!RHSBitfieldPromoteTy.isNull())
308 rhs = RHSBitfieldPromoteTy;
309
Eli Friedman5ae98ee2009-08-19 07:44:53 +0000310 QualType destType = Context.UsualArithmeticConversionsType(lhs, rhs);
Eli Friedman8b7b1b12009-03-28 01:22:36 +0000311 if (!isCompAssign)
Eli Friedman06ed2a52009-10-20 08:27:19 +0000312 ImpCastExprToType(lhsExpr, destType, CastExpr::CK_Unknown);
313 ImpCastExprToType(rhsExpr, destType, CastExpr::CK_Unknown);
Douglas Gregora11693b2008-11-12 17:17:38 +0000314 return destType;
315}
316
Chris Lattner513165e2008-07-25 21:10:04 +0000317//===----------------------------------------------------------------------===//
318// Semantic Analysis for various Expression Types
319//===----------------------------------------------------------------------===//
320
321
Steve Naroff83895f72007-09-16 03:34:24 +0000322/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner5b183d82006-11-10 05:03:26 +0000323/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
324/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
325/// multiple tokens. However, the common case is that StringToks points to one
326/// string.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000327///
328Action::OwningExprResult
Steve Naroff83895f72007-09-16 03:34:24 +0000329Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Chris Lattner5b183d82006-11-10 05:03:26 +0000330 assert(NumStringToks && "Must have at least one string!");
331
Chris Lattner8a24e582009-01-16 18:51:42 +0000332 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Steve Naroff4f88b312007-03-13 22:37:02 +0000333 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000334 return ExprError();
Chris Lattner5b183d82006-11-10 05:03:26 +0000335
Chris Lattner23b7eb62007-06-15 23:05:46 +0000336 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
Chris Lattner5b183d82006-11-10 05:03:26 +0000337 for (unsigned i = 0; i != NumStringToks; ++i)
338 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattner36fc8792008-02-11 00:02:17 +0000339
Chris Lattner36fc8792008-02-11 00:02:17 +0000340 QualType StrTy = Context.CharTy;
Argyrios Kyrtzidiscbad7252008-08-09 17:20:01 +0000341 if (Literal.AnyWide) StrTy = Context.getWCharType();
Chris Lattner36fc8792008-02-11 00:02:17 +0000342 if (Literal.Pascal) StrTy = Context.UnsignedCharTy;
Douglas Gregoraa1e21d2008-09-12 00:47:35 +0000343
344 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
345 if (getLangOptions().CPlusPlus)
346 StrTy.addConst();
Sebastian Redlffbcf962009-01-18 18:53:16 +0000347
Chris Lattner36fc8792008-02-11 00:02:17 +0000348 // Get an array type for the string, according to C99 6.4.5. This includes
349 // the nul terminator character as well as the string length for pascal
350 // strings.
351 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerd42c29f2009-02-26 23:01:51 +0000352 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattner36fc8792008-02-11 00:02:17 +0000353 ArrayType::Normal, 0);
Mike Stump11289f42009-09-09 15:08:12 +0000354
Chris Lattner5b183d82006-11-10 05:03:26 +0000355 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Mike Stump11289f42009-09-09 15:08:12 +0000356 return Owned(StringLiteral::Create(Context, Literal.GetString(),
Chris Lattnerf83b5af2009-02-18 06:40:38 +0000357 Literal.GetStringLength(),
358 Literal.AnyWide, StrTy,
359 &StringTokLocs[0],
360 StringTokLocs.size()));
Chris Lattner5b183d82006-11-10 05:03:26 +0000361}
362
Chris Lattner2a9d9892008-10-20 05:16:36 +0000363/// ShouldSnapshotBlockValueReference - Return true if a reference inside of
364/// CurBlock to VD should cause it to be snapshotted (as we do for auto
365/// variables defined outside the block) or false if this is not needed (e.g.
366/// for values inside the block or for globals).
367///
Chris Lattner497d7b02009-04-21 22:26:47 +0000368/// This also keeps the 'hasBlockDeclRefExprs' in the BlockSemaInfo records
369/// up-to-date.
370///
Chris Lattner2a9d9892008-10-20 05:16:36 +0000371static bool ShouldSnapshotBlockValueReference(BlockSemaInfo *CurBlock,
372 ValueDecl *VD) {
373 // If the value is defined inside the block, we couldn't snapshot it even if
374 // we wanted to.
375 if (CurBlock->TheDecl == VD->getDeclContext())
376 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000377
Chris Lattner2a9d9892008-10-20 05:16:36 +0000378 // If this is an enum constant or function, it is constant, don't snapshot.
379 if (isa<EnumConstantDecl>(VD) || isa<FunctionDecl>(VD))
380 return false;
381
382 // If this is a reference to an extern, static, or global variable, no need to
383 // snapshot it.
384 // FIXME: What about 'const' variables in C++?
385 if (const VarDecl *Var = dyn_cast<VarDecl>(VD))
Chris Lattner497d7b02009-04-21 22:26:47 +0000386 if (!Var->hasLocalStorage())
387 return false;
Mike Stump11289f42009-09-09 15:08:12 +0000388
Chris Lattner497d7b02009-04-21 22:26:47 +0000389 // Blocks that have these can't be constant.
390 CurBlock->hasBlockDeclRefExprs = true;
391
392 // If we have nested blocks, the decl may be declared in an outer block (in
393 // which case that outer block doesn't get "hasBlockDeclRefExprs") or it may
394 // be defined outside all of the current blocks (in which case the blocks do
395 // all get the bit). Walk the nesting chain.
396 for (BlockSemaInfo *NextBlock = CurBlock->PrevBlockInfo; NextBlock;
397 NextBlock = NextBlock->PrevBlockInfo) {
398 // If we found the defining block for the variable, don't mark the block as
399 // having a reference outside it.
400 if (NextBlock->TheDecl == VD->getDeclContext())
401 break;
Mike Stump11289f42009-09-09 15:08:12 +0000402
Chris Lattner497d7b02009-04-21 22:26:47 +0000403 // Otherwise, the DeclRef from the inner block causes the outer one to need
404 // a snapshot as well.
405 NextBlock->hasBlockDeclRefExprs = true;
406 }
Mike Stump11289f42009-09-09 15:08:12 +0000407
Chris Lattner2a9d9892008-10-20 05:16:36 +0000408 return true;
Mike Stump11289f42009-09-09 15:08:12 +0000409}
410
Chris Lattner2a9d9892008-10-20 05:16:36 +0000411
412
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000413/// BuildDeclRefExpr - Build a DeclRefExpr.
Anders Carlsson946b86d2009-06-24 00:10:43 +0000414Sema::OwningExprResult
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000415Sema::BuildDeclRefExpr(NamedDecl *D, QualType Ty, SourceLocation Loc,
416 bool TypeDependent, bool ValueDependent,
417 const CXXScopeSpec *SS) {
Anders Carlsson364035d12009-06-26 19:16:07 +0000418 if (Context.getCanonicalType(Ty) == Context.UndeducedAutoTy) {
419 Diag(Loc,
Mike Stump11289f42009-09-09 15:08:12 +0000420 diag::err_auto_variable_cannot_appear_in_own_initializer)
Anders Carlsson364035d12009-06-26 19:16:07 +0000421 << D->getDeclName();
422 return ExprError();
423 }
Mike Stump11289f42009-09-09 15:08:12 +0000424
Anders Carlsson946b86d2009-06-24 00:10:43 +0000425 if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
426 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
427 if (const FunctionDecl *FD = MD->getParent()->isLocalClass()) {
428 if (VD->hasLocalStorage() && VD->getDeclContext() != CurContext) {
Mike Stump11289f42009-09-09 15:08:12 +0000429 Diag(Loc, diag::err_reference_to_local_var_in_enclosing_function)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000430 << D->getIdentifier() << FD->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +0000431 Diag(D->getLocation(), diag::note_local_variable_declared_here)
Anders Carlsson946b86d2009-06-24 00:10:43 +0000432 << D->getIdentifier();
433 return ExprError();
434 }
435 }
436 }
437 }
Mike Stump11289f42009-09-09 15:08:12 +0000438
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000439 MarkDeclarationReferenced(Loc, D);
Mike Stump11289f42009-09-09 15:08:12 +0000440
Douglas Gregor4bd90e52009-10-23 18:54:35 +0000441 return Owned(DeclRefExpr::Create(Context,
442 SS? (NestedNameSpecifier *)SS->getScopeRep() : 0,
443 SS? SS->getRange() : SourceRange(),
444 D, Loc,
445 Ty, TypeDependent, ValueDependent));
Douglas Gregorc7acfdf2009-01-06 05:10:23 +0000446}
447
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000448/// getObjectForAnonymousRecordDecl - Retrieve the (unnamed) field or
449/// variable corresponding to the anonymous union or struct whose type
450/// is Record.
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000451static Decl *getObjectForAnonymousRecordDecl(ASTContext &Context,
452 RecordDecl *Record) {
Mike Stump11289f42009-09-09 15:08:12 +0000453 assert(Record->isAnonymousStructOrUnion() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000454 "Record must be an anonymous struct or union!");
Mike Stump11289f42009-09-09 15:08:12 +0000455
Mike Stump87c57ac2009-05-16 07:39:55 +0000456 // FIXME: Once Decls are directly linked together, this will be an O(1)
457 // operation rather than a slow walk through DeclContext's vector (which
458 // itself will be eliminated). DeclGroups might make this even better.
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000459 DeclContext *Ctx = Record->getDeclContext();
Mike Stump11289f42009-09-09 15:08:12 +0000460 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000461 DEnd = Ctx->decls_end();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000462 D != DEnd; ++D) {
463 if (*D == Record) {
464 // The object for the anonymous struct/union directly
465 // follows its type in the list of declarations.
466 ++D;
467 assert(D != DEnd && "Missing object for anonymous record");
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000468 assert(!cast<NamedDecl>(*D)->getDeclName() && "Decl should be unnamed");
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000469 return *D;
470 }
471 }
472
473 assert(false && "Missing object for anonymous record");
474 return 0;
475}
476
Douglas Gregord5846a12009-04-15 06:41:24 +0000477/// \brief Given a field that represents a member of an anonymous
478/// struct/union, build the path from that field's context to the
479/// actual member.
480///
481/// Construct the sequence of field member references we'll have to
482/// perform to get to the field in the anonymous union/struct. The
483/// list of members is built from the field outward, so traverse it
484/// backwards to go from an object in the current context to the field
485/// we found.
486///
487/// \returns The variable from which the field access should begin,
488/// for an anonymous struct/union that is not a member of another
489/// class. Otherwise, returns NULL.
490VarDecl *Sema::BuildAnonymousStructUnionMemberPath(FieldDecl *Field,
491 llvm::SmallVectorImpl<FieldDecl *> &Path) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000492 assert(Field->getDeclContext()->isRecord() &&
493 cast<RecordDecl>(Field->getDeclContext())->isAnonymousStructOrUnion()
494 && "Field must be stored inside an anonymous struct or union");
495
Douglas Gregord5846a12009-04-15 06:41:24 +0000496 Path.push_back(Field);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000497 VarDecl *BaseObject = 0;
498 DeclContext *Ctx = Field->getDeclContext();
499 do {
500 RecordDecl *Record = cast<RecordDecl>(Ctx);
Douglas Gregorbcced4e2009-04-09 21:40:53 +0000501 Decl *AnonObject = getObjectForAnonymousRecordDecl(Context, Record);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000502 if (FieldDecl *AnonField = dyn_cast<FieldDecl>(AnonObject))
Douglas Gregord5846a12009-04-15 06:41:24 +0000503 Path.push_back(AnonField);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000504 else {
505 BaseObject = cast<VarDecl>(AnonObject);
506 break;
507 }
508 Ctx = Ctx->getParent();
Mike Stump11289f42009-09-09 15:08:12 +0000509 } while (Ctx->isRecord() &&
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000510 cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion());
Douglas Gregord5846a12009-04-15 06:41:24 +0000511
512 return BaseObject;
513}
514
515Sema::OwningExprResult
516Sema::BuildAnonymousStructUnionMemberReference(SourceLocation Loc,
517 FieldDecl *Field,
518 Expr *BaseObjectExpr,
519 SourceLocation OpLoc) {
520 llvm::SmallVector<FieldDecl *, 4> AnonFields;
Mike Stump11289f42009-09-09 15:08:12 +0000521 VarDecl *BaseObject = BuildAnonymousStructUnionMemberPath(Field,
Douglas Gregord5846a12009-04-15 06:41:24 +0000522 AnonFields);
523
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000524 // Build the expression that refers to the base object, from
525 // which we will build a sequence of member references to each
526 // of the anonymous union objects and, eventually, the field we
527 // found via name lookup.
528 bool BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000529 Qualifiers BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000530 if (BaseObject) {
531 // BaseObject is an anonymous struct/union variable (and is,
532 // therefore, not part of another non-anonymous record).
Ted Kremenek5a201952009-02-07 01:47:29 +0000533 if (BaseObjectExpr) BaseObjectExpr->Destroy(Context);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000534 MarkDeclarationReferenced(Loc, BaseObject);
Steve Narofff6009ed2009-01-21 00:14:39 +0000535 BaseObjectExpr = new (Context) DeclRefExpr(BaseObject,BaseObject->getType(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000536 SourceLocation());
John McCall8ccfcb52009-09-24 19:53:00 +0000537 BaseQuals
538 = Context.getCanonicalType(BaseObject->getType()).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000539 } else if (BaseObjectExpr) {
540 // The caller provided the base object expression. Determine
541 // whether its a pointer and whether it adds any qualifiers to the
542 // anonymous struct/union fields we're looking into.
543 QualType ObjectType = BaseObjectExpr->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000544 if (const PointerType *ObjectPtr = ObjectType->getAs<PointerType>()) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000545 BaseObjectIsPointer = true;
546 ObjectType = ObjectPtr->getPointeeType();
547 }
John McCall8ccfcb52009-09-24 19:53:00 +0000548 BaseQuals
549 = Context.getCanonicalType(ObjectType).getQualifiers();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000550 } else {
551 // We've found a member of an anonymous struct/union that is
552 // inside a non-anonymous struct/union, so in a well-formed
553 // program our base object expression is "this".
554 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
555 if (!MD->isStatic()) {
Mike Stump11289f42009-09-09 15:08:12 +0000556 QualType AnonFieldType
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000557 = Context.getTagDeclType(
558 cast<RecordDecl>(AnonFields.back()->getDeclContext()));
559 QualType ThisType = Context.getTagDeclType(MD->getParent());
Mike Stump11289f42009-09-09 15:08:12 +0000560 if ((Context.getCanonicalType(AnonFieldType)
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000561 == Context.getCanonicalType(ThisType)) ||
562 IsDerivedFrom(ThisType, AnonFieldType)) {
563 // Our base object expression is "this".
Steve Narofff6009ed2009-01-21 00:14:39 +0000564 BaseObjectExpr = new (Context) CXXThisExpr(SourceLocation(),
Mike Stump4e1f26a2009-02-19 03:04:26 +0000565 MD->getThisType(Context));
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000566 BaseObjectIsPointer = true;
567 }
568 } else {
Sebastian Redlffbcf962009-01-18 18:53:16 +0000569 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
570 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000571 }
John McCall8ccfcb52009-09-24 19:53:00 +0000572 BaseQuals = Qualifiers::fromCVRMask(MD->getTypeQualifiers());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000573 }
574
Mike Stump11289f42009-09-09 15:08:12 +0000575 if (!BaseObjectExpr)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000576 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
577 << Field->getDeclName());
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000578 }
579
580 // Build the implicit member references to the field of the
581 // anonymous struct/union.
582 Expr *Result = BaseObjectExpr;
John McCall8ccfcb52009-09-24 19:53:00 +0000583 Qualifiers ResultQuals = BaseQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000584 for (llvm::SmallVector<FieldDecl *, 4>::reverse_iterator
585 FI = AnonFields.rbegin(), FIEnd = AnonFields.rend();
586 FI != FIEnd; ++FI) {
587 QualType MemberType = (*FI)->getType();
John McCall8ccfcb52009-09-24 19:53:00 +0000588 Qualifiers MemberTypeQuals =
589 Context.getCanonicalType(MemberType).getQualifiers();
590
591 // CVR attributes from the base are picked up by members,
592 // except that 'mutable' members don't pick up 'const'.
593 if ((*FI)->isMutable())
594 ResultQuals.removeConst();
595
596 // GC attributes are never picked up by members.
597 ResultQuals.removeObjCGCAttr();
598
599 // TR 18037 does not allow fields to be declared with address spaces.
600 assert(!MemberTypeQuals.hasAddressSpace());
601
602 Qualifiers NewQuals = ResultQuals + MemberTypeQuals;
603 if (NewQuals != MemberTypeQuals)
604 MemberType = Context.getQualifiedType(MemberType, NewQuals);
605
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000606 MarkDeclarationReferenced(Loc, *FI);
Douglas Gregorc1905232009-08-26 22:36:53 +0000607 // FIXME: Might this end up being a qualified name?
Steve Narofff6009ed2009-01-21 00:14:39 +0000608 Result = new (Context) MemberExpr(Result, BaseObjectIsPointer, *FI,
609 OpLoc, MemberType);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000610 BaseObjectIsPointer = false;
John McCall8ccfcb52009-09-24 19:53:00 +0000611 ResultQuals = NewQuals;
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000612 }
613
Sebastian Redlffbcf962009-01-18 18:53:16 +0000614 return Owned(Result);
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000615}
616
Douglas Gregora121b752009-11-03 16:56:39 +0000617Sema::OwningExprResult Sema::ActOnIdExpression(Scope *S,
618 const CXXScopeSpec &SS,
619 UnqualifiedId &Name,
620 bool HasTrailingLParen,
621 bool IsAddressOfOperand) {
622 if (Name.getKind() == UnqualifiedId::IK_TemplateId) {
623 ASTTemplateArgsPtr TemplateArgsPtr(*this,
624 Name.TemplateId->getTemplateArgs(),
625 Name.TemplateId->getTemplateArgIsType(),
626 Name.TemplateId->NumArgs);
627 return ActOnTemplateIdExpr(SS,
628 TemplateTy::make(Name.TemplateId->Template),
629 Name.TemplateId->TemplateNameLoc,
630 Name.TemplateId->LAngleLoc,
631 TemplateArgsPtr,
632 Name.TemplateId->getTemplateArgLocations(),
633 Name.TemplateId->RAngleLoc);
634 }
635
636 // FIXME: We lose a bunch of source information by doing this. Later,
637 // we'll want to merge ActOnDeclarationNameExpr's logic into
638 // ActOnIdExpression.
639 return ActOnDeclarationNameExpr(S,
640 Name.StartLocation,
641 GetNameFromUnqualifiedId(Name),
642 HasTrailingLParen,
643 &SS,
644 IsAddressOfOperand);
645}
646
Douglas Gregor4ea80432008-11-18 15:03:34 +0000647/// ActOnDeclarationNameExpr - The parser has read some kind of name
648/// (e.g., a C++ id-expression (C++ [expr.prim]p1)). This routine
649/// performs lookup on that name and returns an expression that refers
650/// to that name. This routine isn't directly called from the parser,
651/// because the parser doesn't know about DeclarationName. Rather,
Douglas Gregora121b752009-11-03 16:56:39 +0000652/// this routine is called by ActOnIdExpression, which contains a
653/// parsed UnqualifiedId.
Douglas Gregor4ea80432008-11-18 15:03:34 +0000654///
655/// HasTrailingLParen indicates whether this identifier is used in a
656/// function call context. LookupCtx is only used for a C++
657/// qualified-id (foo::bar) to indicate the class or namespace that
658/// the identifier must be a member of.
Douglas Gregorb0846b02008-12-06 00:22:45 +0000659///
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000660/// isAddressOfOperand means that this expression is the direct operand
661/// of an address-of operator. This matters because this is the only
662/// situation where a qualified name referencing a non-static member may
663/// appear outside a member function of this class.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000664Sema::OwningExprResult
665Sema::ActOnDeclarationNameExpr(Scope *S, SourceLocation Loc,
666 DeclarationName Name, bool HasTrailingLParen,
Mike Stump11289f42009-09-09 15:08:12 +0000667 const CXXScopeSpec *SS,
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000668 bool isAddressOfOperand) {
Chris Lattner59a25942008-03-31 00:36:02 +0000669 // Could be enum-constant, value decl, instance variable, etc.
Douglas Gregored8f2882009-01-30 01:04:22 +0000670 if (SS && SS->isInvalid())
671 return ExprError();
Douglas Gregor90a1a652009-03-19 17:26:29 +0000672
673 // C++ [temp.dep.expr]p3:
674 // An id-expression is type-dependent if it contains:
675 // -- a nested-name-specifier that contains a class-name that
676 // names a dependent type.
Douglas Gregor82dbbd72009-05-29 14:49:33 +0000677 // FIXME: Member of the current instantiation.
Douglas Gregor90a1a652009-03-19 17:26:29 +0000678 if (SS && isDependentScopeSpecifier(*SS)) {
Douglas Gregorf21eb492009-03-26 23:50:42 +0000679 return Owned(new (Context) UnresolvedDeclRefExpr(Name, Context.DependentTy,
Mike Stump11289f42009-09-09 15:08:12 +0000680 Loc, SS->getRange(),
Anders Carlsson03f89b12009-07-09 00:05:08 +0000681 static_cast<NestedNameSpecifier *>(SS->getScopeRep()),
682 isAddressOfOperand));
Douglas Gregor90a1a652009-03-19 17:26:29 +0000683 }
684
John McCall9f3059a2009-10-09 21:13:30 +0000685 LookupResult Lookup;
686 LookupParsedName(Lookup, S, SS, Name, LookupOrdinaryName, false, true, Loc);
Douglas Gregor960b5bc2009-01-15 00:26:24 +0000687
Sebastian Redlffbcf962009-01-18 18:53:16 +0000688 if (Lookup.isAmbiguous()) {
689 DiagnoseAmbiguousLookup(Lookup, Name, Loc,
690 SS && SS->isSet() ? SS->getRange()
691 : SourceRange());
692 return ExprError();
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000693 }
Mike Stump11289f42009-09-09 15:08:12 +0000694
John McCall9f3059a2009-10-09 21:13:30 +0000695 NamedDecl *D = Lookup.getAsSingleDecl(Context);
Douglas Gregorb0846b02008-12-06 00:22:45 +0000696
Chris Lattner59a25942008-03-31 00:36:02 +0000697 // If this reference is in an Objective-C method, then ivar lookup happens as
698 // well.
Douglas Gregor4ea80432008-11-18 15:03:34 +0000699 IdentifierInfo *II = Name.getAsIdentifierInfo();
700 if (II && getCurMethodDecl()) {
Chris Lattner59a25942008-03-31 00:36:02 +0000701 // There are two cases to handle here. 1) scoped lookup could have failed,
702 // in which case we should look for an ivar. 2) scoped lookup could have
Mike Stump11289f42009-09-09 15:08:12 +0000703 // found a decl, but that decl is outside the current instance method (i.e.
704 // a global variable). In these two cases, we do a lookup for an ivar with
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000705 // this name, if the lookup sucedes, we replace it our current decl.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000706 if (D == 0 || D->isDefinedOutsideFunctionOrMethod()) {
Argyrios Kyrtzidis853fbea2008-06-28 06:07:14 +0000707 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000708 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000709 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Chris Lattner50afe312009-02-16 17:19:12 +0000710 // Check if referencing a field with __attribute__((deprecated)).
Douglas Gregor171c45a2009-02-18 21:56:37 +0000711 if (DiagnoseUseOfDecl(IV, Loc))
712 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000713
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000714 // If we're referencing an invalid decl, just return this as a silent
715 // error node. The error diagnostic was already emitted on the decl.
716 if (IV->isInvalidDecl())
717 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +0000718
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000719 bool IsClsMethod = getCurMethodDecl()->isClassMethod();
720 // If a class method attemps to use a free standing ivar, this is
721 // an error.
722 if (IsClsMethod && D && !D->isDefinedOutsideFunctionOrMethod())
723 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
724 << IV->getDeclName());
725 // If a class method uses a global variable, even if an ivar with
726 // same name exists, use the global.
727 if (!IsClsMethod) {
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000728 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
729 ClassDeclared != IFace)
730 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
Mike Stump87c57ac2009-05-16 07:39:55 +0000731 // FIXME: This should use a new expr for a direct reference, don't
732 // turn this into Self->ivar, just return a BareIVarExpr or something.
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000733 IdentifierInfo &II = Context.Idents.get("self");
Douglas Gregora121b752009-11-03 16:56:39 +0000734 UnqualifiedId SelfName;
735 SelfName.setIdentifier(&II, SourceLocation());
736 CXXScopeSpec SelfScopeSpec;
737 OwningExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec,
738 SelfName, false, false);
Douglas Gregorc9c02ed2009-06-19 23:52:42 +0000739 MarkDeclarationReferenced(Loc, IV);
Mike Stump11289f42009-09-09 15:08:12 +0000740 return Owned(new (Context)
741 ObjCIvarRefExpr(IV, IV->getType(), Loc,
Anders Carlssonb781bcd2009-05-01 19:49:17 +0000742 SelfExpr.takeAs<Expr>(), true, true));
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000743 }
Chris Lattner59a25942008-03-31 00:36:02 +0000744 }
Mike Stump12b8ce12009-08-04 21:02:39 +0000745 } else if (getCurMethodDecl()->isInstanceMethod()) {
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000746 // We should warn if a local variable hides an ivar.
747 ObjCInterfaceDecl *IFace = getCurMethodDecl()->getClassInterface();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000748 ObjCInterfaceDecl *ClassDeclared;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +0000749 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000750 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
751 IFace == ClassDeclared)
Chris Lattnercd2a8c52009-04-24 22:30:50 +0000752 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +0000753 }
Fariborz Jahanianbf8e8422009-03-02 21:55:29 +0000754 }
Steve Naroff0d7c6db2008-08-10 19:10:41 +0000755 // Needed to implement property "super.method" notation.
Douglas Gregor6e6ad602009-01-20 01:17:11 +0000756 if (D == 0 && II->isStr("super")) {
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000757 QualType T;
Mike Stump11289f42009-09-09 15:08:12 +0000758
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000759 if (getCurMethodDecl()->isInstanceMethod())
Steve Naroff7cae42b2009-07-10 23:34:53 +0000760 T = Context.getObjCObjectPointerType(Context.getObjCInterfaceType(
761 getCurMethodDecl()->getClassInterface()));
Steve Naroffe29c4dd2009-03-05 20:12:00 +0000762 else
763 T = Context.getObjCClassType();
Steve Narofff6009ed2009-01-21 00:14:39 +0000764 return Owned(new (Context) ObjCSuperExpr(Loc, T));
Steve Naroffebf4cb42008-06-02 23:03:37 +0000765 }
Chris Lattner59a25942008-03-31 00:36:02 +0000766 }
Douglas Gregorf15f5d32009-02-16 19:28:42 +0000767
Douglas Gregor171c45a2009-02-18 21:56:37 +0000768 // Determine whether this name might be a candidate for
769 // argument-dependent lookup.
Mike Stump11289f42009-09-09 15:08:12 +0000770 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor171c45a2009-02-18 21:56:37 +0000771 HasTrailingLParen;
772
773 if (ADL && D == 0) {
Douglas Gregorf15f5d32009-02-16 19:28:42 +0000774 // We've seen something of the form
775 //
776 // identifier(
777 //
778 // and we did not find any entity by the name
779 // "identifier". However, this identifier is still subject to
780 // argument-dependent lookup, so keep track of the name.
781 return Owned(new (Context) UnresolvedFunctionNameExpr(Name,
782 Context.OverloadTy,
783 Loc));
784 }
785
Chris Lattner17ed4872006-11-20 04:58:19 +0000786 if (D == 0) {
Bill Wendling4073ed52007-02-13 01:51:42 +0000787 // Otherwise, this could be an implicitly declared function reference (legal
Chris Lattner9561a0b2007-01-28 08:20:04 +0000788 // in C90, extension in C99).
Douglas Gregor4ea80432008-11-18 15:03:34 +0000789 if (HasTrailingLParen && II &&
Chris Lattner59a25942008-03-31 00:36:02 +0000790 !getLangOptions().CPlusPlus) // Not in C++.
Douglas Gregor4ea80432008-11-18 15:03:34 +0000791 D = ImplicitlyDefineFunction(Loc, *II, S);
Steve Naroff92e30f82007-04-02 22:35:25 +0000792 else {
Chris Lattnerac18be92006-11-20 06:49:47 +0000793 // If this name wasn't predeclared and if this is not a function call,
794 // diagnose the problem.
Douglas Gregore40876a2009-10-13 21:16:44 +0000795 if (SS && !SS->isEmpty())
796 return ExprError(Diag(Loc, diag::err_no_member)
797 << Name << computeDeclContext(*SS, false)
798 << SS->getRange());
799 else if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
Douglas Gregor4ea80432008-11-18 15:03:34 +0000800 Name.getNameKind() == DeclarationName::CXXConversionFunctionName)
Sebastian Redlffbcf962009-01-18 18:53:16 +0000801 return ExprError(Diag(Loc, diag::err_undeclared_use)
802 << Name.getAsString());
Argyrios Kyrtzidis16ac9be2008-11-08 17:17:31 +0000803 else
Sebastian Redlffbcf962009-01-18 18:53:16 +0000804 return ExprError(Diag(Loc, diag::err_undeclared_var_use) << Name);
Steve Naroff92e30f82007-04-02 22:35:25 +0000805 }
Chris Lattner17ed4872006-11-20 04:58:19 +0000806 }
Mike Stump11289f42009-09-09 15:08:12 +0000807
Douglas Gregor3256d042009-06-30 15:47:41 +0000808 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
809 // Warn about constructs like:
810 // if (void *X = foo()) { ... } else { X }.
811 // In the else block, the pointer is always false.
Mike Stump11289f42009-09-09 15:08:12 +0000812
Douglas Gregor3256d042009-06-30 15:47:41 +0000813 // FIXME: In a template instantiation, we don't have scope
814 // information to check this property.
815 if (Var->isDeclaredInCondition() && Var->getType()->isScalarType()) {
816 Scope *CheckS = S;
Douglas Gregor13a2c032009-11-05 17:49:26 +0000817 while (CheckS && CheckS->getControlParent()) {
Mike Stump11289f42009-09-09 15:08:12 +0000818 if (CheckS->isWithinElse() &&
Douglas Gregor3256d042009-06-30 15:47:41 +0000819 CheckS->getControlParent()->isDeclScope(DeclPtrTy::make(Var))) {
Douglas Gregor13a2c032009-11-05 17:49:26 +0000820 ExprError(Diag(Loc, diag::warn_value_always_zero)
821 << Var->getDeclName()
822 << (Var->getType()->isPointerType()? 2 :
823 Var->getType()->isBooleanType()? 1 : 0));
Douglas Gregor3256d042009-06-30 15:47:41 +0000824 break;
825 }
Mike Stump11289f42009-09-09 15:08:12 +0000826
Douglas Gregor13a2c032009-11-05 17:49:26 +0000827 // Move to the parent of this scope.
828 CheckS = CheckS->getParent();
Douglas Gregor3256d042009-06-30 15:47:41 +0000829 }
830 }
831 } else if (FunctionDecl *Func = dyn_cast<FunctionDecl>(D)) {
832 if (!getLangOptions().CPlusPlus && !Func->hasPrototype()) {
833 // C99 DR 316 says that, if a function type comes from a
834 // function definition (without a prototype), that type is only
835 // used for checking compatibility. Therefore, when referencing
836 // the function, we pretend that we don't have the full function
837 // type.
838 if (DiagnoseUseOfDecl(Func, Loc))
839 return ExprError();
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000840
Douglas Gregor3256d042009-06-30 15:47:41 +0000841 QualType T = Func->getType();
842 QualType NoProtoType = T;
John McCall9dd450b2009-09-21 23:43:11 +0000843 if (const FunctionProtoType *Proto = T->getAs<FunctionProtoType>())
Douglas Gregor3256d042009-06-30 15:47:41 +0000844 NoProtoType = Context.getFunctionNoProtoType(Proto->getResultType());
845 return BuildDeclRefExpr(Func, NoProtoType, Loc, false, false, SS);
846 }
847 }
Mike Stump11289f42009-09-09 15:08:12 +0000848
Douglas Gregor3256d042009-06-30 15:47:41 +0000849 return BuildDeclarationNameExpr(Loc, D, HasTrailingLParen, SS, isAddressOfOperand);
850}
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000851/// \brief Cast member's object to its own class if necessary.
Fariborz Jahanian3f150832009-07-29 19:40:11 +0000852bool
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000853Sema::PerformObjectMemberConversion(Expr *&From, NamedDecl *Member) {
854 if (FieldDecl *FD = dyn_cast<FieldDecl>(Member))
Mike Stump11289f42009-09-09 15:08:12 +0000855 if (CXXRecordDecl *RD =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000856 dyn_cast<CXXRecordDecl>(FD->getDeclContext())) {
Mike Stump11289f42009-09-09 15:08:12 +0000857 QualType DestType =
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000858 Context.getCanonicalType(Context.getTypeDeclType(RD));
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000859 if (DestType->isDependentType() || From->getType()->isDependentType())
860 return false;
861 QualType FromRecordType = From->getType();
862 QualType DestRecordType = DestType;
Ted Kremenekc23c7e62009-07-29 21:53:49 +0000863 if (FromRecordType->getAs<PointerType>()) {
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000864 DestType = Context.getPointerType(DestType);
865 FromRecordType = FromRecordType->getPointeeType();
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000866 }
Fariborz Jahanian4b12ed12009-07-29 20:41:46 +0000867 if (!Context.hasSameUnqualifiedType(FromRecordType, DestRecordType) &&
868 CheckDerivedToBaseConversion(FromRecordType,
869 DestRecordType,
870 From->getSourceRange().getBegin(),
871 From->getSourceRange()))
872 return true;
Anders Carlssona076d142009-07-31 01:23:52 +0000873 ImpCastExprToType(From, DestType, CastExpr::CK_DerivedToBase,
874 /*isLvalue=*/true);
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000875 }
Fariborz Jahanian3f150832009-07-29 19:40:11 +0000876 return false;
Fariborz Jahanianbb67b822009-07-29 18:40:24 +0000877}
Douglas Gregor3256d042009-06-30 15:47:41 +0000878
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000879/// \brief Build a MemberExpr AST node.
Mike Stump11289f42009-09-09 15:08:12 +0000880static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
881 const CXXScopeSpec *SS, NamedDecl *Member,
Douglas Gregorc1905232009-08-26 22:36:53 +0000882 SourceLocation Loc, QualType Ty) {
883 if (SS && SS->isSet())
Mike Stump11289f42009-09-09 15:08:12 +0000884 return MemberExpr::Create(C, Base, isArrow,
Douglas Gregorf405d7e2009-08-31 23:41:50 +0000885 (NestedNameSpecifier *)SS->getScopeRep(),
Mike Stump11289f42009-09-09 15:08:12 +0000886 SS->getRange(), Member, Loc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +0000887 // FIXME: Explicit template argument lists
888 false, SourceLocation(), 0, 0, SourceLocation(),
889 Ty);
Mike Stump11289f42009-09-09 15:08:12 +0000890
Douglas Gregorc1905232009-08-26 22:36:53 +0000891 return new (C) MemberExpr(Base, isArrow, Member, Loc, Ty);
892}
893
Douglas Gregor3256d042009-06-30 15:47:41 +0000894/// \brief Complete semantic analysis for a reference to the given declaration.
895Sema::OwningExprResult
896Sema::BuildDeclarationNameExpr(SourceLocation Loc, NamedDecl *D,
897 bool HasTrailingLParen,
Mike Stump11289f42009-09-09 15:08:12 +0000898 const CXXScopeSpec *SS,
Douglas Gregor3256d042009-06-30 15:47:41 +0000899 bool isAddressOfOperand) {
900 assert(D && "Cannot refer to a NULL declaration");
901 DeclarationName Name = D->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +0000902
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000903 // If this is an expression of the form &Class::member, don't build an
904 // implicit member ref, because we want a pointer to the member in general,
905 // not any specific instance's member.
906 if (isAddressOfOperand && SS && !SS->isEmpty() && !HasTrailingLParen) {
Douglas Gregor52537682009-03-19 00:18:19 +0000907 DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor2ada0482009-02-04 17:27:36 +0000908 if (D && isa<CXXRecordDecl>(DC)) {
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000909 QualType DType;
910 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
911 DType = FD->getType().getNonReferenceType();
912 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
913 DType = Method->getType();
914 } else if (isa<OverloadedFunctionDecl>(D)) {
915 DType = Context.OverloadTy;
916 }
917 // Could be an inner type. That's diagnosed below, so ignore it here.
918 if (!DType.isNull()) {
919 // The pointer is type- and value-dependent if it points into something
920 // dependent.
Douglas Gregor82dbbd72009-05-29 14:49:33 +0000921 bool Dependent = DC->isDependentContext();
Anders Carlsson946b86d2009-06-24 00:10:43 +0000922 return BuildDeclRefExpr(D, DType, Loc, Dependent, Dependent, SS);
Sebastian Redl3d3f75a2009-02-03 20:19:35 +0000923 }
924 }
925 }
926
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000927 // We may have found a field within an anonymous union or struct
928 // (C++ [class.union]).
Douglas Gregor6493d9c2009-10-22 07:08:30 +0000929 // FIXME: This needs to happen post-isImplicitMemberReference?
Douglas Gregor9ac7a072009-01-07 00:43:41 +0000930 if (FieldDecl *FD = dyn_cast<FieldDecl>(D))
931 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
932 return BuildAnonymousStructUnionMemberReference(Loc, FD);
Sebastian Redlffbcf962009-01-18 18:53:16 +0000933
Douglas Gregor6493d9c2009-10-22 07:08:30 +0000934 // Cope with an implicit member access in a C++ non-static member function.
935 QualType ThisType, MemberType;
936 if (isImplicitMemberReference(SS, D, Loc, ThisType, MemberType)) {
937 Expr *This = new (Context) CXXThisExpr(SourceLocation(), ThisType);
938 MarkDeclarationReferenced(Loc, D);
939 if (PerformObjectMemberConversion(This, D))
940 return ExprError();
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000941
Douglas Gregor6493d9c2009-10-22 07:08:30 +0000942 bool ShouldCheckUse = true;
943 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
944 // Don't diagnose the use of a virtual member function unless it's
945 // explicitly qualified.
946 if (MD->isVirtual() && (!SS || !SS->isSet()))
947 ShouldCheckUse = false;
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000948 }
Douglas Gregor6493d9c2009-10-22 07:08:30 +0000949
950 if (ShouldCheckUse && DiagnoseUseOfDecl(D, Loc))
951 return ExprError();
952 return Owned(BuildMemberExpr(Context, This, true, SS, D,
953 Loc, MemberType));
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000954 }
955
Douglas Gregor91f84212008-12-11 16:49:14 +0000956 if (FieldDecl *FD = dyn_cast<FieldDecl>(D)) {
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000957 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(CurContext)) {
958 if (MD->isStatic())
959 // "invalid use of member 'x' in static member function"
Sebastian Redlffbcf962009-01-18 18:53:16 +0000960 return ExprError(Diag(Loc,diag::err_invalid_member_use_in_static_method)
961 << FD->getDeclName());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000962 }
963
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000964 // Any other ways we could have found the field in a well-formed
965 // program would have been turned into implicit member expressions
966 // above.
Sebastian Redlffbcf962009-01-18 18:53:16 +0000967 return ExprError(Diag(Loc, diag::err_invalid_non_static_member_use)
968 << FD->getDeclName());
Argyrios Kyrtzidised983422008-07-01 10:37:29 +0000969 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +0000970
Steve Naroff46ba1eb2007-04-03 23:13:13 +0000971 if (isa<TypedefDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +0000972 return ExprError(Diag(Loc, diag::err_unexpected_typedef) << Name);
Ted Kremenek1b0ea822008-01-07 19:49:32 +0000973 if (isa<ObjCInterfaceDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +0000974 return ExprError(Diag(Loc, diag::err_unexpected_interface) << Name);
Argyrios Kyrtzidis08114892008-04-27 13:50:30 +0000975 if (isa<NamespaceDecl>(D))
Sebastian Redlffbcf962009-01-18 18:53:16 +0000976 return ExprError(Diag(Loc, diag::err_unexpected_namespace) << Name);
Steve Narofff1e53692007-03-23 22:27:02 +0000977
Steve Naroff8de9c3a2008-09-05 22:11:13 +0000978 // Make the DeclRefExpr or BlockDeclRefExpr for the decl.
Douglas Gregor5251f1b2008-10-21 16:13:35 +0000979 if (OverloadedFunctionDecl *Ovl = dyn_cast<OverloadedFunctionDecl>(D))
Anders Carlsson946b86d2009-06-24 00:10:43 +0000980 return BuildDeclRefExpr(Ovl, Context.OverloadTy, Loc,
981 false, false, SS);
Douglas Gregord32e0282009-02-09 23:23:08 +0000982 else if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D))
Anders Carlsson946b86d2009-06-24 00:10:43 +0000983 return BuildDeclRefExpr(Template, Context.OverloadTy, Loc,
984 false, false, SS);
Anders Carlsson938b1002009-08-29 01:06:32 +0000985 else if (UnresolvedUsingDecl *UD = dyn_cast<UnresolvedUsingDecl>(D))
Mike Stump11289f42009-09-09 15:08:12 +0000986 return BuildDeclRefExpr(UD, Context.DependentTy, Loc,
987 /*TypeDependent=*/true,
Anders Carlsson938b1002009-08-29 01:06:32 +0000988 /*ValueDependent=*/true, SS);
989
Steve Naroff8de9c3a2008-09-05 22:11:13 +0000990 ValueDecl *VD = cast<ValueDecl>(D);
Sebastian Redlffbcf962009-01-18 18:53:16 +0000991
Douglas Gregor171c45a2009-02-18 21:56:37 +0000992 // Check whether this declaration can be used. Note that we suppress
993 // this check when we're going to perform argument-dependent lookup
994 // on this function name, because this might not be the function
995 // that overload resolution actually selects.
Mike Stump11289f42009-09-09 15:08:12 +0000996 bool ADL = getLangOptions().CPlusPlus && (!SS || !SS->isSet()) &&
Douglas Gregor3256d042009-06-30 15:47:41 +0000997 HasTrailingLParen;
Douglas Gregor171c45a2009-02-18 21:56:37 +0000998 if (!(ADL && isa<FunctionDecl>(VD)) && DiagnoseUseOfDecl(VD, Loc))
999 return ExprError();
1000
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001001 // Only create DeclRefExpr's for valid Decl's.
1002 if (VD->isInvalidDecl())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001003 return ExprError();
1004
Chris Lattner2a9d9892008-10-20 05:16:36 +00001005 // If the identifier reference is inside a block, and it refers to a value
1006 // that is outside the block, create a BlockDeclRefExpr instead of a
1007 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
1008 // the block is formed.
Steve Naroff8de9c3a2008-09-05 22:11:13 +00001009 //
Chris Lattner2a9d9892008-10-20 05:16:36 +00001010 // We do not do this for things like enum constants, global variables, etc,
1011 // as they do not get snapshotted.
1012 //
1013 if (CurBlock && ShouldSnapshotBlockValueReference(CurBlock, VD)) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001014 MarkDeclarationReferenced(Loc, VD);
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001015 QualType ExprTy = VD->getType().getNonReferenceType();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001016 // The BlocksAttr indicates the variable is bound by-reference.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00001017 if (VD->getAttr<BlocksAttr>())
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001018 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, true));
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001019 // This is to record that a 'const' was actually synthesize and added.
1020 bool constAdded = !ExprTy.isConstQualified();
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001021 // Variable will be bound by-copy, make it const within the closure.
Mike Stump11289f42009-09-09 15:08:12 +00001022
Eli Friedman7fa3faa2009-03-22 23:00:19 +00001023 ExprTy.addConst();
Mike Stump11289f42009-09-09 15:08:12 +00001024 return Owned(new (Context) BlockDeclRefExpr(VD, ExprTy, Loc, false,
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00001025 constAdded));
Steve Naroff1d95e5a2008-10-10 01:28:17 +00001026 }
1027 // If this reference is not in a block or if the referenced variable is
1028 // within the block, create a normal DeclRefExpr.
Douglas Gregor4619e432008-12-05 23:32:09 +00001029
Douglas Gregor4619e432008-12-05 23:32:09 +00001030 bool TypeDependent = false;
Douglas Gregor872ffce2008-12-10 20:57:37 +00001031 bool ValueDependent = false;
1032 if (getLangOptions().CPlusPlus) {
1033 // C++ [temp.dep.expr]p3:
Mike Stump11289f42009-09-09 15:08:12 +00001034 // An id-expression is type-dependent if it contains:
Douglas Gregor872ffce2008-12-10 20:57:37 +00001035 // - an identifier that was declared with a dependent type,
1036 if (VD->getType()->isDependentType())
1037 TypeDependent = true;
1038 // - FIXME: a template-id that is dependent,
1039 // - a conversion-function-id that specifies a dependent type,
1040 else if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1041 Name.getCXXNameType()->isDependentType())
1042 TypeDependent = true;
1043 // - a nested-name-specifier that contains a class-name that
1044 // names a dependent type.
1045 else if (SS && !SS->isEmpty()) {
Douglas Gregor52537682009-03-19 00:18:19 +00001046 for (DeclContext *DC = computeDeclContext(*SS);
Douglas Gregor872ffce2008-12-10 20:57:37 +00001047 DC; DC = DC->getParent()) {
1048 // FIXME: could stop early at namespace scope.
Douglas Gregor9ac7a072009-01-07 00:43:41 +00001049 if (DC->isRecord()) {
Douglas Gregor872ffce2008-12-10 20:57:37 +00001050 CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
1051 if (Context.getTypeDeclType(Record)->isDependentType()) {
1052 TypeDependent = true;
1053 break;
1054 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001055 }
1056 }
1057 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001058
Douglas Gregor872ffce2008-12-10 20:57:37 +00001059 // C++ [temp.dep.constexpr]p2:
1060 //
1061 // An identifier is value-dependent if it is:
1062 // - a name declared with a dependent type,
1063 if (TypeDependent)
1064 ValueDependent = true;
1065 // - the name of a non-type template parameter,
1066 else if (isa<NonTypeTemplateParmDecl>(VD))
1067 ValueDependent = true;
1068 // - a constant with integral or enumeration type and is
1069 // initialized with an expression that is value-dependent
Eli Friedmandd49ee32009-06-11 01:11:20 +00001070 else if (const VarDecl *Dcl = dyn_cast<VarDecl>(VD)) {
Mike Stump96638af2009-11-03 22:20:01 +00001071 if (Context.getCanonicalType(Dcl->getType()).getCVRQualifiers()
1072 == Qualifiers::Const &&
Eli Friedmandd49ee32009-06-11 01:11:20 +00001073 Dcl->getInit()) {
1074 ValueDependent = Dcl->getInit()->isValueDependent();
1075 }
1076 }
Douglas Gregor872ffce2008-12-10 20:57:37 +00001077 }
Douglas Gregor4619e432008-12-05 23:32:09 +00001078
Anders Carlsson946b86d2009-06-24 00:10:43 +00001079 return BuildDeclRefExpr(VD, VD->getType().getNonReferenceType(), Loc,
1080 TypeDependent, ValueDependent, SS);
Chris Lattner17ed4872006-11-20 04:58:19 +00001081}
Chris Lattnere168f762006-11-10 05:29:30 +00001082
Sebastian Redlffbcf962009-01-18 18:53:16 +00001083Sema::OwningExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc,
1084 tok::TokenKind Kind) {
Chris Lattner6307f192008-08-10 01:53:14 +00001085 PredefinedExpr::IdentType IT;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001086
Chris Lattnere168f762006-11-10 05:29:30 +00001087 switch (Kind) {
Chris Lattner317e6ba2008-01-12 18:39:25 +00001088 default: assert(0 && "Unknown simple primary expr!");
Chris Lattner6307f192008-08-10 01:53:14 +00001089 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
1090 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
1091 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Chris Lattnere168f762006-11-10 05:29:30 +00001092 }
Chris Lattner317e6ba2008-01-12 18:39:25 +00001093
Chris Lattnera81a0272008-01-12 08:14:25 +00001094 // Pre-defined identifiers are of type char[x], where x is the length of the
1095 // string.
Mike Stump11289f42009-09-09 15:08:12 +00001096
Anders Carlsson2fb08242009-09-08 18:24:21 +00001097 Decl *currentDecl = getCurFunctionOrMethodDecl();
1098 if (!currentDecl) {
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001099 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson2fb08242009-09-08 18:24:21 +00001100 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00001101 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001102
Anders Carlsson0b209a82009-09-11 01:22:35 +00001103 QualType ResTy;
1104 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
1105 ResTy = Context.DependentTy;
1106 } else {
1107 unsigned Length =
1108 PredefinedExpr::ComputeName(Context, IT, currentDecl).length();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001109
Anders Carlsson0b209a82009-09-11 01:22:35 +00001110 llvm::APInt LengthI(32, Length + 1);
John McCall8ccfcb52009-09-24 19:53:00 +00001111 ResTy = Context.CharTy.withConst();
Anders Carlsson0b209a82009-09-11 01:22:35 +00001112 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
1113 }
Steve Narofff6009ed2009-01-21 00:14:39 +00001114 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Chris Lattnere168f762006-11-10 05:29:30 +00001115}
1116
Sebastian Redlffbcf962009-01-18 18:53:16 +00001117Sema::OwningExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Chris Lattner23b7eb62007-06-15 23:05:46 +00001118 llvm::SmallString<16> CharBuffer;
Steve Naroffae4143e2007-04-26 20:39:23 +00001119 CharBuffer.resize(Tok.getLength());
1120 const char *ThisTokBegin = &CharBuffer[0];
1121 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001122
Steve Naroffae4143e2007-04-26 20:39:23 +00001123 CharLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
1124 Tok.getLocation(), PP);
1125 if (Literal.hadError())
Sebastian Redlffbcf962009-01-18 18:53:16 +00001126 return ExprError();
Chris Lattneref24b382008-03-01 08:32:21 +00001127
1128 QualType type = getLangOptions().CPlusPlus ? Context.CharTy : Context.IntTy;
1129
Sebastian Redl20614a72009-01-20 22:23:13 +00001130 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
1131 Literal.isWide(),
1132 type, Tok.getLocation()));
Steve Naroffae4143e2007-04-26 20:39:23 +00001133}
1134
Sebastian Redlffbcf962009-01-18 18:53:16 +00001135Action::OwningExprResult Sema::ActOnNumericConstant(const Token &Tok) {
1136 // Fast path for a single digit (which is quite common). A single digit
Steve Narofff2fb89e2007-03-13 20:29:44 +00001137 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
1138 if (Tok.getLength() == 1) {
Chris Lattner9240b3e2009-01-26 22:36:52 +00001139 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattnerc4c18192009-01-16 07:10:29 +00001140 unsigned IntSize = Context.Target.getIntWidth();
Steve Narofff6009ed2009-01-21 00:14:39 +00001141 return Owned(new (Context) IntegerLiteral(llvm::APInt(IntSize, Val-'0'),
Steve Naroff5faaef72009-01-20 19:53:53 +00001142 Context.IntTy, Tok.getLocation()));
Steve Narofff2fb89e2007-03-13 20:29:44 +00001143 }
Ted Kremeneke9814182009-01-13 23:19:12 +00001144
Chris Lattner23b7eb62007-06-15 23:05:46 +00001145 llvm::SmallString<512> IntegerBuffer;
Chris Lattnera1cf5f92008-09-30 20:53:45 +00001146 // Add padding so that NumericLiteralParser can overread by one character.
1147 IntegerBuffer.resize(Tok.getLength()+1);
Steve Naroff8160ea22007-03-06 01:09:46 +00001148 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlffbcf962009-01-18 18:53:16 +00001149
Chris Lattner67ca9252007-05-21 01:08:44 +00001150 // Get the spelling of the token, which eliminates trigraphs, etc.
Steve Naroff8160ea22007-03-06 01:09:46 +00001151 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001152
Mike Stump11289f42009-09-09 15:08:12 +00001153 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Steve Naroff451d8f162007-03-12 23:22:38 +00001154 Tok.getLocation(), PP);
Steve Narofff2fb89e2007-03-13 20:29:44 +00001155 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +00001156 return ExprError();
1157
Chris Lattner1c20a172007-08-26 03:42:43 +00001158 Expr *Res;
Sebastian Redlffbcf962009-01-18 18:53:16 +00001159
Chris Lattner1c20a172007-08-26 03:42:43 +00001160 if (Literal.isFloatingLiteral()) {
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001161 QualType Ty;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001162 if (Literal.isFloat)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001163 Ty = Context.FloatTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001164 else if (!Literal.isLong)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00001165 Ty = Context.DoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001166 else
Chris Lattner7570e9c2008-03-08 08:52:55 +00001167 Ty = Context.LongDoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00001168
1169 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
1170
Ted Kremenek3a2c9502007-11-29 00:56:49 +00001171 // isExact will be set by GetFloatValue().
1172 bool isExact = false;
Chris Lattnere4edb8e2009-06-29 17:34:55 +00001173 llvm::APFloat Val = Literal.GetFloatValue(Format, &isExact);
1174 Res = new (Context) FloatingLiteral(Val, isExact, Ty, Tok.getLocation());
Sebastian Redlffbcf962009-01-18 18:53:16 +00001175
Chris Lattner1c20a172007-08-26 03:42:43 +00001176 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlffbcf962009-01-18 18:53:16 +00001177 return ExprError();
Chris Lattner1c20a172007-08-26 03:42:43 +00001178 } else {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001179 QualType Ty;
Chris Lattner67ca9252007-05-21 01:08:44 +00001180
Neil Boothac582c52007-08-29 22:00:19 +00001181 // long long is a C99 feature.
1182 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth4a1ee052007-08-29 22:13:52 +00001183 Literal.isLongLong)
Neil Boothac582c52007-08-29 22:00:19 +00001184 Diag(Tok.getLocation(), diag::ext_longlong);
1185
Chris Lattner67ca9252007-05-21 01:08:44 +00001186 // Get the value in the widest-possible width.
Chris Lattner37e05872008-03-05 18:54:05 +00001187 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlffbcf962009-01-18 18:53:16 +00001188
Chris Lattner67ca9252007-05-21 01:08:44 +00001189 if (Literal.GetIntegerValue(ResultVal)) {
1190 // If this value didn't fit into uintmax_t, warn and force to ull.
1191 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001192 Ty = Context.UnsignedLongLongTy;
1193 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner37e05872008-03-05 18:54:05 +00001194 "long long is not intmax_t?");
Steve Naroff09ef4742007-03-09 23:16:33 +00001195 } else {
Chris Lattner67ca9252007-05-21 01:08:44 +00001196 // If this value fits into a ULL, try to figure out what else it fits into
1197 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlffbcf962009-01-18 18:53:16 +00001198
Chris Lattner67ca9252007-05-21 01:08:44 +00001199 // Octal, Hexadecimal, and integers with a U suffix are allowed to
1200 // be an unsigned int.
1201 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
1202
1203 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner55258cf2008-05-09 05:59:00 +00001204 unsigned Width = 0;
Chris Lattner7b939cf2007-08-23 21:58:08 +00001205 if (!Literal.isLong && !Literal.isLongLong) {
1206 // Are int/unsigned possibilities?
Chris Lattner55258cf2008-05-09 05:59:00 +00001207 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001208
Chris Lattner67ca9252007-05-21 01:08:44 +00001209 // Does it fit in a unsigned int?
1210 if (ResultVal.isIntN(IntSize)) {
1211 // Does it fit in a signed int?
1212 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001213 Ty = Context.IntTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001214 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001215 Ty = Context.UnsignedIntTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001216 Width = IntSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001217 }
Chris Lattner67ca9252007-05-21 01:08:44 +00001218 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001219
Chris Lattner67ca9252007-05-21 01:08:44 +00001220 // Are long/unsigned long possibilities?
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001221 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001222 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001223
Chris Lattner67ca9252007-05-21 01:08:44 +00001224 // Does it fit in a unsigned long?
1225 if (ResultVal.isIntN(LongSize)) {
1226 // Does it fit in a signed long?
1227 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001228 Ty = Context.LongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001229 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001230 Ty = Context.UnsignedLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001231 Width = LongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001232 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001233 }
1234
Chris Lattner67ca9252007-05-21 01:08:44 +00001235 // Finally, check long long if needed.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001236 if (Ty.isNull()) {
Chris Lattner55258cf2008-05-09 05:59:00 +00001237 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001238
Chris Lattner67ca9252007-05-21 01:08:44 +00001239 // Does it fit in a unsigned long long?
1240 if (ResultVal.isIntN(LongLongSize)) {
1241 // Does it fit in a signed long long?
1242 if (!Literal.isUnsigned && ResultVal[LongLongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001243 Ty = Context.LongLongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00001244 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001245 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001246 Width = LongLongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00001247 }
1248 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001249
Chris Lattner67ca9252007-05-21 01:08:44 +00001250 // If we still couldn't decide a type, we probably have something that
1251 // does not fit in a signed long long, but has no U suffix.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001252 if (Ty.isNull()) {
Chris Lattner67ca9252007-05-21 01:08:44 +00001253 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001254 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00001255 Width = Context.Target.getLongLongWidth();
Chris Lattner67ca9252007-05-21 01:08:44 +00001256 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001257
Chris Lattner55258cf2008-05-09 05:59:00 +00001258 if (ResultVal.getBitWidth() != Width)
1259 ResultVal.trunc(Width);
Steve Naroff09ef4742007-03-09 23:16:33 +00001260 }
Sebastian Redl20614a72009-01-20 22:23:13 +00001261 Res = new (Context) IntegerLiteral(ResultVal, Ty, Tok.getLocation());
Steve Naroff09ef4742007-03-09 23:16:33 +00001262 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00001263
Chris Lattner1c20a172007-08-26 03:42:43 +00001264 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
1265 if (Literal.isImaginary)
Mike Stump11289f42009-09-09 15:08:12 +00001266 Res = new (Context) ImaginaryLiteral(Res,
Steve Narofff6009ed2009-01-21 00:14:39 +00001267 Context.getComplexType(Res->getType()));
Sebastian Redlffbcf962009-01-18 18:53:16 +00001268
1269 return Owned(Res);
Chris Lattnere168f762006-11-10 05:29:30 +00001270}
1271
Sebastian Redlffbcf962009-01-18 18:53:16 +00001272Action::OwningExprResult Sema::ActOnParenExpr(SourceLocation L,
1273 SourceLocation R, ExprArg Val) {
Anders Carlssonb781bcd2009-05-01 19:49:17 +00001274 Expr *E = Val.takeAs<Expr>();
Chris Lattner24d5bfe2008-04-02 04:24:33 +00001275 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Narofff6009ed2009-01-21 00:14:39 +00001276 return Owned(new (Context) ParenExpr(L, R, E));
Chris Lattnere168f762006-11-10 05:29:30 +00001277}
1278
Steve Naroff71b59a92007-06-04 22:22:31 +00001279/// The UsualUnaryConversions() function is *not* called by this routine.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00001280/// See C99 6.3.2.1p[2-4] for more details.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001281bool Sema::CheckSizeOfAlignOfOperand(QualType exprType,
Sebastian Redl6f282892008-11-11 17:56:53 +00001282 SourceLocation OpLoc,
1283 const SourceRange &ExprRange,
1284 bool isSizeof) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001285 if (exprType->isDependentType())
1286 return false;
1287
Steve Naroff043d45d2007-05-15 02:32:35 +00001288 // C99 6.5.3.4p1:
John McCall4c98fd82009-11-04 07:28:41 +00001289 if (exprType->isFunctionType()) {
Chris Lattner62975a72009-04-24 00:30:45 +00001290 // alignof(function) is allowed as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001291 if (isSizeof)
1292 Diag(OpLoc, diag::ext_sizeof_function_type) << ExprRange;
1293 return false;
1294 }
Mike Stump11289f42009-09-09 15:08:12 +00001295
Chris Lattner62975a72009-04-24 00:30:45 +00001296 // Allow sizeof(void)/alignof(void) as an extension.
Chris Lattnerb1355b12009-01-24 19:46:37 +00001297 if (exprType->isVoidType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00001298 Diag(OpLoc, diag::ext_sizeof_void_type)
1299 << (isSizeof ? "sizeof" : "__alignof") << ExprRange;
Chris Lattnerb1355b12009-01-24 19:46:37 +00001300 return false;
1301 }
Mike Stump11289f42009-09-09 15:08:12 +00001302
Chris Lattner62975a72009-04-24 00:30:45 +00001303 if (RequireCompleteType(OpLoc, exprType,
Mike Stump11289f42009-09-09 15:08:12 +00001304 isSizeof ? diag::err_sizeof_incomplete_type :
Anders Carlssond624e162009-08-26 23:45:07 +00001305 PDiag(diag::err_alignof_incomplete_type)
1306 << ExprRange))
Chris Lattner62975a72009-04-24 00:30:45 +00001307 return true;
Mike Stump11289f42009-09-09 15:08:12 +00001308
Chris Lattner62975a72009-04-24 00:30:45 +00001309 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
Fariborz Jahanian1dcb3222009-04-24 17:34:33 +00001310 if (LangOpts.ObjCNonFragileABI && exprType->isObjCInterfaceType()) {
Chris Lattner62975a72009-04-24 00:30:45 +00001311 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Chris Lattnercd2a8c52009-04-24 22:30:50 +00001312 << exprType << isSizeof << ExprRange;
1313 return true;
Chris Lattner37920f52009-04-21 19:55:16 +00001314 }
Mike Stump11289f42009-09-09 15:08:12 +00001315
Chris Lattner62975a72009-04-24 00:30:45 +00001316 return false;
Steve Naroff043d45d2007-05-15 02:32:35 +00001317}
1318
Chris Lattner8dff0172009-01-24 20:17:12 +00001319bool Sema::CheckAlignOfExpr(Expr *E, SourceLocation OpLoc,
1320 const SourceRange &ExprRange) {
1321 E = E->IgnoreParens();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001322
Mike Stump11289f42009-09-09 15:08:12 +00001323 // alignof decl is always ok.
Chris Lattner8dff0172009-01-24 20:17:12 +00001324 if (isa<DeclRefExpr>(E))
1325 return false;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001326
1327 // Cannot know anything else if the expression is dependent.
1328 if (E->isTypeDependent())
1329 return false;
1330
Douglas Gregor71235ec2009-05-02 02:18:30 +00001331 if (E->getBitField()) {
1332 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
1333 return true;
Chris Lattner8dff0172009-01-24 20:17:12 +00001334 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00001335
1336 // Alignment of a field access is always okay, so long as it isn't a
1337 // bit-field.
1338 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump212005c2009-07-22 18:58:19 +00001339 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor71235ec2009-05-02 02:18:30 +00001340 return false;
1341
Chris Lattner8dff0172009-01-24 20:17:12 +00001342 return CheckSizeOfAlignOfOperand(E->getType(), OpLoc, ExprRange, false);
1343}
1344
Douglas Gregor0950e412009-03-13 21:01:28 +00001345/// \brief Build a sizeof or alignof expression given a type operand.
Mike Stump11289f42009-09-09 15:08:12 +00001346Action::OwningExprResult
John McCall4c98fd82009-11-04 07:28:41 +00001347Sema::CreateSizeOfAlignOfExpr(DeclaratorInfo *DInfo,
1348 SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001349 bool isSizeOf, SourceRange R) {
John McCall4c98fd82009-11-04 07:28:41 +00001350 if (!DInfo)
Douglas Gregor0950e412009-03-13 21:01:28 +00001351 return ExprError();
1352
John McCall4c98fd82009-11-04 07:28:41 +00001353 QualType T = DInfo->getType();
1354
Douglas Gregor0950e412009-03-13 21:01:28 +00001355 if (!T->isDependentType() &&
1356 CheckSizeOfAlignOfOperand(T, OpLoc, R, isSizeOf))
1357 return ExprError();
1358
1359 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
John McCall4c98fd82009-11-04 07:28:41 +00001360 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, DInfo,
Douglas Gregor0950e412009-03-13 21:01:28 +00001361 Context.getSizeType(), OpLoc,
1362 R.getEnd()));
1363}
1364
1365/// \brief Build a sizeof or alignof expression given an expression
1366/// operand.
Mike Stump11289f42009-09-09 15:08:12 +00001367Action::OwningExprResult
1368Sema::CreateSizeOfAlignOfExpr(Expr *E, SourceLocation OpLoc,
Douglas Gregor0950e412009-03-13 21:01:28 +00001369 bool isSizeOf, SourceRange R) {
1370 // Verify that the operand is valid.
1371 bool isInvalid = false;
1372 if (E->isTypeDependent()) {
1373 // Delay type-checking for type-dependent expressions.
1374 } else if (!isSizeOf) {
1375 isInvalid = CheckAlignOfExpr(E, OpLoc, R);
Douglas Gregor71235ec2009-05-02 02:18:30 +00001376 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregor0950e412009-03-13 21:01:28 +00001377 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
1378 isInvalid = true;
1379 } else {
1380 isInvalid = CheckSizeOfAlignOfOperand(E->getType(), OpLoc, R, true);
1381 }
1382
1383 if (isInvalid)
1384 return ExprError();
1385
1386 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
1387 return Owned(new (Context) SizeOfAlignOfExpr(isSizeOf, E,
1388 Context.getSizeType(), OpLoc,
1389 R.getEnd()));
1390}
1391
Sebastian Redl6f282892008-11-11 17:56:53 +00001392/// ActOnSizeOfAlignOfExpr - Handle @c sizeof(type) and @c sizeof @c expr and
1393/// the same for @c alignof and @c __alignof
1394/// Note that the ArgRange is invalid if isType is false.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001395Action::OwningExprResult
Sebastian Redl6f282892008-11-11 17:56:53 +00001396Sema::ActOnSizeOfAlignOfExpr(SourceLocation OpLoc, bool isSizeof, bool isType,
1397 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner0d8b1a12006-11-20 04:34:45 +00001398 // If error parsing type, ignore.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001399 if (TyOrEx == 0) return ExprError();
Steve Naroff043d45d2007-05-15 02:32:35 +00001400
Sebastian Redl6f282892008-11-11 17:56:53 +00001401 if (isType) {
John McCall4c98fd82009-11-04 07:28:41 +00001402 DeclaratorInfo *DInfo;
1403 (void) GetTypeFromParser(TyOrEx, &DInfo);
1404 return CreateSizeOfAlignOfExpr(DInfo, OpLoc, isSizeof, ArgRange);
Mike Stump11289f42009-09-09 15:08:12 +00001405 }
Sebastian Redl6f282892008-11-11 17:56:53 +00001406
Douglas Gregor0950e412009-03-13 21:01:28 +00001407 Expr *ArgEx = (Expr *)TyOrEx;
1408 Action::OwningExprResult Result
1409 = CreateSizeOfAlignOfExpr(ArgEx, OpLoc, isSizeof, ArgEx->getSourceRange());
1410
1411 if (Result.isInvalid())
1412 DeleteExpr(ArgEx);
1413
1414 return move(Result);
Chris Lattnere168f762006-11-10 05:29:30 +00001415}
1416
Chris Lattner709322b2009-02-17 08:12:06 +00001417QualType Sema::CheckRealImagOperand(Expr *&V, SourceLocation Loc, bool isReal) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001418 if (V->isTypeDependent())
1419 return Context.DependentTy;
Mike Stump11289f42009-09-09 15:08:12 +00001420
Chris Lattnere267f5d2007-08-26 05:39:26 +00001421 // These operators return the element type of a complex type.
John McCall9dd450b2009-09-21 23:43:11 +00001422 if (const ComplexType *CT = V->getType()->getAs<ComplexType>())
Chris Lattner30b5dd02007-08-24 21:16:53 +00001423 return CT->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00001424
Chris Lattnere267f5d2007-08-26 05:39:26 +00001425 // Otherwise they pass through real integer and floating point types here.
1426 if (V->getType()->isArithmeticType())
1427 return V->getType();
Mike Stump11289f42009-09-09 15:08:12 +00001428
Chris Lattnere267f5d2007-08-26 05:39:26 +00001429 // Reject anything else.
Chris Lattner709322b2009-02-17 08:12:06 +00001430 Diag(Loc, diag::err_realimag_invalid_type) << V->getType()
1431 << (isReal ? "__real" : "__imag");
Chris Lattnere267f5d2007-08-26 05:39:26 +00001432 return QualType();
Chris Lattner30b5dd02007-08-24 21:16:53 +00001433}
1434
1435
Chris Lattnere168f762006-11-10 05:29:30 +00001436
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001437Action::OwningExprResult
1438Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
1439 tok::TokenKind Kind, ExprArg Input) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00001440 // Since this might be a postfix expression, get rid of ParenListExprs.
1441 Input = MaybeConvertParenListExprToParenExpr(S, move(Input));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001442 Expr *Arg = (Expr *)Input.get();
Douglas Gregord08452f2008-11-19 15:42:04 +00001443
Chris Lattnere168f762006-11-10 05:29:30 +00001444 UnaryOperator::Opcode Opc;
1445 switch (Kind) {
1446 default: assert(0 && "Unknown unary op!");
1447 case tok::plusplus: Opc = UnaryOperator::PostInc; break;
1448 case tok::minusminus: Opc = UnaryOperator::PostDec; break;
1449 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001450
Douglas Gregord08452f2008-11-19 15:42:04 +00001451 if (getLangOptions().CPlusPlus &&
1452 (Arg->getType()->isRecordType() || Arg->getType()->isEnumeralType())) {
1453 // Which overloaded operator?
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001454 OverloadedOperatorKind OverOp =
Douglas Gregord08452f2008-11-19 15:42:04 +00001455 (Opc == UnaryOperator::PostInc)? OO_PlusPlus : OO_MinusMinus;
1456
1457 // C++ [over.inc]p1:
1458 //
1459 // [...] If the function is a member function with one
1460 // parameter (which shall be of type int) or a non-member
1461 // function with two parameters (the second of which shall be
1462 // of type int), it defines the postfix increment operator ++
1463 // for objects of that type. When the postfix increment is
1464 // called as a result of using the ++ operator, the int
1465 // argument will have value zero.
Mike Stump11289f42009-09-09 15:08:12 +00001466 Expr *Args[2] = {
1467 Arg,
1468 new (Context) IntegerLiteral(llvm::APInt(Context.Target.getIntWidth(), 0,
Steve Narofff6009ed2009-01-21 00:14:39 +00001469 /*isSigned=*/true), Context.IntTy, SourceLocation())
Douglas Gregord08452f2008-11-19 15:42:04 +00001470 };
1471
1472 // Build the candidate set for overloading
1473 OverloadCandidateSet CandidateSet;
Douglas Gregor1baf54e2009-03-13 18:40:31 +00001474 AddOperatorCandidates(OverOp, S, OpLoc, Args, 2, CandidateSet);
Douglas Gregord08452f2008-11-19 15:42:04 +00001475
1476 // Perform overload resolution.
1477 OverloadCandidateSet::iterator Best;
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00001478 switch (BestViableFunction(CandidateSet, OpLoc, Best)) {
Douglas Gregord08452f2008-11-19 15:42:04 +00001479 case OR_Success: {
1480 // We found a built-in operator or an overloaded operator.
1481 FunctionDecl *FnDecl = Best->Function;
1482
1483 if (FnDecl) {
1484 // We matched an overloaded operator. Build a call to that
1485 // operator.
1486
1487 // Convert the arguments.
1488 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(FnDecl)) {
1489 if (PerformObjectArgumentInitialization(Arg, Method))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001490 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001491 } else {
1492 // Convert the arguments.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001493 if (PerformCopyInitialization(Arg,
Douglas Gregord08452f2008-11-19 15:42:04 +00001494 FnDecl->getParamDecl(0)->getType(),
1495 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001496 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001497 }
1498
1499 // Determine the result type
Anders Carlsson3d5829c2009-10-13 21:49:31 +00001500 QualType ResultTy = FnDecl->getResultType().getNonReferenceType();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001501
Douglas Gregord08452f2008-11-19 15:42:04 +00001502 // Build the actual expression node.
Steve Narofff6009ed2009-01-21 00:14:39 +00001503 Expr *FnExpr = new (Context) DeclRefExpr(FnDecl, FnDecl->getType(),
Mike Stump82191d02009-02-19 02:54:59 +00001504 SourceLocation());
Douglas Gregord08452f2008-11-19 15:42:04 +00001505 UsualUnaryConversions(FnExpr);
1506
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001507 Input.release();
Douglas Gregor2517f332009-05-27 05:00:47 +00001508 Args[0] = Arg;
Anders Carlsson3d5829c2009-10-13 21:49:31 +00001509
1510 ExprOwningPtr<CXXOperatorCallExpr>
1511 TheCall(this, new (Context) CXXOperatorCallExpr(Context, OverOp,
1512 FnExpr, Args, 2,
1513 ResultTy, OpLoc));
1514
1515 if (CheckCallReturnType(FnDecl->getResultType(), OpLoc, TheCall.get(),
1516 FnDecl))
1517 return ExprError();
Anders Carlsson834facc2009-10-13 22:22:09 +00001518 return Owned(TheCall.release());
1519
Douglas Gregord08452f2008-11-19 15:42:04 +00001520 } else {
1521 // We matched a built-in operator. Convert the arguments, then
1522 // break out so that we will build the appropriate built-in
1523 // operator node.
1524 if (PerformCopyInitialization(Arg, Best->BuiltinTypes.ParamTypes[0],
1525 "passing"))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001526 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001527
1528 break;
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001529 }
Douglas Gregord08452f2008-11-19 15:42:04 +00001530 }
1531
Douglas Gregor66950a32009-09-30 21:46:01 +00001532 case OR_No_Viable_Function: {
1533 // No viable function; try checking this as a built-in operator, which
1534 // will fail and provide a diagnostic. Then, print the overload
1535 // candidates.
1536 OwningExprResult Result = CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
1537 assert(Result.isInvalid() &&
1538 "C++ postfix-unary operator overloading is missing candidates!");
1539 if (Result.isInvalid())
1540 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/false);
1541
1542 return move(Result);
1543 }
1544
Douglas Gregord08452f2008-11-19 15:42:04 +00001545 case OR_Ambiguous:
1546 Diag(OpLoc, diag::err_ovl_ambiguous_oper)
1547 << UnaryOperator::getOpcodeStr(Opc)
1548 << Arg->getSourceRange();
1549 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001550 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00001551
1552 case OR_Deleted:
1553 Diag(OpLoc, diag::err_ovl_deleted_oper)
1554 << Best->Function->isDeleted()
1555 << UnaryOperator::getOpcodeStr(Opc)
1556 << Arg->getSourceRange();
1557 PrintOverloadCandidates(CandidateSet, /*OnlyViable=*/true);
1558 return ExprError();
Douglas Gregord08452f2008-11-19 15:42:04 +00001559 }
1560
1561 // Either we found no viable overloaded operator or we matched a
1562 // built-in operator. In either case, fall through to trying to
1563 // build a built-in operation.
1564 }
1565
Eli Friedmanf32f0a72009-07-22 23:24:42 +00001566 Input.release();
1567 Input = Arg;
Eli Friedman6aea5752009-07-22 22:25:00 +00001568 return CreateBuiltinUnaryOp(OpLoc, Opc, move(Input));
Chris Lattnere168f762006-11-10 05:29:30 +00001569}
1570
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001571Action::OwningExprResult
1572Sema::ActOnArraySubscriptExpr(Scope *S, ExprArg Base, SourceLocation LLoc,
1573 ExprArg Idx, SourceLocation RLoc) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00001574 // Since this might be a postfix expression, get rid of ParenListExprs.
1575 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1576
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001577 Expr *LHSExp = static_cast<Expr*>(Base.get()),
1578 *RHSExp = static_cast<Expr*>(Idx.get());
Mike Stump11289f42009-09-09 15:08:12 +00001579
Douglas Gregor40412ac2008-11-19 17:17:41 +00001580 if (getLangOptions().CPlusPlus &&
Douglas Gregor7a77a6b2009-05-19 00:01:19 +00001581 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
1582 Base.release();
1583 Idx.release();
1584 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
1585 Context.DependentTy, RLoc));
1586 }
1587
Mike Stump11289f42009-09-09 15:08:12 +00001588 if (getLangOptions().CPlusPlus &&
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001589 (LHSExp->getType()->isRecordType() ||
Eli Friedman254a1a22008-12-15 22:34:21 +00001590 LHSExp->getType()->isEnumeralType() ||
1591 RHSExp->getType()->isRecordType() ||
1592 RHSExp->getType()->isEnumeralType())) {
Sebastian Redladba46e2009-10-29 20:17:01 +00001593 return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, move(Base),move(Idx));
Douglas Gregor40412ac2008-11-19 17:17:41 +00001594 }
1595
Sebastian Redladba46e2009-10-29 20:17:01 +00001596 return CreateBuiltinArraySubscriptExpr(move(Base), LLoc, move(Idx), RLoc);
1597}
1598
1599
1600Action::OwningExprResult
1601Sema::CreateBuiltinArraySubscriptExpr(ExprArg Base, SourceLocation LLoc,
1602 ExprArg Idx, SourceLocation RLoc) {
1603 Expr *LHSExp = static_cast<Expr*>(Base.get());
1604 Expr *RHSExp = static_cast<Expr*>(Idx.get());
1605
Chris Lattner36d572b2007-07-16 00:14:47 +00001606 // Perform default conversions.
1607 DefaultFunctionArrayConversion(LHSExp);
1608 DefaultFunctionArrayConversion(RHSExp);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001609
Chris Lattner36d572b2007-07-16 00:14:47 +00001610 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
Steve Narofff1e53692007-03-23 22:27:02 +00001611
Steve Naroffc1aadb12007-03-28 21:49:40 +00001612 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattnerf17bd422007-08-30 17:45:32 +00001613 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump4e1f26a2009-02-19 03:04:26 +00001614 // in the subscript position. As a result, we need to derive the array base
Steve Narofff1e53692007-03-23 22:27:02 +00001615 // and index from the expression types.
Chris Lattner36d572b2007-07-16 00:14:47 +00001616 Expr *BaseExpr, *IndexExpr;
1617 QualType ResultType;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00001618 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
1619 BaseExpr = LHSExp;
1620 IndexExpr = RHSExp;
1621 ResultType = Context.DependentTy;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001622 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner36d572b2007-07-16 00:14:47 +00001623 BaseExpr = LHSExp;
1624 IndexExpr = RHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001625 ResultType = PTy->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001626 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattneraee0cfd2007-07-16 00:23:25 +00001627 // Handle the uncommon case of "123[Ptr]".
Chris Lattner36d572b2007-07-16 00:14:47 +00001628 BaseExpr = RHSExp;
1629 IndexExpr = LHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00001630 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001631 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001632 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001633 BaseExpr = LHSExp;
1634 IndexExpr = RHSExp;
1635 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00001636 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00001637 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00001638 // Handle the uncommon case of "123[Ptr]".
1639 BaseExpr = RHSExp;
1640 IndexExpr = LHSExp;
1641 ResultType = PTy->getPointeeType();
John McCall9dd450b2009-09-21 23:43:11 +00001642 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattner41977962007-07-31 19:29:30 +00001643 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner36d572b2007-07-16 00:14:47 +00001644 IndexExpr = RHSExp;
Nate Begemanc1bf0612009-01-18 00:45:31 +00001645
Chris Lattner36d572b2007-07-16 00:14:47 +00001646 // FIXME: need to deal with const...
1647 ResultType = VTy->getElementType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001648 } else if (LHSTy->isArrayType()) {
1649 // If we see an array that wasn't promoted by
1650 // DefaultFunctionArrayConversion, it must be an array that
1651 // wasn't promoted because of the C90 rule that doesn't
1652 // allow promoting non-lvalue arrays. Warn, then
1653 // force the promotion here.
1654 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1655 LHSExp->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00001656 ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
1657 CastExpr::CK_ArrayToPointerDecay);
Eli Friedmanab2784f2009-04-25 23:46:54 +00001658 LHSTy = LHSExp->getType();
1659
1660 BaseExpr = LHSExp;
1661 IndexExpr = RHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001662 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00001663 } else if (RHSTy->isArrayType()) {
1664 // Same as previous, except for 123[f().a] case
1665 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
1666 RHSExp->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00001667 ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
1668 CastExpr::CK_ArrayToPointerDecay);
Eli Friedmanab2784f2009-04-25 23:46:54 +00001669 RHSTy = RHSExp->getType();
1670
1671 BaseExpr = RHSExp;
1672 IndexExpr = LHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00001673 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroffb3096442007-06-09 03:47:53 +00001674 } else {
Chris Lattner003af242009-04-25 22:50:55 +00001675 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
1676 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001677 }
Steve Naroffc1aadb12007-03-28 21:49:40 +00001678 // C99 6.5.2.1p1
Nate Begeman5ec4b312009-08-10 23:49:36 +00001679 if (!(IndexExpr->getType()->isIntegerType() &&
1680 IndexExpr->getType()->isScalarType()) && !IndexExpr->isTypeDependent())
Chris Lattner003af242009-04-25 22:50:55 +00001681 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
1682 << IndexExpr->getSourceRange());
Steve Naroffb29cdd52007-07-10 18:23:31 +00001683
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00001684 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinigb7608d72009-09-14 20:14:57 +00001685 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
1686 && !IndexExpr->isTypeDependent())
Sam Weinig914244e2009-09-14 01:58:58 +00001687 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
1688
Douglas Gregorac1fb652009-03-24 19:52:54 +00001689 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump11289f42009-09-09 15:08:12 +00001690 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
1691 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregorac1fb652009-03-24 19:52:54 +00001692 // incomplete types are not object types.
1693 if (ResultType->isFunctionType()) {
1694 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
1695 << ResultType << BaseExpr->getSourceRange();
1696 return ExprError();
1697 }
Mike Stump11289f42009-09-09 15:08:12 +00001698
Douglas Gregorac1fb652009-03-24 19:52:54 +00001699 if (!ResultType->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00001700 RequireCompleteType(LLoc, ResultType,
Anders Carlssond624e162009-08-26 23:45:07 +00001701 PDiag(diag::err_subscript_incomplete_type)
1702 << BaseExpr->getSourceRange()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00001703 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00001704
Chris Lattner62975a72009-04-24 00:30:45 +00001705 // Diagnose bad cases where we step over interface counts.
1706 if (ResultType->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
1707 Diag(LLoc, diag::err_subscript_nonfragile_interface)
1708 << ResultType << BaseExpr->getSourceRange();
1709 return ExprError();
1710 }
Mike Stump11289f42009-09-09 15:08:12 +00001711
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001712 Base.release();
1713 Idx.release();
Mike Stump4e1f26a2009-02-19 03:04:26 +00001714 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
Steve Narofff6009ed2009-01-21 00:14:39 +00001715 ResultType, RLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00001716}
1717
Steve Narofff8fd09e2007-07-27 22:15:19 +00001718QualType Sema::
Nate Begemance4d7fc2008-04-18 23:10:10 +00001719CheckExtVectorComponent(QualType baseType, SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001720 const IdentifierInfo *CompName,
Anders Carlssonf571c112009-08-26 18:25:21 +00001721 SourceLocation CompLoc) {
Daniel Dunbarc0429402009-10-18 02:09:38 +00001722 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
1723 // see FIXME there.
1724 //
1725 // FIXME: This logic can be greatly simplified by splitting it along
1726 // halving/not halving and reworking the component checking.
John McCall9dd450b2009-09-21 23:43:11 +00001727 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begemanf322eab2008-05-09 06:41:27 +00001728
Steve Narofff8fd09e2007-07-27 22:15:19 +00001729 // The vector accessor can't exceed the number of elements.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001730 const char *compStr = CompName->getNameStart();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001731
Mike Stump4e1f26a2009-02-19 03:04:26 +00001732 // This flag determines whether or not the component is one of the four
Nate Begemanbb70bf62009-01-18 01:47:54 +00001733 // special names that indicate a subset of exactly half the elements are
1734 // to be selected.
1735 bool HalvingSwizzle = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00001736
Nate Begemanbb70bf62009-01-18 01:47:54 +00001737 // This flag determines whether or not CompName has an 's' char prefix,
1738 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman0359e122009-06-25 21:06:09 +00001739 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begemanf322eab2008-05-09 06:41:27 +00001740
1741 // Check that we've found one of the special components, or that the component
1742 // names must come from the same set.
Mike Stump4e1f26a2009-02-19 03:04:26 +00001743 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begemanbb70bf62009-01-18 01:47:54 +00001744 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
1745 HalvingSwizzle = true;
Nate Begemanf322eab2008-05-09 06:41:27 +00001746 } else if (vecType->getPointAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00001747 do
1748 compStr++;
1749 while (*compStr && vecType->getPointAccessorIdx(*compStr) != -1);
Nate Begemanbb70bf62009-01-18 01:47:54 +00001750 } else if (HexSwizzle || vecType->getNumericAccessorIdx(*compStr) != -1) {
Chris Lattner7e152db2007-08-02 22:33:49 +00001751 do
1752 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00001753 while (*compStr && vecType->getNumericAccessorIdx(*compStr) != -1);
Chris Lattner7e152db2007-08-02 22:33:49 +00001754 }
Nate Begemanbb70bf62009-01-18 01:47:54 +00001755
Mike Stump4e1f26a2009-02-19 03:04:26 +00001756 if (!HalvingSwizzle && *compStr) {
Steve Narofff8fd09e2007-07-27 22:15:19 +00001757 // We didn't get to the end of the string. This means the component names
1758 // didn't come from the same set *or* we encountered an illegal name.
Chris Lattner3b054132008-11-19 05:08:23 +00001759 Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
1760 << std::string(compStr,compStr+1) << SourceRange(CompLoc);
Steve Narofff8fd09e2007-07-27 22:15:19 +00001761 return QualType();
1762 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00001763
Nate Begemanbb70bf62009-01-18 01:47:54 +00001764 // Ensure no component accessor exceeds the width of the vector type it
1765 // operates on.
1766 if (!HalvingSwizzle) {
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001767 compStr = CompName->getNameStart();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001768
1769 if (HexSwizzle)
Steve Narofff8fd09e2007-07-27 22:15:19 +00001770 compStr++;
Nate Begemanbb70bf62009-01-18 01:47:54 +00001771
1772 while (*compStr) {
1773 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
1774 Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
1775 << baseType << SourceRange(CompLoc);
1776 return QualType();
1777 }
1778 }
Steve Narofff8fd09e2007-07-27 22:15:19 +00001779 }
Nate Begemanf322eab2008-05-09 06:41:27 +00001780
Nate Begemanbb70bf62009-01-18 01:47:54 +00001781 // If this is a halving swizzle, verify that the base type has an even
1782 // number of elements.
1783 if (HalvingSwizzle && (vecType->getNumElements() & 1U)) {
Chris Lattner3b054132008-11-19 05:08:23 +00001784 Diag(OpLoc, diag::err_ext_vector_component_requires_even)
Chris Lattner1e5665e2008-11-24 06:25:27 +00001785 << baseType << SourceRange(CompLoc);
Nate Begemanf322eab2008-05-09 06:41:27 +00001786 return QualType();
1787 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00001788
Steve Narofff8fd09e2007-07-27 22:15:19 +00001789 // The component accessor looks fine - now we need to compute the actual type.
Mike Stump4e1f26a2009-02-19 03:04:26 +00001790 // The vector type is implied by the component accessor. For example,
Steve Narofff8fd09e2007-07-27 22:15:19 +00001791 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begemanbb70bf62009-01-18 01:47:54 +00001792 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begemanf322eab2008-05-09 06:41:27 +00001793 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begemanbb70bf62009-01-18 01:47:54 +00001794 unsigned CompSize = HalvingSwizzle ? vecType->getNumElements() / 2
Anders Carlssonf571c112009-08-26 18:25:21 +00001795 : CompName->getLength();
Nate Begemanbb70bf62009-01-18 01:47:54 +00001796 if (HexSwizzle)
1797 CompSize--;
1798
Steve Narofff8fd09e2007-07-27 22:15:19 +00001799 if (CompSize == 1)
1800 return vecType->getElementType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00001801
Nate Begemance4d7fc2008-04-18 23:10:10 +00001802 QualType VT = Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stump4e1f26a2009-02-19 03:04:26 +00001803 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begemance4d7fc2008-04-18 23:10:10 +00001804 // diagostics look bad. We want extended vector types to appear built-in.
1805 for (unsigned i = 0, E = ExtVectorDecls.size(); i != E; ++i) {
1806 if (ExtVectorDecls[i]->getUnderlyingType() == VT)
1807 return Context.getTypedefType(ExtVectorDecls[i]);
Steve Naroffddf5a1d2007-07-29 16:33:31 +00001808 }
1809 return VT; // should never get here (a typedef type should always be found).
Steve Narofff8fd09e2007-07-27 22:15:19 +00001810}
1811
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001812static Decl *FindGetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlssonf571c112009-08-26 18:25:21 +00001813 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001814 const Selector &Sel,
1815 ASTContext &Context) {
Mike Stump11289f42009-09-09 15:08:12 +00001816
Anders Carlssonf571c112009-08-26 18:25:21 +00001817 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001818 return PD;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001819 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001820 return OMD;
Mike Stump11289f42009-09-09 15:08:12 +00001821
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001822 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
1823 E = PDecl->protocol_end(); I != E; ++I) {
Mike Stump11289f42009-09-09 15:08:12 +00001824 if (Decl *D = FindGetterNameDeclFromProtocolList(*I, Member, Sel,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001825 Context))
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001826 return D;
1827 }
1828 return 0;
1829}
1830
Steve Narofffb4330f2009-06-17 22:40:22 +00001831static Decl *FindGetterNameDecl(const ObjCObjectPointerType *QIdTy,
Anders Carlssonf571c112009-08-26 18:25:21 +00001832 IdentifierInfo *Member,
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001833 const Selector &Sel,
1834 ASTContext &Context) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001835 // Check protocols on qualified interfaces.
1836 Decl *GDecl = 0;
Steve Narofffb4330f2009-06-17 22:40:22 +00001837 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001838 E = QIdTy->qual_end(); I != E; ++I) {
Anders Carlssonf571c112009-08-26 18:25:21 +00001839 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001840 GDecl = PD;
1841 break;
1842 }
1843 // Also must look for a getter name which uses property syntax.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001844 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001845 GDecl = OMD;
1846 break;
1847 }
1848 }
1849 if (!GDecl) {
Steve Narofffb4330f2009-06-17 22:40:22 +00001850 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001851 E = QIdTy->qual_end(); I != E; ++I) {
1852 // Search in the protocol-qualifier list of current protocol.
Douglas Gregorbcced4e2009-04-09 21:40:53 +00001853 GDecl = FindGetterNameDeclFromProtocolList(*I, Member, Sel, Context);
Fariborz Jahaniand302bbd02009-03-19 18:15:34 +00001854 if (GDecl)
1855 return GDecl;
1856 }
1857 }
1858 return GDecl;
1859}
Chris Lattner4bf74fd2009-02-15 22:43:40 +00001860
Mike Stump11289f42009-09-09 15:08:12 +00001861Action::OwningExprResult
Anders Carlssonf571c112009-08-26 18:25:21 +00001862Sema::BuildMemberReferenceExpr(Scope *S, ExprArg Base, SourceLocation OpLoc,
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001863 tok::TokenKind OpKind, SourceLocation MemberLoc,
Mike Stump11289f42009-09-09 15:08:12 +00001864 DeclarationName MemberName,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00001865 bool HasExplicitTemplateArgs,
1866 SourceLocation LAngleLoc,
John McCall0ad16662009-10-29 08:12:44 +00001867 const TemplateArgumentLoc *ExplicitTemplateArgs,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00001868 unsigned NumExplicitTemplateArgs,
1869 SourceLocation RAngleLoc,
Douglas Gregor2b6ca462009-09-03 21:38:09 +00001870 DeclPtrTy ObjCImpDecl, const CXXScopeSpec *SS,
1871 NamedDecl *FirstQualifierInScope) {
Douglas Gregord8061562009-08-06 03:17:00 +00001872 if (SS && SS->isInvalid())
1873 return ExprError();
1874
Nate Begeman5ec4b312009-08-10 23:49:36 +00001875 // Since this might be a postfix expression, get rid of ParenListExprs.
1876 Base = MaybeConvertParenListExprToParenExpr(S, move(Base));
1877
Anders Carlsson3cbc8592009-05-01 19:30:39 +00001878 Expr *BaseExpr = Base.takeAs<Expr>();
Douglas Gregorad8a3362009-09-04 17:36:40 +00001879 assert(BaseExpr && "no base expression");
Mike Stump11289f42009-09-09 15:08:12 +00001880
Steve Naroffeaaae462007-12-16 21:42:28 +00001881 // Perform default conversions.
1882 DefaultFunctionArrayConversion(BaseExpr);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001883
Steve Naroff185616f2007-07-26 03:11:44 +00001884 QualType BaseType = BaseExpr->getType();
Douglas Gregord82ae382009-11-06 06:30:47 +00001885
1886 // If the user is trying to apply -> or . to a function pointer
1887 // type, it's probably because the forgot parentheses to call that
1888 // function. Suggest the addition of those parentheses, build the
1889 // call, and continue on.
1890 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
1891 if (const FunctionProtoType *Fun
1892 = Ptr->getPointeeType()->getAs<FunctionProtoType>()) {
1893 QualType ResultTy = Fun->getResultType();
1894 if (Fun->getNumArgs() == 0 &&
1895 ((OpKind == tok::period && ResultTy->isRecordType()) ||
1896 (OpKind == tok::arrow && ResultTy->isPointerType() &&
1897 ResultTy->getAs<PointerType>()->getPointeeType()
1898 ->isRecordType()))) {
1899 SourceLocation Loc = PP.getLocForEndOfToken(BaseExpr->getLocEnd());
1900 Diag(Loc, diag::err_member_reference_needs_call)
1901 << QualType(Fun, 0)
1902 << CodeModificationHint::CreateInsertion(Loc, "()");
1903
1904 OwningExprResult NewBase
1905 = ActOnCallExpr(S, ExprArg(*this, BaseExpr), Loc,
1906 MultiExprArg(*this, 0, 0), 0, Loc);
1907 if (NewBase.isInvalid())
1908 return move(NewBase);
1909
1910 BaseExpr = NewBase.takeAs<Expr>();
1911 DefaultFunctionArrayConversion(BaseExpr);
1912 BaseType = BaseExpr->getType();
1913 }
1914 }
1915 }
1916
David Chisnall9f57c292009-08-17 16:35:33 +00001917 // If this is an Objective-C pseudo-builtin and a definition is provided then
1918 // use that.
1919 if (BaseType->isObjCIdType()) {
1920 // We have an 'id' type. Rather than fall through, we check if this
1921 // is a reference to 'isa'.
1922 if (BaseType != Context.ObjCIdRedefinitionType) {
1923 BaseType = Context.ObjCIdRedefinitionType;
Eli Friedman06ed2a52009-10-20 08:27:19 +00001924 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00001925 }
David Chisnall9f57c292009-08-17 16:35:33 +00001926 }
Steve Naroff185616f2007-07-26 03:11:44 +00001927 assert(!BaseType.isNull() && "no type for member expression");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00001928
Fariborz Jahaniane983d172009-09-22 16:48:37 +00001929 // Handle properties on ObjC 'Class' types.
1930 if (OpKind == tok::period && BaseType->isObjCClassType()) {
1931 // Also must look for a getter name which uses property syntax.
1932 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
1933 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
1934 if (ObjCMethodDecl *MD = getCurMethodDecl()) {
1935 ObjCInterfaceDecl *IFace = MD->getClassInterface();
1936 ObjCMethodDecl *Getter;
1937 // FIXME: need to also look locally in the implementation.
1938 if ((Getter = IFace->lookupClassMethod(Sel))) {
1939 // Check the use of this method.
1940 if (DiagnoseUseOfDecl(Getter, MemberLoc))
1941 return ExprError();
1942 }
1943 // If we found a getter then this may be a valid dot-reference, we
1944 // will look for the matching setter, in case it is needed.
1945 Selector SetterSel =
1946 SelectorTable::constructSetterName(PP.getIdentifierTable(),
1947 PP.getSelectorTable(), Member);
1948 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
1949 if (!Setter) {
1950 // If this reference is in an @implementation, also check for 'private'
1951 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00001952 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Fariborz Jahaniane983d172009-09-22 16:48:37 +00001953 }
1954 // Look through local category implementations associated with the class.
1955 if (!Setter)
1956 Setter = IFace->getCategoryClassMethod(SetterSel);
1957
1958 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
1959 return ExprError();
1960
1961 if (Getter || Setter) {
1962 QualType PType;
1963
1964 if (Getter)
1965 PType = Getter->getResultType();
1966 else
1967 // Get the expression type from Setter's incoming parameter.
1968 PType = (*(Setter->param_end() -1))->getType();
1969 // FIXME: we must check that the setter has property type.
1970 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter,
1971 PType,
1972 Setter, MemberLoc, BaseExpr));
1973 }
1974 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
1975 << MemberName << BaseType);
1976 }
1977 }
1978
1979 if (BaseType->isObjCClassType() &&
1980 BaseType != Context.ObjCClassRedefinitionType) {
1981 BaseType = Context.ObjCClassRedefinitionType;
Eli Friedman06ed2a52009-10-20 08:27:19 +00001982 ImpCastExprToType(BaseExpr, BaseType, CastExpr::CK_BitCast);
Fariborz Jahaniane983d172009-09-22 16:48:37 +00001983 }
1984
Chris Lattner4befd732008-07-21 04:36:39 +00001985 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
1986 // must have pointer type, and the accessed type is the pointee.
Steve Narofff1e53692007-03-23 22:27:02 +00001987 if (OpKind == tok::arrow) {
Douglas Gregor2b6ca462009-09-03 21:38:09 +00001988 if (BaseType->isDependentType()) {
1989 NestedNameSpecifier *Qualifier = 0;
1990 if (SS) {
1991 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
1992 if (!FirstQualifierInScope)
1993 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
1994 }
Mike Stump11289f42009-09-09 15:08:12 +00001995
1996 return Owned(CXXUnresolvedMemberExpr::Create(Context, BaseExpr, true,
Douglas Gregor308047d2009-09-09 00:23:06 +00001997 OpLoc, Qualifier,
Douglas Gregorc26e0f62009-09-03 16:14:30 +00001998 SS? SS->getRange() : SourceRange(),
Douglas Gregor308047d2009-09-09 00:23:06 +00001999 FirstQualifierInScope,
2000 MemberName,
2001 MemberLoc,
2002 HasExplicitTemplateArgs,
2003 LAngleLoc,
2004 ExplicitTemplateArgs,
2005 NumExplicitTemplateArgs,
2006 RAngleLoc));
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002007 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002008 else if (const PointerType *PT = BaseType->getAs<PointerType>())
Steve Naroff185616f2007-07-26 03:11:44 +00002009 BaseType = PT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00002010 else if (BaseType->isObjCObjectPointerType())
2011 ;
Steve Naroff185616f2007-07-26 03:11:44 +00002012 else
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002013 return ExprError(Diag(MemberLoc,
2014 diag::err_typecheck_member_reference_arrow)
2015 << BaseType << BaseExpr->getSourceRange());
Fariborz Jahaniane983d172009-09-22 16:48:37 +00002016 } else if (BaseType->isDependentType()) {
Mike Stump11289f42009-09-09 15:08:12 +00002017 // Require that the base type isn't a pointer type
Anders Carlsson524d5a42009-05-16 20:31:20 +00002018 // (so we'll report an error for)
2019 // T* t;
2020 // t.f;
Mike Stump11289f42009-09-09 15:08:12 +00002021 //
Anders Carlsson524d5a42009-05-16 20:31:20 +00002022 // In Obj-C++, however, the above expression is valid, since it could be
2023 // accessing the 'f' property if T is an Obj-C interface. The extra check
2024 // allows this, while still reporting an error if T is a struct pointer.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002025 const PointerType *PT = BaseType->getAs<PointerType>();
Anders Carlsson524d5a42009-05-16 20:31:20 +00002026
Mike Stump11289f42009-09-09 15:08:12 +00002027 if (!PT || (getLangOptions().ObjC1 &&
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002028 !PT->getPointeeType()->isRecordType())) {
2029 NestedNameSpecifier *Qualifier = 0;
2030 if (SS) {
2031 Qualifier = static_cast<NestedNameSpecifier *>(SS->getScopeRep());
2032 if (!FirstQualifierInScope)
2033 FirstQualifierInScope = FindFirstQualifierInScope(S, Qualifier);
2034 }
Mike Stump11289f42009-09-09 15:08:12 +00002035
Douglas Gregor308047d2009-09-09 00:23:06 +00002036 return Owned(CXXUnresolvedMemberExpr::Create(Context,
Mike Stump11289f42009-09-09 15:08:12 +00002037 BaseExpr, false,
2038 OpLoc,
Douglas Gregor308047d2009-09-09 00:23:06 +00002039 Qualifier,
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002040 SS? SS->getRange() : SourceRange(),
Douglas Gregor308047d2009-09-09 00:23:06 +00002041 FirstQualifierInScope,
2042 MemberName,
2043 MemberLoc,
2044 HasExplicitTemplateArgs,
2045 LAngleLoc,
2046 ExplicitTemplateArgs,
2047 NumExplicitTemplateArgs,
2048 RAngleLoc));
Douglas Gregor2b6ca462009-09-03 21:38:09 +00002049 }
Anders Carlsson524d5a42009-05-16 20:31:20 +00002050 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002051
Chris Lattner4befd732008-07-21 04:36:39 +00002052 // Handle field access to simple records. This also handles access to fields
2053 // of the ObjC 'id' struct.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002054 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
Steve Naroff185616f2007-07-26 03:11:44 +00002055 RecordDecl *RDecl = RTy->getDecl();
Douglas Gregored0cfbd2009-03-09 16:13:40 +00002056 if (RequireCompleteType(OpLoc, BaseType,
Anders Carlssond624e162009-08-26 23:45:07 +00002057 PDiag(diag::err_typecheck_incomplete_tag)
2058 << BaseExpr->getSourceRange()))
Douglas Gregordd430f72009-01-19 19:26:10 +00002059 return ExprError();
2060
Douglas Gregord8061562009-08-06 03:17:00 +00002061 DeclContext *DC = RDecl;
2062 if (SS && SS->isSet()) {
2063 // If the member name was a qualified-id, look into the
2064 // nested-name-specifier.
2065 DC = computeDeclContext(*SS, false);
Douglas Gregor0b3d95a2009-10-17 22:37:54 +00002066
2067 if (!isa<TypeDecl>(DC)) {
2068 Diag(MemberLoc, diag::err_qualified_member_nonclass)
2069 << DC << SS->getRange();
2070 return ExprError();
2071 }
Mike Stump11289f42009-09-09 15:08:12 +00002072
2073 // FIXME: If DC is not computable, we should build a
Douglas Gregord8061562009-08-06 03:17:00 +00002074 // CXXUnresolvedMemberExpr.
2075 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
2076 }
2077
Steve Naroff185616f2007-07-26 03:11:44 +00002078 // The record definition is complete, now make sure the member is valid.
John McCall9f3059a2009-10-09 21:13:30 +00002079 LookupResult Result;
2080 LookupQualifiedName(Result, DC, MemberName, LookupMemberName, false);
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002081
John McCall9f3059a2009-10-09 21:13:30 +00002082 if (Result.empty())
Douglas Gregore40876a2009-10-13 21:16:44 +00002083 return ExprError(Diag(MemberLoc, diag::err_no_member)
2084 << MemberName << DC << BaseExpr->getSourceRange());
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002085 if (Result.isAmbiguous()) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002086 DiagnoseAmbiguousLookup(Result, MemberName, MemberLoc,
2087 BaseExpr->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002088 return ExprError();
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002089 }
Mike Stump11289f42009-09-09 15:08:12 +00002090
John McCall9f3059a2009-10-09 21:13:30 +00002091 NamedDecl *MemberDecl = Result.getAsSingleDecl(Context);
2092
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002093 if (SS && SS->isSet()) {
John McCall9f3059a2009-10-09 21:13:30 +00002094 TypeDecl* TyD = cast<TypeDecl>(MemberDecl->getDeclContext());
Mike Stump11289f42009-09-09 15:08:12 +00002095 QualType BaseTypeCanon
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002096 = Context.getCanonicalType(BaseType).getUnqualifiedType();
Mike Stump11289f42009-09-09 15:08:12 +00002097 QualType MemberTypeCanon
John McCall9f3059a2009-10-09 21:13:30 +00002098 = Context.getCanonicalType(Context.getTypeDeclType(TyD));
Mike Stump11289f42009-09-09 15:08:12 +00002099
Douglas Gregorc26e0f62009-09-03 16:14:30 +00002100 if (BaseTypeCanon != MemberTypeCanon &&
2101 !IsDerivedFrom(BaseTypeCanon, MemberTypeCanon))
2102 return ExprError(Diag(SS->getBeginLoc(),
2103 diag::err_not_direct_base_or_virtual)
2104 << MemberTypeCanon << BaseTypeCanon);
2105 }
Mike Stump11289f42009-09-09 15:08:12 +00002106
Chris Lattner303284a2009-02-13 22:08:30 +00002107 // If the decl being referenced had an error, return an error for this
2108 // sub-expr without emitting another error, in order to avoid cascading
2109 // error cases.
2110 if (MemberDecl->isInvalidDecl())
2111 return ExprError();
Mike Stump4e1f26a2009-02-19 03:04:26 +00002112
Anders Carlsson04e1e222009-09-10 20:48:14 +00002113 bool ShouldCheckUse = true;
2114 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
2115 // Don't diagnose the use of a virtual member function unless it's
2116 // explicitly qualified.
2117 if (MD->isVirtual() && (!SS || !SS->isSet()))
2118 ShouldCheckUse = false;
2119 }
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00002120
Douglas Gregor171c45a2009-02-18 21:56:37 +00002121 // Check the use of this field
Anders Carlsson04e1e222009-09-10 20:48:14 +00002122 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc))
Douglas Gregor171c45a2009-02-18 21:56:37 +00002123 return ExprError();
Chris Lattner303284a2009-02-13 22:08:30 +00002124
Douglas Gregor55297ac2008-12-23 00:26:44 +00002125 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl)) {
Douglas Gregor9ac7a072009-01-07 00:43:41 +00002126 // We may have found a field within an anonymous union or struct
2127 // (C++ [class.union]).
2128 if (cast<RecordDecl>(FD->getDeclContext())->isAnonymousStructOrUnion())
Sebastian Redlffbcf962009-01-18 18:53:16 +00002129 return BuildAnonymousStructUnionMemberReference(MemberLoc, FD,
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002130 BaseExpr, OpLoc);
Douglas Gregor9ac7a072009-01-07 00:43:41 +00002131
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002132 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
Douglas Gregor55297ac2008-12-23 00:26:44 +00002133 QualType MemberType = FD->getType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002134 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>())
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002135 MemberType = Ref->getPointeeType();
2136 else {
John McCall8ccfcb52009-09-24 19:53:00 +00002137 Qualifiers BaseQuals = BaseType.getQualifiers();
2138 BaseQuals.removeObjCGCAttr();
2139 if (FD->isMutable()) BaseQuals.removeConst();
2140
2141 Qualifiers MemberQuals
2142 = Context.getCanonicalType(MemberType).getQualifiers();
2143
2144 Qualifiers Combined = BaseQuals + MemberQuals;
2145 if (Combined != MemberQuals)
2146 MemberType = Context.getQualifiedType(MemberType, Combined);
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002147 }
Eli Friedman1242fff2008-02-06 22:48:16 +00002148
Douglas Gregor77b50e12009-06-22 23:06:13 +00002149 MarkDeclarationReferenced(MemberLoc, FD);
Fariborz Jahanian3f150832009-07-29 19:40:11 +00002150 if (PerformObjectMemberConversion(BaseExpr, FD))
2151 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002152 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
Douglas Gregorc1905232009-08-26 22:36:53 +00002153 FD, MemberLoc, MemberType));
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002154 }
Mike Stump11289f42009-09-09 15:08:12 +00002155
Douglas Gregor77b50e12009-06-22 23:06:13 +00002156 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
2157 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002158 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2159 Var, MemberLoc,
2160 Var->getType().getNonReferenceType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002161 }
2162 if (FunctionDecl *MemberFn = dyn_cast<FunctionDecl>(MemberDecl)) {
2163 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002164 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2165 MemberFn, MemberLoc,
2166 MemberFn->getType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002167 }
Mike Stump11289f42009-09-09 15:08:12 +00002168 if (FunctionTemplateDecl *FunTmpl
Douglas Gregor97628d62009-08-21 00:16:32 +00002169 = dyn_cast<FunctionTemplateDecl>(MemberDecl)) {
2170 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Mike Stump11289f42009-09-09 15:08:12 +00002171
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002172 if (HasExplicitTemplateArgs)
Mike Stump11289f42009-09-09 15:08:12 +00002173 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2174 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002175 SS? SS->getRange() : SourceRange(),
Mike Stump11289f42009-09-09 15:08:12 +00002176 FunTmpl, MemberLoc, true,
2177 LAngleLoc, ExplicitTemplateArgs,
2178 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002179 Context.OverloadTy));
Mike Stump11289f42009-09-09 15:08:12 +00002180
Douglas Gregorc1905232009-08-26 22:36:53 +00002181 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2182 FunTmpl, MemberLoc,
2183 Context.OverloadTy));
Douglas Gregor97628d62009-08-21 00:16:32 +00002184 }
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002185 if (OverloadedFunctionDecl *Ovl
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002186 = dyn_cast<OverloadedFunctionDecl>(MemberDecl)) {
2187 if (HasExplicitTemplateArgs)
Mike Stump11289f42009-09-09 15:08:12 +00002188 return Owned(MemberExpr::Create(Context, BaseExpr, OpKind == tok::arrow,
2189 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002190 SS? SS->getRange() : SourceRange(),
Mike Stump11289f42009-09-09 15:08:12 +00002191 Ovl, MemberLoc, true,
2192 LAngleLoc, ExplicitTemplateArgs,
2193 NumExplicitTemplateArgs, RAngleLoc,
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002194 Context.OverloadTy));
2195
Douglas Gregorc1905232009-08-26 22:36:53 +00002196 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2197 Ovl, MemberLoc, Context.OverloadTy));
Douglas Gregor84f14dd2009-09-01 00:37:14 +00002198 }
Douglas Gregor77b50e12009-06-22 23:06:13 +00002199 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
2200 MarkDeclarationReferenced(MemberLoc, MemberDecl);
Douglas Gregorc1905232009-08-26 22:36:53 +00002201 return Owned(BuildMemberExpr(Context, BaseExpr, OpKind == tok::arrow, SS,
2202 Enum, MemberLoc, Enum->getType()));
Douglas Gregor77b50e12009-06-22 23:06:13 +00002203 }
Chris Lattnerfe4847e2009-03-31 08:18:48 +00002204 if (isa<TypeDecl>(MemberDecl))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002205 return ExprError(Diag(MemberLoc,diag::err_typecheck_member_reference_type)
Anders Carlssonf571c112009-08-26 18:25:21 +00002206 << MemberName << int(OpKind == tok::arrow));
Eli Friedman1242fff2008-02-06 22:48:16 +00002207
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00002208 // We found a declaration kind that we didn't expect. This is a
2209 // generic error message that tells the user that she can't refer
2210 // to this member with '.' or '->'.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002211 return ExprError(Diag(MemberLoc,
2212 diag::err_typecheck_member_reference_unknown)
Anders Carlssonf571c112009-08-26 18:25:21 +00002213 << MemberName << int(OpKind == tok::arrow));
Chris Lattnerb63a7452008-07-21 04:28:12 +00002214 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002215
Douglas Gregorad8a3362009-09-04 17:36:40 +00002216 // Handle pseudo-destructors (C++ [expr.pseudo]). Since anything referring
2217 // into a record type was handled above, any destructor we see here is a
2218 // pseudo-destructor.
2219 if (MemberName.getNameKind() == DeclarationName::CXXDestructorName) {
2220 // C++ [expr.pseudo]p2:
Mike Stump11289f42009-09-09 15:08:12 +00002221 // The left hand side of the dot operator shall be of scalar type. The
2222 // left hand side of the arrow operator shall be of pointer to scalar
Douglas Gregorad8a3362009-09-04 17:36:40 +00002223 // type.
2224 if (!BaseType->isScalarType())
2225 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_base_not_scalar)
2226 << BaseType << BaseExpr->getSourceRange());
Mike Stump11289f42009-09-09 15:08:12 +00002227
Douglas Gregorad8a3362009-09-04 17:36:40 +00002228 // [...] The type designated by the pseudo-destructor-name shall be the
2229 // same as the object type.
2230 if (!MemberName.getCXXNameType()->isDependentType() &&
2231 !Context.hasSameUnqualifiedType(BaseType, MemberName.getCXXNameType()))
2232 return Owned(Diag(OpLoc, diag::err_pseudo_dtor_type_mismatch)
2233 << BaseType << MemberName.getCXXNameType()
2234 << BaseExpr->getSourceRange() << SourceRange(MemberLoc));
Mike Stump11289f42009-09-09 15:08:12 +00002235
2236 // [...] Furthermore, the two type-names in a pseudo-destructor-name of
Douglas Gregorad8a3362009-09-04 17:36:40 +00002237 // the form
2238 //
Mike Stump11289f42009-09-09 15:08:12 +00002239 // ::[opt] nested-name-specifier[opt] type-name :: ̃ type-name
2240 //
Douglas Gregorad8a3362009-09-04 17:36:40 +00002241 // shall designate the same scalar type.
2242 //
2243 // FIXME: DPG can't see any way to trigger this particular clause, so it
2244 // isn't checked here.
Mike Stump11289f42009-09-09 15:08:12 +00002245
Douglas Gregorad8a3362009-09-04 17:36:40 +00002246 // FIXME: We've lost the precise spelling of the type by going through
2247 // DeclarationName. Can we do better?
2248 return Owned(new (Context) CXXPseudoDestructorExpr(Context, BaseExpr,
Mike Stump11289f42009-09-09 15:08:12 +00002249 OpKind == tok::arrow,
Douglas Gregorad8a3362009-09-04 17:36:40 +00002250 OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00002251 (NestedNameSpecifier *)(SS? SS->getScopeRep() : 0),
Douglas Gregorad8a3362009-09-04 17:36:40 +00002252 SS? SS->getRange() : SourceRange(),
2253 MemberName.getCXXNameType(),
2254 MemberLoc));
2255 }
Mike Stump11289f42009-09-09 15:08:12 +00002256
Chris Lattnerdc420f42008-07-21 04:59:05 +00002257 // Handle access to Objective-C instance variables, such as "Obj->ivar" and
2258 // (*Obj).ivar.
Steve Naroff7cae42b2009-07-10 23:34:53 +00002259 if ((OpKind == tok::arrow && BaseType->isObjCObjectPointerType()) ||
2260 (OpKind == tok::period && BaseType->isObjCInterfaceType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002261 const ObjCObjectPointerType *OPT = BaseType->getAs<ObjCObjectPointerType>();
Mike Stump11289f42009-09-09 15:08:12 +00002262 const ObjCInterfaceType *IFaceT =
John McCall9dd450b2009-09-21 23:43:11 +00002263 OPT ? OPT->getInterfaceType() : BaseType->getAs<ObjCInterfaceType>();
Steve Naroffa057ba92009-07-16 00:25:06 +00002264 if (IFaceT) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002265 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
2266
Steve Naroffa057ba92009-07-16 00:25:06 +00002267 ObjCInterfaceDecl *IDecl = IFaceT->getDecl();
2268 ObjCInterfaceDecl *ClassDeclared;
Anders Carlssonf571c112009-08-26 18:25:21 +00002269 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
Mike Stump11289f42009-09-09 15:08:12 +00002270
Steve Naroffa057ba92009-07-16 00:25:06 +00002271 if (IV) {
2272 // If the decl being referenced had an error, return an error for this
2273 // sub-expr without emitting another error, in order to avoid cascading
2274 // error cases.
2275 if (IV->isInvalidDecl())
2276 return ExprError();
Douglas Gregor171c45a2009-02-18 21:56:37 +00002277
Steve Naroffa057ba92009-07-16 00:25:06 +00002278 // Check whether we can reference this field.
2279 if (DiagnoseUseOfDecl(IV, MemberLoc))
2280 return ExprError();
2281 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
2282 IV->getAccessControl() != ObjCIvarDecl::Package) {
2283 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
2284 if (ObjCMethodDecl *MD = getCurMethodDecl())
2285 ClassOfMethodDecl = MD->getClassInterface();
2286 else if (ObjCImpDecl && getCurFunctionDecl()) {
2287 // Case of a c-function declared inside an objc implementation.
2288 // FIXME: For a c-style function nested inside an objc implementation
2289 // class, there is no implementation context available, so we pass
2290 // down the context as argument to this routine. Ideally, this context
2291 // need be passed down in the AST node and somehow calculated from the
2292 // AST for a function decl.
2293 Decl *ImplDecl = ObjCImpDecl.getAs<Decl>();
Mike Stump11289f42009-09-09 15:08:12 +00002294 if (ObjCImplementationDecl *IMPD =
Steve Naroffa057ba92009-07-16 00:25:06 +00002295 dyn_cast<ObjCImplementationDecl>(ImplDecl))
2296 ClassOfMethodDecl = IMPD->getClassInterface();
2297 else if (ObjCCategoryImplDecl* CatImplClass =
2298 dyn_cast<ObjCCategoryImplDecl>(ImplDecl))
2299 ClassOfMethodDecl = CatImplClass->getClassInterface();
2300 }
Mike Stump11289f42009-09-09 15:08:12 +00002301
2302 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
2303 if (ClassDeclared != IDecl ||
Steve Naroffa057ba92009-07-16 00:25:06 +00002304 ClassOfMethodDecl != ClassDeclared)
Mike Stump11289f42009-09-09 15:08:12 +00002305 Diag(MemberLoc, diag::error_private_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002306 << IV->getDeclName();
Mike Stump12b8ce12009-08-04 21:02:39 +00002307 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
2308 // @protected
Mike Stump11289f42009-09-09 15:08:12 +00002309 Diag(MemberLoc, diag::error_protected_ivar_access)
Steve Naroffa057ba92009-07-16 00:25:06 +00002310 << IV->getDeclName();
Steve Naroffd1b64be2009-03-04 18:34:24 +00002311 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002312
2313 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
2314 MemberLoc, BaseExpr,
2315 OpKind == tok::arrow));
Fariborz Jahaniana458c4f2009-03-03 01:21:12 +00002316 }
Steve Naroffa057ba92009-07-16 00:25:06 +00002317 return ExprError(Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
Anders Carlssonf571c112009-08-26 18:25:21 +00002318 << IDecl->getDeclName() << MemberName
Steve Naroffa057ba92009-07-16 00:25:06 +00002319 << BaseExpr->getSourceRange());
Fariborz Jahanianb1378f92008-12-13 22:20:28 +00002320 }
Chris Lattnerb63a7452008-07-21 04:28:12 +00002321 }
Steve Naroff1329fa02009-07-15 18:40:39 +00002322 // Handle properties on 'id' and qualified "id".
Mike Stump11289f42009-09-09 15:08:12 +00002323 if (OpKind == tok::period && (BaseType->isObjCIdType() ||
Steve Naroff1329fa02009-07-15 18:40:39 +00002324 BaseType->isObjCQualifiedIdType())) {
John McCall9dd450b2009-09-21 23:43:11 +00002325 const ObjCObjectPointerType *QIdTy = BaseType->getAs<ObjCObjectPointerType>();
Anders Carlssonf571c112009-08-26 18:25:21 +00002326 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002327
Steve Naroff7cae42b2009-07-10 23:34:53 +00002328 // Check protocols on qualified interfaces.
Anders Carlssonf571c112009-08-26 18:25:21 +00002329 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002330 if (Decl *PMDecl = FindGetterNameDecl(QIdTy, Member, Sel, Context)) {
2331 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
2332 // Check the use of this declaration
2333 if (DiagnoseUseOfDecl(PD, MemberLoc))
2334 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002335
Steve Naroff7cae42b2009-07-10 23:34:53 +00002336 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2337 MemberLoc, BaseExpr));
2338 }
2339 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
2340 // Check the use of this method.
2341 if (DiagnoseUseOfDecl(OMD, MemberLoc))
2342 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002343
Steve Naroff7cae42b2009-07-10 23:34:53 +00002344 return Owned(new (Context) ObjCMessageExpr(BaseExpr, Sel,
Mike Stump11289f42009-09-09 15:08:12 +00002345 OMD->getResultType(),
2346 OMD, OpLoc, MemberLoc,
Steve Naroff7cae42b2009-07-10 23:34:53 +00002347 NULL, 0));
2348 }
2349 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002350
Steve Naroff7cae42b2009-07-10 23:34:53 +00002351 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002352 << MemberName << BaseType);
Steve Naroff7cae42b2009-07-10 23:34:53 +00002353 }
Chris Lattnerdc420f42008-07-21 04:59:05 +00002354 // Handle Objective-C property access, which is "Obj.property" where Obj is a
2355 // pointer to a (potentially qualified) interface type.
Steve Naroff7cae42b2009-07-10 23:34:53 +00002356 const ObjCObjectPointerType *OPT;
Mike Stump11289f42009-09-09 15:08:12 +00002357 if (OpKind == tok::period &&
Steve Naroff7cae42b2009-07-10 23:34:53 +00002358 (OPT = BaseType->getAsObjCInterfacePointerType())) {
2359 const ObjCInterfaceType *IFaceT = OPT->getInterfaceType();
2360 ObjCInterfaceDecl *IFace = IFaceT->getDecl();
Anders Carlssonf571c112009-08-26 18:25:21 +00002361 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Mike Stump11289f42009-09-09 15:08:12 +00002362
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002363 // Search for a declared property first.
Anders Carlssonf571c112009-08-26 18:25:21 +00002364 if (ObjCPropertyDecl *PD = IFace->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002365 // Check whether we can reference this property.
2366 if (DiagnoseUseOfDecl(PD, MemberLoc))
2367 return ExprError();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002368 QualType ResTy = PD->getType();
Anders Carlssonf571c112009-08-26 18:25:21 +00002369 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002370 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Fariborz Jahanianfe9e3942009-05-08 20:20:55 +00002371 if (DiagnosePropertyAccessorMismatch(PD, Getter, MemberLoc))
2372 ResTy = Getter->getResultType();
Fariborz Jahanianb2ab73d2009-05-08 19:36:34 +00002373 return Owned(new (Context) ObjCPropertyRefExpr(PD, ResTy,
Chris Lattner43df5562009-02-16 18:35:08 +00002374 MemberLoc, BaseExpr));
2375 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002376 // Check protocols on qualified interfaces.
Steve Naroffaccc4882009-07-20 17:56:53 +00002377 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2378 E = OPT->qual_end(); I != E; ++I)
Anders Carlssonf571c112009-08-26 18:25:21 +00002379 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002380 // Check whether we can reference this property.
2381 if (DiagnoseUseOfDecl(PD, MemberLoc))
2382 return ExprError();
Chris Lattner43df5562009-02-16 18:35:08 +00002383
Steve Narofff6009ed2009-01-21 00:14:39 +00002384 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
Chris Lattner43df5562009-02-16 18:35:08 +00002385 MemberLoc, BaseExpr));
2386 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00002387 for (ObjCObjectPointerType::qual_iterator I = OPT->qual_begin(),
2388 E = OPT->qual_end(); I != E; ++I)
Anders Carlssonf571c112009-08-26 18:25:21 +00002389 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00002390 // Check whether we can reference this property.
2391 if (DiagnoseUseOfDecl(PD, MemberLoc))
2392 return ExprError();
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002393
Steve Naroff7cae42b2009-07-10 23:34:53 +00002394 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
2395 MemberLoc, BaseExpr));
2396 }
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002397 // If that failed, look for an "implicit" property by seeing if the nullary
2398 // selector is implemented.
2399
2400 // FIXME: The logic for looking up nullary and unary selectors should be
2401 // shared with the code in ActOnInstanceMessage.
2402
Anders Carlssonf571c112009-08-26 18:25:21 +00002403 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002404 ObjCMethodDecl *Getter = IFace->lookupInstanceMethod(Sel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002405
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002406 // If this reference is in an @implementation, check for 'private' methods.
2407 if (!Getter)
Steve Naroffbb69c942009-10-01 23:46:04 +00002408 Getter = IFace->lookupPrivateInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002409
Steve Naroff1df62692008-10-22 19:16:27 +00002410 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002411 if (!Getter)
2412 Getter = IFace->getCategoryInstanceMethod(Sel);
Daniel Dunbaref89086c2008-09-03 01:05:41 +00002413 if (Getter) {
Douglas Gregor171c45a2009-02-18 21:56:37 +00002414 // Check if we can reference this property.
2415 if (DiagnoseUseOfDecl(Getter, MemberLoc))
2416 return ExprError();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002417 }
2418 // If we found a getter then this may be a valid dot-reference, we
2419 // will look for the matching setter, in case it is needed.
Mike Stump11289f42009-09-09 15:08:12 +00002420 Selector SetterSel =
2421 SelectorTable::constructSetterName(PP.getIdentifierTable(),
Anders Carlssonf571c112009-08-26 18:25:21 +00002422 PP.getSelectorTable(), Member);
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00002423 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002424 if (!Setter) {
2425 // If this reference is in an @implementation, also check for 'private'
2426 // methods.
Steve Naroffbb69c942009-10-01 23:46:04 +00002427 Setter = IFace->lookupPrivateInstanceMethod(SetterSel);
Steve Naroff1d984fe2009-03-11 13:48:17 +00002428 }
2429 // Look through local category implementations associated with the class.
Argyrios Kyrtzidis1559d67b2009-07-21 00:06:20 +00002430 if (!Setter)
2431 Setter = IFace->getCategoryInstanceMethod(SetterSel);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002432
Steve Naroff1d984fe2009-03-11 13:48:17 +00002433 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
2434 return ExprError();
2435
2436 if (Getter || Setter) {
2437 QualType PType;
2438
2439 if (Getter)
2440 PType = Getter->getResultType();
Fariborz Jahanian88cc2342009-08-18 20:50:23 +00002441 else
2442 // Get the expression type from Setter's incoming parameter.
2443 PType = (*(Setter->param_end() -1))->getType();
Steve Naroff1d984fe2009-03-11 13:48:17 +00002444 // FIXME: we must check that the setter has property type.
Fariborz Jahanian9a846652009-08-20 17:02:02 +00002445 return Owned(new (Context) ObjCImplicitSetterGetterRefExpr(Getter, PType,
Steve Naroff1d984fe2009-03-11 13:48:17 +00002446 Setter, MemberLoc, BaseExpr));
2447 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002448 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
Anders Carlssonf571c112009-08-26 18:25:21 +00002449 << MemberName << BaseType);
Fariborz Jahanian21f54ee2007-11-12 22:29:28 +00002450 }
Mike Stump11289f42009-09-09 15:08:12 +00002451
Steve Naroffe87026a2009-07-24 17:54:45 +00002452 // Handle the following exceptional case (*Obj).isa.
Mike Stump11289f42009-09-09 15:08:12 +00002453 if (OpKind == tok::period &&
Steve Naroffe87026a2009-07-24 17:54:45 +00002454 BaseType->isSpecificBuiltinType(BuiltinType::ObjCId) &&
Anders Carlssonf571c112009-08-26 18:25:21 +00002455 MemberName.getAsIdentifierInfo()->isStr("isa"))
Steve Naroffe87026a2009-07-24 17:54:45 +00002456 return Owned(new (Context) ObjCIsaExpr(BaseExpr, false, MemberLoc,
2457 Context.getObjCIdType()));
2458
Chris Lattnerb63a7452008-07-21 04:28:12 +00002459 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner6c7ce102009-02-16 21:11:58 +00002460 if (BaseType->isExtVectorType()) {
Anders Carlssonf571c112009-08-26 18:25:21 +00002461 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
Chris Lattnerb63a7452008-07-21 04:28:12 +00002462 QualType ret = CheckExtVectorComponent(BaseType, OpLoc, Member, MemberLoc);
2463 if (ret.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002464 return ExprError();
Anders Carlssonf571c112009-08-26 18:25:21 +00002465 return Owned(new (Context) ExtVectorElementExpr(ret, BaseExpr, *Member,
Steve Narofff6009ed2009-01-21 00:14:39 +00002466 MemberLoc));
Chris Lattnerb63a7452008-07-21 04:28:12 +00002467 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002468
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002469 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
2470 << BaseType << BaseExpr->getSourceRange();
2471
Douglas Gregor0b08ba42009-03-27 06:00:30 +00002472 return ExprError();
Chris Lattnere168f762006-11-10 05:29:30 +00002473}
2474
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002475Sema::OwningExprResult Sema::ActOnMemberAccessExpr(Scope *S, ExprArg Base,
2476 SourceLocation OpLoc,
2477 tok::TokenKind OpKind,
2478 const CXXScopeSpec &SS,
2479 UnqualifiedId &Member,
2480 DeclPtrTy ObjCImpDecl,
2481 bool HasTrailingLParen) {
2482 if (Member.getKind() == UnqualifiedId::IK_TemplateId) {
2483 TemplateName Template
2484 = TemplateName::getFromVoidPointer(Member.TemplateId->Template);
2485
2486 // FIXME: We're going to end up looking up the template based on its name,
2487 // twice!
2488 DeclarationName Name;
2489 if (TemplateDecl *ActualTemplate = Template.getAsTemplateDecl())
2490 Name = ActualTemplate->getDeclName();
2491 else if (OverloadedFunctionDecl *Ovl = Template.getAsOverloadedFunctionDecl())
2492 Name = Ovl->getDeclName();
Douglas Gregor71395fa2009-11-04 00:56:37 +00002493 else {
2494 DependentTemplateName *DTN = Template.getAsDependentTemplateName();
2495 if (DTN->isIdentifier())
2496 Name = DTN->getIdentifier();
2497 else
2498 Name = Context.DeclarationNames.getCXXOperatorName(DTN->getOperator());
2499 }
Douglas Gregor30d60cb2009-11-03 19:44:04 +00002500
2501 // Translate the parser's template argument list in our AST format.
2502 ASTTemplateArgsPtr TemplateArgsPtr(*this,
2503 Member.TemplateId->getTemplateArgs(),
2504 Member.TemplateId->getTemplateArgIsType(),
2505 Member.TemplateId->NumArgs);
2506
2507 llvm::SmallVector<TemplateArgumentLoc, 16> TemplateArgs;
2508 translateTemplateArguments(TemplateArgsPtr,
2509 Member.TemplateId->getTemplateArgLocations(),
2510 TemplateArgs);
2511 TemplateArgsPtr.release();
2512
2513 // Do we have the save the actual template name? We might need it...
2514 return BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind,
2515 Member.TemplateId->TemplateNameLoc,
2516 Name, true, Member.TemplateId->LAngleLoc,
2517 TemplateArgs.data(), TemplateArgs.size(),
2518 Member.TemplateId->RAngleLoc, DeclPtrTy(),
2519 &SS);
2520 }
2521
2522 // FIXME: We lose a lot of source information by mapping directly to the
2523 // DeclarationName.
2524 OwningExprResult Result
2525 = BuildMemberReferenceExpr(S, move(Base), OpLoc, OpKind,
2526 Member.getSourceRange().getBegin(),
2527 GetNameFromUnqualifiedId(Member),
2528 ObjCImpDecl, &SS);
2529
2530 if (Result.isInvalid() || HasTrailingLParen ||
2531 Member.getKind() != UnqualifiedId::IK_DestructorName)
2532 return move(Result);
2533
2534 // The only way a reference to a destructor can be used is to
2535 // immediately call them. Since the next token is not a '(', produce a
2536 // diagnostic and build the call now.
2537 Expr *E = (Expr *)Result.get();
2538 SourceLocation ExpectedLParenLoc
2539 = PP.getLocForEndOfToken(Member.getSourceRange().getEnd());
2540 Diag(E->getLocStart(), diag::err_dtor_expr_without_call)
2541 << isa<CXXPseudoDestructorExpr>(E)
2542 << CodeModificationHint::CreateInsertion(ExpectedLParenLoc, "()");
2543
2544 return ActOnCallExpr(0, move(Result), ExpectedLParenLoc,
2545 MultiExprArg(*this, 0, 0), 0, ExpectedLParenLoc);
Anders Carlssonf571c112009-08-26 18:25:21 +00002546}
2547
Anders Carlsson355933d2009-08-25 03:49:14 +00002548Sema::OwningExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
2549 FunctionDecl *FD,
2550 ParmVarDecl *Param) {
2551 if (Param->hasUnparsedDefaultArg()) {
2552 Diag (CallLoc,
2553 diag::err_use_of_default_argument_to_function_declared_later) <<
2554 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00002555 Diag(UnparsedDefaultArgLocs[Param],
Anders Carlsson355933d2009-08-25 03:49:14 +00002556 diag::note_default_argument_declared_here);
2557 } else {
2558 if (Param->hasUninstantiatedDefaultArg()) {
2559 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
2560
2561 // Instantiate the expression.
Douglas Gregor01afeef2009-08-28 20:31:08 +00002562 MultiLevelTemplateArgumentList ArgList = getTemplateInstantiationArgs(FD);
Anders Carlsson657bad42009-09-05 05:14:19 +00002563
Mike Stump11289f42009-09-09 15:08:12 +00002564 InstantiatingTemplate Inst(*this, CallLoc, Param,
2565 ArgList.getInnermost().getFlatArgumentList(),
Douglas Gregor01afeef2009-08-28 20:31:08 +00002566 ArgList.getInnermost().flat_size());
Anders Carlsson355933d2009-08-25 03:49:14 +00002567
John McCall76d824f2009-08-25 22:02:44 +00002568 OwningExprResult Result = SubstExpr(UninstExpr, ArgList);
Mike Stump11289f42009-09-09 15:08:12 +00002569 if (Result.isInvalid())
Anders Carlsson355933d2009-08-25 03:49:14 +00002570 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002571
2572 if (SetParamDefaultArgument(Param, move(Result),
Anders Carlsson355933d2009-08-25 03:49:14 +00002573 /*FIXME:EqualLoc*/
2574 UninstExpr->getSourceRange().getBegin()))
2575 return ExprError();
2576 }
Mike Stump11289f42009-09-09 15:08:12 +00002577
Anders Carlsson355933d2009-08-25 03:49:14 +00002578 Expr *DefaultExpr = Param->getDefaultArg();
Mike Stump11289f42009-09-09 15:08:12 +00002579
Anders Carlsson355933d2009-08-25 03:49:14 +00002580 // If the default expression creates temporaries, we need to
2581 // push them to the current stack of expression temporaries so they'll
2582 // be properly destroyed.
Mike Stump11289f42009-09-09 15:08:12 +00002583 if (CXXExprWithTemporaries *E
Anders Carlsson355933d2009-08-25 03:49:14 +00002584 = dyn_cast_or_null<CXXExprWithTemporaries>(DefaultExpr)) {
Mike Stump11289f42009-09-09 15:08:12 +00002585 assert(!E->shouldDestroyTemporaries() &&
Anders Carlsson355933d2009-08-25 03:49:14 +00002586 "Can't destroy temporaries in a default argument expr!");
2587 for (unsigned I = 0, N = E->getNumTemporaries(); I != N; ++I)
2588 ExprTemporaries.push_back(E->getTemporary(I));
2589 }
2590 }
2591
2592 // We already type-checked the argument, so we know it works.
2593 return Owned(CXXDefaultArgExpr::Create(Context, Param));
2594}
2595
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002596/// ConvertArgumentsForCall - Converts the arguments specified in
2597/// Args/NumArgs to the parameter types of the function FDecl with
2598/// function prototype Proto. Call is the call expression itself, and
2599/// Fn is the function expression. For a C++ member function, this
2600/// routine does not attempt to convert the object argument. Returns
2601/// true if the call is ill-formed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00002602bool
2603Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002604 FunctionDecl *FDecl,
Douglas Gregordeaad8c2009-02-26 23:50:07 +00002605 const FunctionProtoType *Proto,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002606 Expr **Args, unsigned NumArgs,
2607 SourceLocation RParenLoc) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00002608 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002609 // assignment, to the types of the corresponding parameter, ...
2610 unsigned NumArgsInProto = Proto->getNumArgs();
2611 unsigned NumArgsToCheck = NumArgs;
Douglas Gregorb6b99612009-01-23 21:30:56 +00002612 bool Invalid = false;
2613
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002614 // If too few arguments are available (and we don't have default
2615 // arguments for the remaining parameters), don't make the call.
2616 if (NumArgs < NumArgsInProto) {
2617 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
2618 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
2619 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange();
2620 // Use default arguments for missing arguments
2621 NumArgsToCheck = NumArgsInProto;
Ted Kremenek5a201952009-02-07 01:47:29 +00002622 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002623 }
2624
2625 // If too many are passed and not variadic, error on the extras and drop
2626 // them.
2627 if (NumArgs > NumArgsInProto) {
2628 if (!Proto->isVariadic()) {
2629 Diag(Args[NumArgsInProto]->getLocStart(),
2630 diag::err_typecheck_call_too_many_args)
2631 << Fn->getType()->isBlockPointerType() << Fn->getSourceRange()
2632 << SourceRange(Args[NumArgsInProto]->getLocStart(),
2633 Args[NumArgs-1]->getLocEnd());
2634 // This deletes the extra arguments.
Ted Kremenek5a201952009-02-07 01:47:29 +00002635 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregorb6b99612009-01-23 21:30:56 +00002636 Invalid = true;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002637 }
2638 NumArgsToCheck = NumArgsInProto;
2639 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00002640
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002641 // Continue to check argument types (even if we have too few/many args).
2642 for (unsigned i = 0; i != NumArgsToCheck; i++) {
2643 QualType ProtoArgType = Proto->getArgType(i);
Mike Stump4e1f26a2009-02-19 03:04:26 +00002644
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002645 Expr *Arg;
Douglas Gregor58354032008-12-24 00:01:03 +00002646 if (i < NumArgs) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002647 Arg = Args[i];
Douglas Gregor58354032008-12-24 00:01:03 +00002648
Eli Friedman3164fb12009-03-22 22:00:50 +00002649 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2650 ProtoArgType,
Anders Carlssond624e162009-08-26 23:45:07 +00002651 PDiag(diag::err_call_incomplete_argument)
2652 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00002653 return true;
2654
Douglas Gregor58354032008-12-24 00:01:03 +00002655 // Pass the argument.
2656 if (PerformCopyInitialization(Arg, ProtoArgType, "passing"))
2657 return true;
Anders Carlsson84613c42009-06-12 16:51:40 +00002658 } else {
Anders Carlssonc80a1272009-08-25 02:29:20 +00002659 ParmVarDecl *Param = FDecl->getParamDecl(i);
Mike Stump11289f42009-09-09 15:08:12 +00002660
2661 OwningExprResult ArgExpr =
Anders Carlsson355933d2009-08-25 03:49:14 +00002662 BuildCXXDefaultArgExpr(Call->getSourceRange().getBegin(),
2663 FDecl, Param);
2664 if (ArgExpr.isInvalid())
2665 return true;
Mike Stump11289f42009-09-09 15:08:12 +00002666
Anders Carlsson355933d2009-08-25 03:49:14 +00002667 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00002668 }
Mike Stump11289f42009-09-09 15:08:12 +00002669
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002670 Call->setArg(i, Arg);
2671 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00002672
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002673 // If this is a variadic call, handle args passed through "...".
2674 if (Proto->isVariadic()) {
Anders Carlssona7d069d2009-01-16 16:48:51 +00002675 VariadicCallType CallType = VariadicFunction;
2676 if (Fn->getType()->isBlockPointerType())
2677 CallType = VariadicBlock; // Block
2678 else if (isa<MemberExpr>(Fn))
2679 CallType = VariadicMethod;
2680
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002681 // Promote the arguments (C99 6.5.2.2p7).
2682 for (unsigned i = NumArgsInProto; i != NumArgs; i++) {
2683 Expr *Arg = Args[i];
Chris Lattnera8a7d0f2009-04-12 08:11:20 +00002684 Invalid |= DefaultVariadicArgumentPromotion(Arg, CallType);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002685 Call->setArg(i, Arg);
2686 }
2687 }
2688
Douglas Gregorb6b99612009-01-23 21:30:56 +00002689 return Invalid;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002690}
2691
Douglas Gregorcabea402009-09-22 15:41:20 +00002692/// \brief "Deconstruct" the function argument of a call expression to find
2693/// the underlying declaration (if any), the name of the called function,
2694/// whether argument-dependent lookup is available, whether it has explicit
2695/// template arguments, etc.
2696void Sema::DeconstructCallFunction(Expr *FnExpr,
2697 NamedDecl *&Function,
2698 DeclarationName &Name,
2699 NestedNameSpecifier *&Qualifier,
2700 SourceRange &QualifierRange,
2701 bool &ArgumentDependentLookup,
2702 bool &HasExplicitTemplateArguments,
John McCall0ad16662009-10-29 08:12:44 +00002703 const TemplateArgumentLoc *&ExplicitTemplateArgs,
Douglas Gregorcabea402009-09-22 15:41:20 +00002704 unsigned &NumExplicitTemplateArgs) {
2705 // Set defaults for all of the output parameters.
2706 Function = 0;
2707 Name = DeclarationName();
2708 Qualifier = 0;
2709 QualifierRange = SourceRange();
2710 ArgumentDependentLookup = getLangOptions().CPlusPlus;
2711 HasExplicitTemplateArguments = false;
2712
2713 // If we're directly calling a function, get the appropriate declaration.
2714 // Also, in C++, keep track of whether we should perform argument-dependent
2715 // lookup and whether there were any explicitly-specified template arguments.
2716 while (true) {
2717 if (ImplicitCastExpr *IcExpr = dyn_cast<ImplicitCastExpr>(FnExpr))
2718 FnExpr = IcExpr->getSubExpr();
2719 else if (ParenExpr *PExpr = dyn_cast<ParenExpr>(FnExpr)) {
2720 // Parentheses around a function disable ADL
2721 // (C++0x [basic.lookup.argdep]p1).
2722 ArgumentDependentLookup = false;
2723 FnExpr = PExpr->getSubExpr();
2724 } else if (isa<UnaryOperator>(FnExpr) &&
2725 cast<UnaryOperator>(FnExpr)->getOpcode()
2726 == UnaryOperator::AddrOf) {
2727 FnExpr = cast<UnaryOperator>(FnExpr)->getSubExpr();
Douglas Gregorcabea402009-09-22 15:41:20 +00002728 } else if (DeclRefExpr *DRExpr = dyn_cast<DeclRefExpr>(FnExpr)) {
2729 Function = dyn_cast<NamedDecl>(DRExpr->getDecl());
Douglas Gregor4bd90e52009-10-23 18:54:35 +00002730 if ((Qualifier = DRExpr->getQualifier())) {
2731 ArgumentDependentLookup = false;
2732 QualifierRange = DRExpr->getQualifierRange();
2733 }
Douglas Gregorcabea402009-09-22 15:41:20 +00002734 break;
2735 } else if (UnresolvedFunctionNameExpr *DepName
2736 = dyn_cast<UnresolvedFunctionNameExpr>(FnExpr)) {
2737 Name = DepName->getName();
2738 break;
2739 } else if (TemplateIdRefExpr *TemplateIdRef
2740 = dyn_cast<TemplateIdRefExpr>(FnExpr)) {
2741 Function = TemplateIdRef->getTemplateName().getAsTemplateDecl();
2742 if (!Function)
2743 Function = TemplateIdRef->getTemplateName().getAsOverloadedFunctionDecl();
2744 HasExplicitTemplateArguments = true;
2745 ExplicitTemplateArgs = TemplateIdRef->getTemplateArgs();
2746 NumExplicitTemplateArgs = TemplateIdRef->getNumTemplateArgs();
2747
2748 // C++ [temp.arg.explicit]p6:
2749 // [Note: For simple function names, argument dependent lookup (3.4.2)
2750 // applies even when the function name is not visible within the
2751 // scope of the call. This is because the call still has the syntactic
2752 // form of a function call (3.4.1). But when a function template with
2753 // explicit template arguments is used, the call does not have the
2754 // correct syntactic form unless there is a function template with
2755 // that name visible at the point of the call. If no such name is
2756 // visible, the call is not syntactically well-formed and
2757 // argument-dependent lookup does not apply. If some such name is
2758 // visible, argument dependent lookup applies and additional function
2759 // templates may be found in other namespaces.
2760 //
2761 // The summary of this paragraph is that, if we get to this point and the
2762 // template-id was not a qualified name, then argument-dependent lookup
2763 // is still possible.
2764 if ((Qualifier = TemplateIdRef->getQualifier())) {
2765 ArgumentDependentLookup = false;
2766 QualifierRange = TemplateIdRef->getQualifierRange();
2767 }
2768 break;
2769 } else {
2770 // Any kind of name that does not refer to a declaration (or
2771 // set of declarations) disables ADL (C++0x [basic.lookup.argdep]p3).
2772 ArgumentDependentLookup = false;
2773 break;
2774 }
2775 }
2776}
2777
Steve Naroff83895f72007-09-16 03:34:24 +00002778/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattnere168f762006-11-10 05:29:30 +00002779/// This provides the location of the left/right parens and a list of comma
2780/// locations.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002781Action::OwningExprResult
2782Sema::ActOnCallExpr(Scope *S, ExprArg fn, SourceLocation LParenLoc,
2783 MultiExprArg args,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002784 SourceLocation *CommaLocs, SourceLocation RParenLoc) {
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002785 unsigned NumArgs = args.size();
Nate Begeman5ec4b312009-08-10 23:49:36 +00002786
2787 // Since this might be a postfix expression, get rid of ParenListExprs.
2788 fn = MaybeConvertParenListExprToParenExpr(S, move(fn));
Mike Stump11289f42009-09-09 15:08:12 +00002789
Anders Carlsson3cbc8592009-05-01 19:30:39 +00002790 Expr *Fn = fn.takeAs<Expr>();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002791 Expr **Args = reinterpret_cast<Expr**>(args.release());
Chris Lattner38dbdb22007-07-21 03:03:59 +00002792 assert(Fn && "no function call expression");
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002793 FunctionDecl *FDecl = NULL;
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00002794 NamedDecl *NDecl = NULL;
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002795 DeclarationName UnqualifiedName;
Mike Stump11289f42009-09-09 15:08:12 +00002796
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002797 if (getLangOptions().CPlusPlus) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00002798 // If this is a pseudo-destructor expression, build the call immediately.
2799 if (isa<CXXPseudoDestructorExpr>(Fn)) {
2800 if (NumArgs > 0) {
2801 // Pseudo-destructor calls should not have any arguments.
2802 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
2803 << CodeModificationHint::CreateRemoval(
2804 SourceRange(Args[0]->getLocStart(),
2805 Args[NumArgs-1]->getLocEnd()));
Mike Stump11289f42009-09-09 15:08:12 +00002806
Douglas Gregorad8a3362009-09-04 17:36:40 +00002807 for (unsigned I = 0; I != NumArgs; ++I)
2808 Args[I]->Destroy(Context);
Mike Stump11289f42009-09-09 15:08:12 +00002809
Douglas Gregorad8a3362009-09-04 17:36:40 +00002810 NumArgs = 0;
2811 }
Mike Stump11289f42009-09-09 15:08:12 +00002812
Douglas Gregorad8a3362009-09-04 17:36:40 +00002813 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
2814 RParenLoc));
2815 }
Mike Stump11289f42009-09-09 15:08:12 +00002816
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002817 // Determine whether this is a dependent call inside a C++ template,
Mike Stump4e1f26a2009-02-19 03:04:26 +00002818 // in which case we won't do any semantic analysis now.
Mike Stump87c57ac2009-05-16 07:39:55 +00002819 // FIXME: Will need to cache the results of name lookup (including ADL) in
2820 // Fn.
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002821 bool Dependent = false;
2822 if (Fn->isTypeDependent())
2823 Dependent = true;
2824 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
2825 Dependent = true;
2826
2827 if (Dependent)
Ted Kremenekd7b4f402009-02-09 20:51:47 +00002828 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002829 Context.DependentTy, RParenLoc));
2830
2831 // Determine whether this is a call to an object (C++ [over.call.object]).
2832 if (Fn->getType()->isRecordType())
2833 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
2834 CommaLocs, RParenLoc));
2835
Douglas Gregore254f902009-02-04 00:32:51 +00002836 // Determine whether this is a call to a member function.
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002837 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(Fn->IgnoreParens())) {
2838 NamedDecl *MemDecl = MemExpr->getMemberDecl();
2839 if (isa<OverloadedFunctionDecl>(MemDecl) ||
2840 isa<CXXMethodDecl>(MemDecl) ||
2841 (isa<FunctionTemplateDecl>(MemDecl) &&
2842 isa<CXXMethodDecl>(
2843 cast<FunctionTemplateDecl>(MemDecl)->getTemplatedDecl())))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002844 return Owned(BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
2845 CommaLocs, RParenLoc));
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002846 }
Anders Carlsson61914b52009-10-03 17:40:22 +00002847
2848 // Determine whether this is a call to a pointer-to-member function.
2849 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(Fn->IgnoreParens())) {
2850 if (BO->getOpcode() == BinaryOperator::PtrMemD ||
2851 BO->getOpcode() == BinaryOperator::PtrMemI) {
Fariborz Jahanian42f66632009-10-28 16:49:46 +00002852 if (const FunctionProtoType *FPT =
2853 dyn_cast<FunctionProtoType>(BO->getType())) {
2854 QualType ResultTy = FPT->getResultType().getNonReferenceType();
Anders Carlsson61914b52009-10-03 17:40:22 +00002855
Fariborz Jahanian42f66632009-10-28 16:49:46 +00002856 ExprOwningPtr<CXXMemberCallExpr>
2857 TheCall(this, new (Context) CXXMemberCallExpr(Context, BO, Args,
2858 NumArgs, ResultTy,
2859 RParenLoc));
Anders Carlsson61914b52009-10-03 17:40:22 +00002860
Fariborz Jahanian42f66632009-10-28 16:49:46 +00002861 if (CheckCallReturnType(FPT->getResultType(),
2862 BO->getRHS()->getSourceRange().getBegin(),
2863 TheCall.get(), 0))
2864 return ExprError();
Anders Carlsson63dce022009-10-15 00:41:48 +00002865
Fariborz Jahanian42f66632009-10-28 16:49:46 +00002866 if (ConvertArgumentsForCall(&*TheCall, BO, 0, FPT, Args, NumArgs,
2867 RParenLoc))
2868 return ExprError();
Anders Carlsson61914b52009-10-03 17:40:22 +00002869
Fariborz Jahanian42f66632009-10-28 16:49:46 +00002870 return Owned(MaybeBindToTemporary(TheCall.release()).release());
2871 }
2872 return ExprError(Diag(Fn->getLocStart(),
2873 diag::err_typecheck_call_not_function)
2874 << Fn->getType() << Fn->getSourceRange());
Anders Carlsson61914b52009-10-03 17:40:22 +00002875 }
2876 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002877 }
2878
Douglas Gregore254f902009-02-04 00:32:51 +00002879 // If we're directly calling a function, get the appropriate declaration.
Mike Stump11289f42009-09-09 15:08:12 +00002880 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor89026b52009-06-30 23:57:56 +00002881 // lookup and whether there were any explicitly-specified template arguments.
Douglas Gregore254f902009-02-04 00:32:51 +00002882 bool ADL = true;
Douglas Gregor89026b52009-06-30 23:57:56 +00002883 bool HasExplicitTemplateArgs = 0;
John McCall0ad16662009-10-29 08:12:44 +00002884 const TemplateArgumentLoc *ExplicitTemplateArgs = 0;
Douglas Gregor89026b52009-06-30 23:57:56 +00002885 unsigned NumExplicitTemplateArgs = 0;
Douglas Gregorcabea402009-09-22 15:41:20 +00002886 NestedNameSpecifier *Qualifier = 0;
2887 SourceRange QualifierRange;
2888 DeconstructCallFunction(Fn, NDecl, UnqualifiedName, Qualifier, QualifierRange,
2889 ADL,HasExplicitTemplateArgs, ExplicitTemplateArgs,
2890 NumExplicitTemplateArgs);
Mike Stump4e1f26a2009-02-19 03:04:26 +00002891
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002892 OverloadedFunctionDecl *Ovl = 0;
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002893 FunctionTemplateDecl *FunctionTemplate = 0;
Douglas Gregora727cb92009-06-30 22:34:41 +00002894 if (NDecl) {
2895 FDecl = dyn_cast<FunctionDecl>(NDecl);
2896 if ((FunctionTemplate = dyn_cast<FunctionTemplateDecl>(NDecl)))
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002897 FDecl = FunctionTemplate->getTemplatedDecl();
2898 else
Douglas Gregora727cb92009-06-30 22:34:41 +00002899 FDecl = dyn_cast<FunctionDecl>(NDecl);
2900 Ovl = dyn_cast<OverloadedFunctionDecl>(NDecl);
Douglas Gregorb8a9a412009-02-04 15:01:18 +00002901 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00002902
Mike Stump11289f42009-09-09 15:08:12 +00002903 if (Ovl || FunctionTemplate ||
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002904 (getLangOptions().CPlusPlus && (FDecl || UnqualifiedName))) {
Douglas Gregorb9063fc2009-02-13 23:20:09 +00002905 // We don't perform ADL for implicit declarations of builtins.
Douglas Gregor15fc9562009-09-12 00:22:50 +00002906 if (FDecl && FDecl->getBuiltinID() && FDecl->isImplicit())
Douglas Gregore254f902009-02-04 00:32:51 +00002907 ADL = false;
2908
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00002909 // We don't perform ADL in C.
2910 if (!getLangOptions().CPlusPlus)
2911 ADL = false;
2912
Douglas Gregorad3f2fc2009-06-25 22:08:12 +00002913 if (Ovl || FunctionTemplate || ADL) {
Mike Stump11289f42009-09-09 15:08:12 +00002914 FDecl = ResolveOverloadedCallFn(Fn, NDecl, UnqualifiedName,
Douglas Gregor89026b52009-06-30 23:57:56 +00002915 HasExplicitTemplateArgs,
2916 ExplicitTemplateArgs,
2917 NumExplicitTemplateArgs,
Mike Stump11289f42009-09-09 15:08:12 +00002918 LParenLoc, Args, NumArgs, CommaLocs,
Douglas Gregor89026b52009-06-30 23:57:56 +00002919 RParenLoc, ADL);
Douglas Gregore254f902009-02-04 00:32:51 +00002920 if (!FDecl)
2921 return ExprError();
2922
Douglas Gregor091f0422009-10-23 22:18:25 +00002923 Fn = FixOverloadedFunctionReference(Fn, FDecl);
Douglas Gregore254f902009-02-04 00:32:51 +00002924 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00002925 }
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00002926
2927 // Promote the function operand.
2928 UsualUnaryConversions(Fn);
2929
Chris Lattner08464942007-12-28 05:29:59 +00002930 // Make the call expr early, before semantic checks. This guarantees cleanup
2931 // of arguments and function on error.
Ted Kremenekd7b4f402009-02-09 20:51:47 +00002932 ExprOwningPtr<CallExpr> TheCall(this, new (Context) CallExpr(Context, Fn,
2933 Args, NumArgs,
2934 Context.BoolTy,
2935 RParenLoc));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002936
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002937 const FunctionType *FuncT;
2938 if (!Fn->getType()->isBlockPointerType()) {
2939 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
2940 // have type pointer to function".
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002941 const PointerType *PT = Fn->getType()->getAs<PointerType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002942 if (PT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002943 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2944 << Fn->getType() << Fn->getSourceRange());
John McCall9dd450b2009-09-21 23:43:11 +00002945 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002946 } else { // This is a block call.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00002947 FuncT = Fn->getType()->getAs<BlockPointerType>()->getPointeeType()->
John McCall9dd450b2009-09-21 23:43:11 +00002948 getAs<FunctionType>();
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002949 }
Chris Lattner08464942007-12-28 05:29:59 +00002950 if (FuncT == 0)
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002951 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
2952 << Fn->getType() << Fn->getSourceRange());
2953
Eli Friedman3164fb12009-03-22 22:00:50 +00002954 // Check for a valid return type
Anders Carlsson7f84ed92009-10-09 23:51:55 +00002955 if (CheckCallReturnType(FuncT->getResultType(),
2956 Fn->getSourceRange().getBegin(), TheCall.get(),
2957 FDecl))
Eli Friedman3164fb12009-03-22 22:00:50 +00002958 return ExprError();
2959
Chris Lattner08464942007-12-28 05:29:59 +00002960 // We know the result type of the call, set it.
Douglas Gregor786ab212008-10-29 02:00:59 +00002961 TheCall->setType(FuncT->getResultType().getNonReferenceType());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002962
Douglas Gregordeaad8c2009-02-26 23:50:07 +00002963 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00002964 if (ConvertArgumentsForCall(&*TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002965 RParenLoc))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002966 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00002967 } else {
Douglas Gregordeaad8c2009-02-26 23:50:07 +00002968 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002969
Douglas Gregord8e97de2009-04-02 15:37:10 +00002970 if (FDecl) {
2971 // Check if we have too few/too many template arguments, based
2972 // on our knowledge of the function definition.
2973 const FunctionDecl *Def = 0;
Argyrios Kyrtzidisddcd1322009-06-30 02:35:26 +00002974 if (FDecl->getBody(Def) && NumArgs != Def->param_size()) {
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00002975 const FunctionProtoType *Proto =
John McCall9dd450b2009-09-21 23:43:11 +00002976 Def->getType()->getAs<FunctionProtoType>();
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00002977 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size())) {
2978 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
2979 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
2980 }
2981 }
Douglas Gregord8e97de2009-04-02 15:37:10 +00002982 }
2983
Steve Naroff0b661582007-08-28 23:30:39 +00002984 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner08464942007-12-28 05:29:59 +00002985 for (unsigned i = 0; i != NumArgs; i++) {
2986 Expr *Arg = Args[i];
2987 DefaultArgumentPromotion(Arg);
Eli Friedman3164fb12009-03-22 22:00:50 +00002988 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
2989 Arg->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00002990 PDiag(diag::err_call_incomplete_argument)
2991 << Arg->getSourceRange()))
Eli Friedman3164fb12009-03-22 22:00:50 +00002992 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00002993 TheCall->setArg(i, Arg);
Steve Naroff0b661582007-08-28 23:30:39 +00002994 }
Steve Naroffae4143e2007-04-26 20:39:23 +00002995 }
Chris Lattner08464942007-12-28 05:29:59 +00002996
Douglas Gregor97fd6e22008-12-22 05:46:06 +00002997 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
2998 if (!Method->isStatic())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00002999 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
3000 << Fn->getSourceRange());
Douglas Gregor97fd6e22008-12-22 05:46:06 +00003001
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00003002 // Check for sentinels
3003 if (NDecl)
3004 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump11289f42009-09-09 15:08:12 +00003005
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003006 // Do special checking on direct calls to functions.
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003007 if (FDecl) {
3008 if (CheckFunctionCall(FDecl, TheCall.get()))
3009 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00003010
Douglas Gregor15fc9562009-09-12 00:22:50 +00003011 if (unsigned BuiltinID = FDecl->getBuiltinID())
Anders Carlssonbc4c1072009-08-16 01:56:34 +00003012 return CheckBuiltinFunctionCall(BuiltinID, TheCall.take());
3013 } else if (NDecl) {
3014 if (CheckBlockCall(NDecl, TheCall.get()))
3015 return ExprError();
3016 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +00003017
Anders Carlssonf8984012009-08-16 03:06:32 +00003018 return MaybeBindToTemporary(TheCall.take());
Chris Lattnere168f762006-11-10 05:29:30 +00003019}
3020
Sebastian Redlb5d49352009-01-19 22:31:54 +00003021Action::OwningExprResult
3022Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, TypeTy *Ty,
3023 SourceLocation RParenLoc, ExprArg InitExpr) {
Steve Naroff83895f72007-09-16 03:34:24 +00003024 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00003025 //FIXME: Preserve type source info.
3026 QualType literalType = GetTypeFromParser(Ty);
Steve Naroff57eb2c52007-07-19 21:32:11 +00003027 // FIXME: put back this assert when initializers are worked out.
Steve Naroff83895f72007-09-16 03:34:24 +00003028 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
Sebastian Redlb5d49352009-01-19 22:31:54 +00003029 Expr *literalExpr = static_cast<Expr*>(InitExpr.get());
Anders Carlsson2c1ec6d2007-12-05 07:24:19 +00003030
Eli Friedman37a186d2008-05-20 05:22:08 +00003031 if (literalType->isArrayType()) {
Chris Lattner7adf0762008-08-04 07:31:14 +00003032 if (literalType->isVariableArrayType())
Sebastian Redlb5d49352009-01-19 22:31:54 +00003033 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
3034 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor1c37d9e2009-05-21 23:48:18 +00003035 } else if (!literalType->isDependentType() &&
3036 RequireCompleteType(LParenLoc, literalType,
Anders Carlssond624e162009-08-26 23:45:07 +00003037 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00003038 << SourceRange(LParenLoc,
Anders Carlssond624e162009-08-26 23:45:07 +00003039 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003040 return ExprError();
Eli Friedman37a186d2008-05-20 05:22:08 +00003041
Sebastian Redlb5d49352009-01-19 22:31:54 +00003042 if (CheckInitializerTypes(literalExpr, literalType, LParenLoc,
Douglas Gregor5fb53972009-01-14 15:45:31 +00003043 DeclarationName(), /*FIXME:DirectInit=*/false))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003044 return ExprError();
Steve Naroffd32419d2008-01-14 18:19:28 +00003045
Chris Lattner79413952008-12-04 23:50:19 +00003046 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffd32419d2008-01-14 18:19:28 +00003047 if (isFileScope) { // 6.5.2.5p3
Steve Naroff98f72032008-01-10 22:15:12 +00003048 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003049 return ExprError();
Steve Naroff98f72032008-01-10 22:15:12 +00003050 }
Sebastian Redlb5d49352009-01-19 22:31:54 +00003051 InitExpr.release();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003052 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, literalType,
Steve Narofff6009ed2009-01-21 00:14:39 +00003053 literalExpr, isFileScope));
Steve Narofffbd09832007-07-19 01:06:55 +00003054}
3055
Sebastian Redlb5d49352009-01-19 22:31:54 +00003056Action::OwningExprResult
3057Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003058 SourceLocation RBraceLoc) {
3059 unsigned NumInit = initlist.size();
3060 Expr **InitList = reinterpret_cast<Expr**>(initlist.release());
Anders Carlsson4692db02007-08-31 04:56:16 +00003061
Steve Naroff30d242c2007-09-15 18:49:24 +00003062 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump4e1f26a2009-02-19 03:04:26 +00003063 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003064
Mike Stump4e1f26a2009-02-19 03:04:26 +00003065 InitListExpr *E = new (Context) InitListExpr(LBraceLoc, InitList, NumInit,
Douglas Gregor347f7ea2009-01-28 21:54:33 +00003066 RBraceLoc);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003067 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003068 return Owned(E);
Steve Narofffbd09832007-07-19 01:06:55 +00003069}
3070
Anders Carlsson094c4592009-10-18 18:12:03 +00003071static CastExpr::CastKind getScalarCastKind(ASTContext &Context,
3072 QualType SrcTy, QualType DestTy) {
3073 if (Context.getCanonicalType(SrcTy).getUnqualifiedType() ==
3074 Context.getCanonicalType(DestTy).getUnqualifiedType())
3075 return CastExpr::CK_NoOp;
3076
3077 if (SrcTy->hasPointerRepresentation()) {
3078 if (DestTy->hasPointerRepresentation())
3079 return CastExpr::CK_BitCast;
3080 if (DestTy->isIntegerType())
3081 return CastExpr::CK_PointerToIntegral;
3082 }
3083
3084 if (SrcTy->isIntegerType()) {
3085 if (DestTy->isIntegerType())
3086 return CastExpr::CK_IntegralCast;
3087 if (DestTy->hasPointerRepresentation())
3088 return CastExpr::CK_IntegralToPointer;
3089 if (DestTy->isRealFloatingType())
3090 return CastExpr::CK_IntegralToFloating;
3091 }
3092
3093 if (SrcTy->isRealFloatingType()) {
3094 if (DestTy->isRealFloatingType())
3095 return CastExpr::CK_FloatingCast;
3096 if (DestTy->isIntegerType())
3097 return CastExpr::CK_FloatingToIntegral;
3098 }
3099
3100 // FIXME: Assert here.
3101 // assert(false && "Unhandled cast combination!");
3102 return CastExpr::CK_Unknown;
3103}
3104
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003105/// CheckCastTypes - Check type constraints for casting between types.
Sebastian Redl955a0672009-07-29 13:50:23 +00003106bool Sema::CheckCastTypes(SourceRange TyR, QualType castType, Expr *&castExpr,
Mike Stump11289f42009-09-09 15:08:12 +00003107 CastExpr::CastKind& Kind,
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003108 CXXMethodDecl *& ConversionDecl,
3109 bool FunctionalStyle) {
Sebastian Redl9f831db2009-07-25 15:41:38 +00003110 if (getLangOptions().CPlusPlus)
Fariborz Jahanian1cec0c42009-08-26 18:55:36 +00003111 return CXXCheckCStyleCast(TyR, castType, castExpr, Kind, FunctionalStyle,
3112 ConversionDecl);
Sebastian Redl9f831db2009-07-25 15:41:38 +00003113
Eli Friedmanda8d4de2009-08-15 19:02:19 +00003114 DefaultFunctionArrayConversion(castExpr);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003115
3116 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
3117 // type needs to be scalar.
3118 if (castType->isVoidType()) {
3119 // Cast to void allows any expr type.
Anders Carlssonef918ac2009-10-16 02:35:04 +00003120 Kind = CastExpr::CK_ToVoid;
3121 return false;
3122 }
3123
3124 if (!castType->isScalarType() && !castType->isVectorType()) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003125 if (Context.getCanonicalType(castType).getUnqualifiedType() ==
3126 Context.getCanonicalType(castExpr->getType().getUnqualifiedType()) &&
3127 (castType->isStructureType() || castType->isUnionType())) {
3128 // GCC struct/union extension: allow cast to self.
Eli Friedmanba961a92009-03-23 00:24:07 +00003129 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003130 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
3131 << castType << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003132 Kind = CastExpr::CK_NoOp;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003133 return false;
3134 }
3135
3136 if (castType->isUnionType()) {
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003137 // GCC cast to union extension
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003138 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003139 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00003140 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeon39a3ebf2009-01-15 04:51:39 +00003141 Field != FieldEnd; ++Field) {
3142 if (Context.getCanonicalType(Field->getType()).getUnqualifiedType() ==
3143 Context.getCanonicalType(castExpr->getType()).getUnqualifiedType()) {
3144 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
3145 << castExpr->getSourceRange();
3146 break;
3147 }
3148 }
3149 if (Field == FieldEnd)
3150 return Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
3151 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlssonec143772009-08-07 23:22:37 +00003152 Kind = CastExpr::CK_ToUnion;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003153 return false;
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003154 }
Anders Carlsson525b76b2009-10-16 02:48:28 +00003155
3156 // Reject any other conversions to non-scalar types.
3157 return Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
3158 << castType << castExpr->getSourceRange();
3159 }
3160
3161 if (!castExpr->getType()->isScalarType() &&
3162 !castExpr->getType()->isVectorType()) {
Chris Lattner3b054132008-11-19 05:08:23 +00003163 return Diag(castExpr->getLocStart(),
3164 diag::err_typecheck_expect_scalar_operand)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003165 << castExpr->getType() << castExpr->getSourceRange();
Anders Carlsson525b76b2009-10-16 02:48:28 +00003166 }
3167
Anders Carlsson43d70f82009-10-16 05:23:41 +00003168 if (castType->isExtVectorType())
3169 return CheckExtVectorCast(TyR, castType, castExpr, Kind);
3170
Anders Carlsson525b76b2009-10-16 02:48:28 +00003171 if (castType->isVectorType())
3172 return CheckVectorCast(TyR, castType, castExpr->getType(), Kind);
3173 if (castExpr->getType()->isVectorType())
3174 return CheckVectorCast(TyR, castExpr->getType(), castType, Kind);
3175
3176 if (getLangOptions().ObjC1 && isa<ObjCSuperExpr>(castExpr))
Steve Naroffb47acdb2009-04-08 23:52:26 +00003177 return Diag(castExpr->getLocStart(), diag::err_illegal_super_cast) << TyR;
Anders Carlsson525b76b2009-10-16 02:48:28 +00003178
Anders Carlsson43d70f82009-10-16 05:23:41 +00003179 if (isa<ObjCSelectorExpr>(castExpr))
3180 return Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
3181
Anders Carlsson525b76b2009-10-16 02:48:28 +00003182 if (!castType->isArithmeticType()) {
Eli Friedmanf4e3ad62009-05-01 02:23:58 +00003183 QualType castExprType = castExpr->getType();
3184 if (!castExprType->isIntegralType() && castExprType->isArithmeticType())
3185 return Diag(castExpr->getLocStart(),
3186 diag::err_cast_pointer_from_non_pointer_int)
3187 << castExprType << castExpr->getSourceRange();
3188 } else if (!castExpr->getType()->isArithmeticType()) {
3189 if (!castType->isIntegralType() && castType->isArithmeticType())
3190 return Diag(castExpr->getLocStart(),
3191 diag::err_cast_pointer_to_non_pointer_int)
3192 << castType << castExpr->getSourceRange();
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003193 }
Anders Carlsson094c4592009-10-18 18:12:03 +00003194
3195 Kind = getScalarCastKind(Context, castExpr->getType(), castType);
Argyrios Kyrtzidis2ade3902008-08-16 20:27:34 +00003196 return false;
3197}
3198
Anders Carlsson525b76b2009-10-16 02:48:28 +00003199bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
3200 CastExpr::CastKind &Kind) {
Anders Carlssonde71adf2007-11-27 05:51:55 +00003201 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00003202
Anders Carlssonde71adf2007-11-27 05:51:55 +00003203 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner37e05872008-03-05 18:54:05 +00003204 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssonde71adf2007-11-27 05:51:55 +00003205 return Diag(R.getBegin(),
Mike Stump4e1f26a2009-02-19 03:04:26 +00003206 Ty->isVectorType() ?
Anders Carlssonde71adf2007-11-27 05:51:55 +00003207 diag::err_invalid_conversion_between_vectors :
Chris Lattner3b054132008-11-19 05:08:23 +00003208 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003209 << VectorTy << Ty << R;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003210 } else
3211 return Diag(R.getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +00003212 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner1e5665e2008-11-24 06:25:27 +00003213 << VectorTy << Ty << R;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003214
Anders Carlsson525b76b2009-10-16 02:48:28 +00003215 Kind = CastExpr::CK_BitCast;
Anders Carlssonde71adf2007-11-27 05:51:55 +00003216 return false;
3217}
3218
Anders Carlsson43d70f82009-10-16 05:23:41 +00003219bool Sema::CheckExtVectorCast(SourceRange R, QualType DestTy, Expr *&CastExpr,
3220 CastExpr::CastKind &Kind) {
Nate Begemanc69b7402009-06-26 00:50:28 +00003221 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Anders Carlsson43d70f82009-10-16 05:23:41 +00003222
3223 QualType SrcTy = CastExpr->getType();
3224
Nate Begemanc8961a42009-06-27 22:05:55 +00003225 // If SrcTy is a VectorType, the total size must match to explicitly cast to
3226 // an ExtVectorType.
Nate Begemanc69b7402009-06-26 00:50:28 +00003227 if (SrcTy->isVectorType()) {
3228 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
3229 return Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
3230 << DestTy << SrcTy << R;
Anders Carlsson43d70f82009-10-16 05:23:41 +00003231 Kind = CastExpr::CK_BitCast;
Nate Begemanc69b7402009-06-26 00:50:28 +00003232 return false;
3233 }
3234
Nate Begemanbd956c42009-06-28 02:36:38 +00003235 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begemanc69b7402009-06-26 00:50:28 +00003236 // conversion will take place first from scalar to elt type, and then
3237 // splat from elt type to vector.
Nate Begemanbd956c42009-06-28 02:36:38 +00003238 if (SrcTy->isPointerType())
3239 return Diag(R.getBegin(),
3240 diag::err_invalid_conversion_between_vector_and_scalar)
3241 << DestTy << SrcTy << R;
Eli Friedman06ed2a52009-10-20 08:27:19 +00003242
3243 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
3244 ImpCastExprToType(CastExpr, DestElemTy,
3245 getScalarCastKind(Context, SrcTy, DestElemTy));
Anders Carlsson43d70f82009-10-16 05:23:41 +00003246
3247 Kind = CastExpr::CK_VectorSplat;
Nate Begemanc69b7402009-06-26 00:50:28 +00003248 return false;
3249}
3250
Sebastian Redlb5d49352009-01-19 22:31:54 +00003251Action::OwningExprResult
Nate Begeman5ec4b312009-08-10 23:49:36 +00003252Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, TypeTy *Ty,
Sebastian Redlb5d49352009-01-19 22:31:54 +00003253 SourceLocation RParenLoc, ExprArg Op) {
Anders Carlssonf10e4142009-08-07 22:21:05 +00003254 CastExpr::CastKind Kind = CastExpr::CK_Unknown;
Mike Stump11289f42009-09-09 15:08:12 +00003255
Sebastian Redlb5d49352009-01-19 22:31:54 +00003256 assert((Ty != 0) && (Op.get() != 0) &&
3257 "ActOnCastExpr(): missing type or expr");
Steve Naroff1a2cf6b2007-07-16 23:25:18 +00003258
Nate Begeman5ec4b312009-08-10 23:49:36 +00003259 Expr *castExpr = (Expr *)Op.get();
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00003260 //FIXME: Preserve type source info.
3261 QualType castType = GetTypeFromParser(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003262
Nate Begeman5ec4b312009-08-10 23:49:36 +00003263 // If the Expr being casted is a ParenListExpr, handle it specially.
3264 if (isa<ParenListExpr>(castExpr))
3265 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, move(Op),castType);
Anders Carlssone9766d52009-09-09 21:33:21 +00003266 CXXMethodDecl *Method = 0;
Mike Stump11289f42009-09-09 15:08:12 +00003267 if (CheckCastTypes(SourceRange(LParenLoc, RParenLoc), castType, castExpr,
Anders Carlssone9766d52009-09-09 21:33:21 +00003268 Kind, Method))
Sebastian Redlb5d49352009-01-19 22:31:54 +00003269 return ExprError();
Anders Carlssone9766d52009-09-09 21:33:21 +00003270
3271 if (Method) {
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003272 OwningExprResult CastArg = BuildCXXCastArgument(LParenLoc, castType, Kind,
Anders Carlssone9766d52009-09-09 21:33:21 +00003273 Method, move(Op));
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003274
Anders Carlssone9766d52009-09-09 21:33:21 +00003275 if (CastArg.isInvalid())
3276 return ExprError();
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00003277
Anders Carlssone9766d52009-09-09 21:33:21 +00003278 castExpr = CastArg.takeAs<Expr>();
3279 } else {
3280 Op.release();
Fariborz Jahanian3df87672009-08-29 19:15:16 +00003281 }
Mike Stump11289f42009-09-09 15:08:12 +00003282
Sebastian Redl9f831db2009-07-25 15:41:38 +00003283 return Owned(new (Context) CStyleCastExpr(castType.getNonReferenceType(),
Mike Stump11289f42009-09-09 15:08:12 +00003284 Kind, castExpr, castType,
Anders Carlssonf10e4142009-08-07 22:21:05 +00003285 LParenLoc, RParenLoc));
Chris Lattnere168f762006-11-10 05:29:30 +00003286}
3287
Nate Begeman5ec4b312009-08-10 23:49:36 +00003288/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
3289/// of comma binary operators.
3290Action::OwningExprResult
3291Sema::MaybeConvertParenListExprToParenExpr(Scope *S, ExprArg EA) {
3292 Expr *expr = EA.takeAs<Expr>();
3293 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
3294 if (!E)
3295 return Owned(expr);
Mike Stump11289f42009-09-09 15:08:12 +00003296
Nate Begeman5ec4b312009-08-10 23:49:36 +00003297 OwningExprResult Result(*this, E->getExpr(0));
Mike Stump11289f42009-09-09 15:08:12 +00003298
Nate Begeman5ec4b312009-08-10 23:49:36 +00003299 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
3300 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, move(Result),
3301 Owned(E->getExpr(i)));
Mike Stump11289f42009-09-09 15:08:12 +00003302
Nate Begeman5ec4b312009-08-10 23:49:36 +00003303 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), move(Result));
3304}
3305
3306Action::OwningExprResult
3307Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
3308 SourceLocation RParenLoc, ExprArg Op,
3309 QualType Ty) {
3310 ParenListExpr *PE = (ParenListExpr *)Op.get();
Mike Stump11289f42009-09-09 15:08:12 +00003311
3312 // If this is an altivec initializer, '(' type ')' '(' init, ..., init ')'
Nate Begeman5ec4b312009-08-10 23:49:36 +00003313 // then handle it as such.
3314 if (getLangOptions().AltiVec && Ty->isVectorType()) {
3315 if (PE->getNumExprs() == 0) {
3316 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
3317 return ExprError();
3318 }
3319
3320 llvm::SmallVector<Expr *, 8> initExprs;
3321 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
3322 initExprs.push_back(PE->getExpr(i));
3323
3324 // FIXME: This means that pretty-printing the final AST will produce curly
3325 // braces instead of the original commas.
3326 Op.release();
Mike Stump11289f42009-09-09 15:08:12 +00003327 InitListExpr *E = new (Context) InitListExpr(LParenLoc, &initExprs[0],
Nate Begeman5ec4b312009-08-10 23:49:36 +00003328 initExprs.size(), RParenLoc);
3329 E->setType(Ty);
Mike Stump11289f42009-09-09 15:08:12 +00003330 return ActOnCompoundLiteral(LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,
Nate Begeman5ec4b312009-08-10 23:49:36 +00003331 Owned(E));
3332 } else {
Mike Stump11289f42009-09-09 15:08:12 +00003333 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman5ec4b312009-08-10 23:49:36 +00003334 // sequence of BinOp comma operators.
3335 Op = MaybeConvertParenListExprToParenExpr(S, move(Op));
3336 return ActOnCastExpr(S, LParenLoc, Ty.getAsOpaquePtr(), RParenLoc,move(Op));
3337 }
3338}
3339
3340Action::OwningExprResult Sema::ActOnParenListExpr(SourceLocation L,
3341 SourceLocation R,
3342 MultiExprArg Val) {
3343 unsigned nexprs = Val.size();
3344 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
3345 assert((exprs != 0) && "ActOnParenListExpr() missing expr list");
3346 Expr *expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
3347 return Owned(expr);
3348}
3349
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003350/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
3351/// In that case, lhs = cond.
Chris Lattner2c486602009-02-18 04:38:20 +00003352/// C99 6.5.15
3353QualType Sema::CheckConditionalOperands(Expr *&Cond, Expr *&LHS, Expr *&RHS,
3354 SourceLocation QuestionLoc) {
Sebastian Redl1a99f442009-04-16 17:51:27 +00003355 // C++ is sufficiently different to merit its own checker.
3356 if (getLangOptions().CPlusPlus)
3357 return CXXCheckConditionalOperands(Cond, LHS, RHS, QuestionLoc);
3358
John McCall1fa36b72009-11-05 09:23:39 +00003359 CheckSignCompare(LHS, RHS, QuestionLoc, diag::warn_mixed_sign_conditional);
3360
Chris Lattner432cff52009-02-18 04:28:32 +00003361 UsualUnaryConversions(Cond);
3362 UsualUnaryConversions(LHS);
3363 UsualUnaryConversions(RHS);
3364 QualType CondTy = Cond->getType();
3365 QualType LHSTy = LHS->getType();
3366 QualType RHSTy = RHS->getType();
Steve Naroff31090012007-07-16 21:54:35 +00003367
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003368 // first, check the condition.
Sebastian Redl1a99f442009-04-16 17:51:27 +00003369 if (!CondTy->isScalarType()) { // C99 6.5.15p2
3370 Diag(Cond->getLocStart(), diag::err_typecheck_cond_expect_scalar)
3371 << CondTy;
3372 return QualType();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003373 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003374
Chris Lattnere2949f42008-01-06 22:42:25 +00003375 // Now check the two expressions.
Nate Begeman5ec4b312009-08-10 23:49:36 +00003376 if (LHSTy->isVectorType() || RHSTy->isVectorType())
3377 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor4619e432008-12-05 23:32:09 +00003378
Chris Lattnere2949f42008-01-06 22:42:25 +00003379 // If both operands have arithmetic type, do the usual arithmetic conversions
3380 // to find a common type: C99 6.5.15p3,5.
Chris Lattner432cff52009-02-18 04:28:32 +00003381 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
3382 UsualArithmeticConversions(LHS, RHS);
3383 return LHS->getType();
Steve Naroffdbd9e892007-07-17 00:58:39 +00003384 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003385
Chris Lattnere2949f42008-01-06 22:42:25 +00003386 // If both operands are the same structure or union type, the result is that
3387 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003388 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
3389 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattner2ab40a62007-11-26 01:40:58 +00003390 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00003391 // "If both the operands have structure or union type, the result has
Chris Lattnere2949f42008-01-06 22:42:25 +00003392 // that type." This implies that CV qualifiers are dropped.
Chris Lattner432cff52009-02-18 04:28:32 +00003393 return LHSTy.getUnqualifiedType();
Eli Friedmanba961a92009-03-23 00:24:07 +00003394 // FIXME: Type of conditional expression must be complete in C mode.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003395 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003396
Chris Lattnere2949f42008-01-06 22:42:25 +00003397 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffbf1516c2008-05-12 21:44:38 +00003398 // The following || allows only one side to be void (a GCC-ism).
Chris Lattner432cff52009-02-18 04:28:32 +00003399 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
3400 if (!LHSTy->isVoidType())
3401 Diag(RHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3402 << RHS->getSourceRange();
3403 if (!RHSTy->isVoidType())
3404 Diag(LHS->getLocStart(), diag::ext_typecheck_cond_one_void)
3405 << LHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003406 ImpCastExprToType(LHS, Context.VoidTy, CastExpr::CK_ToVoid);
3407 ImpCastExprToType(RHS, Context.VoidTy, CastExpr::CK_ToVoid);
Eli Friedman3e1852f2008-06-04 19:47:51 +00003408 return Context.VoidTy;
Steve Naroffbf1516c2008-05-12 21:44:38 +00003409 }
Steve Naroff039ad3c2008-01-08 01:11:38 +00003410 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
3411 // the type of the other operand."
Steve Naroff6b712a72009-07-14 18:25:06 +00003412 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003413 RHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003414 // promote the null to a pointer.
3415 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_Unknown);
Chris Lattner432cff52009-02-18 04:28:32 +00003416 return LHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003417 }
Steve Naroff6b712a72009-07-14 18:25:06 +00003418 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00003419 LHS->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003420 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_Unknown);
Chris Lattner432cff52009-02-18 04:28:32 +00003421 return RHSTy;
Steve Naroff039ad3c2008-01-08 01:11:38 +00003422 }
David Chisnall9f57c292009-08-17 16:35:33 +00003423 // Handle things like Class and struct objc_class*. Here we case the result
3424 // to the pseudo-builtin, because that will be implicitly cast back to the
3425 // redefinition type if an attempt is made to access its fields.
3426 if (LHSTy->isObjCClassType() &&
3427 (RHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003428 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00003429 return LHSTy;
3430 }
3431 if (RHSTy->isObjCClassType() &&
3432 (LHSTy.getDesugaredType() == Context.ObjCClassRedefinitionType)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003433 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00003434 return RHSTy;
3435 }
3436 // And the same for struct objc_object* / id
3437 if (LHSTy->isObjCIdType() &&
3438 (RHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003439 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00003440 return LHSTy;
3441 }
3442 if (RHSTy->isObjCIdType() &&
3443 (LHSTy.getDesugaredType() == Context.ObjCIdRedefinitionType)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00003444 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_BitCast);
David Chisnall9f57c292009-08-17 16:35:33 +00003445 return RHSTy;
3446 }
Steve Naroff05efa972009-07-01 14:36:47 +00003447 // Handle block pointer types.
3448 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
3449 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
3450 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
3451 QualType destType = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003452 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
3453 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003454 return destType;
3455 }
3456 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3457 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3458 return QualType();
Mike Stump1b821b42009-05-07 03:14:14 +00003459 }
Steve Naroff05efa972009-07-01 14:36:47 +00003460 // We have 2 block pointer types.
3461 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3462 // Two identical block pointer types are always compatible.
Mike Stump1b821b42009-05-07 03:14:14 +00003463 return LHSTy;
3464 }
Steve Naroff05efa972009-07-01 14:36:47 +00003465 // The block pointer types aren't identical, continue checking.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003466 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
3467 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003468
Steve Naroff05efa972009-07-01 14:36:47 +00003469 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3470 rhptee.getUnqualifiedType())) {
Mike Stump1b821b42009-05-07 03:14:14 +00003471 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3472 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3473 // In this situation, we assume void* type. No especially good
3474 // reason, but this is what gcc does, and we do have to pick
3475 // to get a consistent AST.
3476 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003477 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3478 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Mike Stump1b821b42009-05-07 03:14:14 +00003479 return incompatTy;
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003480 }
Steve Naroff05efa972009-07-01 14:36:47 +00003481 // The block pointer types are compatible.
Eli Friedman06ed2a52009-10-20 08:27:19 +00003482 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3483 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroffea4c7802009-04-08 17:05:15 +00003484 return LHSTy;
3485 }
Steve Naroff05efa972009-07-01 14:36:47 +00003486 // Check constraints for Objective-C object pointers types.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003487 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +00003488
Steve Naroff05efa972009-07-01 14:36:47 +00003489 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3490 // Two identical object pointer types are always compatible.
3491 return LHSTy;
3492 }
John McCall9dd450b2009-09-21 23:43:11 +00003493 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
3494 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
Steve Naroff05efa972009-07-01 14:36:47 +00003495 QualType compositeType = LHSTy;
Mike Stump11289f42009-09-09 15:08:12 +00003496
Steve Naroff05efa972009-07-01 14:36:47 +00003497 // If both operands are interfaces and either operand can be
3498 // assigned to the other, use that type as the composite
3499 // type. This allows
3500 // xxx ? (A*) a : (B*) b
3501 // where B is a subclass of A.
3502 //
3503 // Additionally, as for assignment, if either type is 'id'
3504 // allow silent coercion. Finally, if the types are
3505 // incompatible then make sure to use 'id' as the composite
3506 // type so the result is acceptable for sending messages to.
3507
3508 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
3509 // It could return the composite type.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003510 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Fariborz Jahaniana83c0162009-08-22 22:27:17 +00003511 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003512 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
Fariborz Jahaniana83c0162009-08-22 22:27:17 +00003513 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
Mike Stump11289f42009-09-09 15:08:12 +00003514 } else if ((LHSTy->isObjCQualifiedIdType() ||
Steve Naroff7cae42b2009-07-10 23:34:53 +00003515 RHSTy->isObjCQualifiedIdType()) &&
Steve Naroff8e6aee52009-07-23 01:01:38 +00003516 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
Mike Stump11289f42009-09-09 15:08:12 +00003517 // Need to handle "id<xx>" explicitly.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003518 // GCC allows qualified id and any Objective-C type to devolve to
3519 // id. Currently localizing to here until clear this should be
3520 // part of ObjCQualifiedIdTypesAreCompatible.
3521 compositeType = Context.getObjCIdType();
3522 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
Steve Naroff05efa972009-07-01 14:36:47 +00003523 compositeType = Context.getObjCIdType();
Fariborz Jahanianef8b8ce2009-10-27 23:02:38 +00003524 } else if (!(compositeType =
3525 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())
3526 ;
3527 else {
Steve Naroff05efa972009-07-01 14:36:47 +00003528 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
3529 << LHSTy << RHSTy
3530 << LHS->getSourceRange() << RHS->getSourceRange();
3531 QualType incompatTy = Context.getObjCIdType();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003532 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3533 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003534 return incompatTy;
3535 }
3536 // The object pointer types are compatible.
Eli Friedman06ed2a52009-10-20 08:27:19 +00003537 ImpCastExprToType(LHS, compositeType, CastExpr::CK_BitCast);
3538 ImpCastExprToType(RHS, compositeType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003539 return compositeType;
3540 }
Steve Naroff85d97152009-07-29 15:09:39 +00003541 // Check Objective-C object pointer types and 'void *'
3542 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003543 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
John McCall9dd450b2009-09-21 23:43:11 +00003544 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00003545 QualType destPointee
3546 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff85d97152009-07-29 15:09:39 +00003547 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003548 // Add qualifiers if necessary.
3549 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3550 // Promote to void*.
3551 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff85d97152009-07-29 15:09:39 +00003552 return destType;
3553 }
3554 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
John McCall9dd450b2009-09-21 23:43:11 +00003555 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003556 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
John McCall8ccfcb52009-09-24 19:53:00 +00003557 QualType destPointee
3558 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff85d97152009-07-29 15:09:39 +00003559 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003560 // Add qualifiers if necessary.
3561 ImpCastExprToType(RHS, destType, CastExpr::CK_NoOp);
3562 // Promote to void*.
3563 ImpCastExprToType(LHS, destType, CastExpr::CK_BitCast);
Steve Naroff85d97152009-07-29 15:09:39 +00003564 return destType;
3565 }
Steve Naroff05efa972009-07-01 14:36:47 +00003566 // Check constraints for C object pointers types (C99 6.5.15p3,6).
3567 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
3568 // get the "pointed to" types
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003569 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
3570 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff05efa972009-07-01 14:36:47 +00003571
3572 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
3573 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
3574 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall8ccfcb52009-09-24 19:53:00 +00003575 QualType destPointee
3576 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003577 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003578 // Add qualifiers if necessary.
3579 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3580 // Promote to void*.
3581 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003582 return destType;
3583 }
3584 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall8ccfcb52009-09-24 19:53:00 +00003585 QualType destPointee
3586 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff05efa972009-07-01 14:36:47 +00003587 QualType destType = Context.getPointerType(destPointee);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003588 // Add qualifiers if necessary.
3589 ImpCastExprToType(LHS, destType, CastExpr::CK_NoOp);
3590 // Promote to void*.
3591 ImpCastExprToType(RHS, destType, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003592 return destType;
3593 }
3594
3595 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
3596 // Two identical pointer types are always compatible.
3597 return LHSTy;
3598 }
3599 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
3600 rhptee.getUnqualifiedType())) {
3601 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
3602 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
3603 // In this situation, we assume void* type. No especially good
3604 // reason, but this is what gcc does, and we do have to pick
3605 // to get a consistent AST.
3606 QualType incompatTy = Context.getPointerType(Context.VoidTy);
Eli Friedman06ed2a52009-10-20 08:27:19 +00003607 ImpCastExprToType(LHS, incompatTy, CastExpr::CK_BitCast);
3608 ImpCastExprToType(RHS, incompatTy, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003609 return incompatTy;
3610 }
3611 // The pointer types are compatible.
3612 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
3613 // differently qualified versions of compatible types, the result type is
3614 // a pointer to an appropriately qualified version of the *composite*
3615 // type.
3616 // FIXME: Need to calculate the composite type.
3617 // FIXME: Need to add qualifiers
Eli Friedman06ed2a52009-10-20 08:27:19 +00003618 ImpCastExprToType(LHS, LHSTy, CastExpr::CK_BitCast);
3619 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_BitCast);
Steve Naroff05efa972009-07-01 14:36:47 +00003620 return LHSTy;
3621 }
Mike Stump11289f42009-09-09 15:08:12 +00003622
Steve Naroff05efa972009-07-01 14:36:47 +00003623 // GCC compatibility: soften pointer/integer mismatch.
3624 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
3625 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3626 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003627 ImpCastExprToType(LHS, RHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff05efa972009-07-01 14:36:47 +00003628 return RHSTy;
3629 }
3630 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
3631 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
3632 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00003633 ImpCastExprToType(RHS, LHSTy, CastExpr::CK_IntegralToPointer);
Steve Naroff05efa972009-07-01 14:36:47 +00003634 return LHSTy;
3635 }
Daniel Dunbar484603b2008-09-11 23:12:46 +00003636
Chris Lattnere2949f42008-01-06 22:42:25 +00003637 // Otherwise, the operands are not compatible.
Chris Lattner432cff52009-02-18 04:28:32 +00003638 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
3639 << LHSTy << RHSTy << LHS->getSourceRange() << RHS->getSourceRange();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00003640 return QualType();
Steve Narofff8a28c52007-05-15 20:29:32 +00003641}
3642
Steve Naroff83895f72007-09-16 03:34:24 +00003643/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattnere168f762006-11-10 05:29:30 +00003644/// in the case of a the GNU conditional expr extension.
Sebastian Redlb5d49352009-01-19 22:31:54 +00003645Action::OwningExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
3646 SourceLocation ColonLoc,
3647 ExprArg Cond, ExprArg LHS,
3648 ExprArg RHS) {
3649 Expr *CondExpr = (Expr *) Cond.get();
3650 Expr *LHSExpr = (Expr *) LHS.get(), *RHSExpr = (Expr *) RHS.get();
Chris Lattner2ab40a62007-11-26 01:40:58 +00003651
3652 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
3653 // was the condition.
3654 bool isLHSNull = LHSExpr == 0;
3655 if (isLHSNull)
3656 LHSExpr = CondExpr;
Sebastian Redlb5d49352009-01-19 22:31:54 +00003657
3658 QualType result = CheckConditionalOperands(CondExpr, LHSExpr,
Chris Lattnerdaaa9f22007-07-16 21:39:03 +00003659 RHSExpr, QuestionLoc);
Steve Narofff8a28c52007-05-15 20:29:32 +00003660 if (result.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00003661 return ExprError();
3662
3663 Cond.release();
3664 LHS.release();
3665 RHS.release();
Douglas Gregor7e112b02009-08-26 14:37:04 +00003666 return Owned(new (Context) ConditionalOperator(CondExpr, QuestionLoc,
Steve Narofff6009ed2009-01-21 00:14:39 +00003667 isLHSNull ? 0 : LHSExpr,
Douglas Gregor7e112b02009-08-26 14:37:04 +00003668 ColonLoc, RHSExpr, result));
Chris Lattnere168f762006-11-10 05:29:30 +00003669}
3670
Steve Naroff3f597292007-05-11 22:18:03 +00003671// CheckPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump4e1f26a2009-02-19 03:04:26 +00003672// being closely modeled after the C99 spec:-). The odd characteristic of this
Steve Naroff3f597292007-05-11 22:18:03 +00003673// routine is it effectively iqnores the qualifiers on the top level pointee.
3674// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
3675// FIXME: add a couple examples in this comment.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003676Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00003677Sema::CheckPointerTypesForAssignment(QualType lhsType, QualType rhsType) {
Steve Naroff3f597292007-05-11 22:18:03 +00003678 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003679
David Chisnall9f57c292009-08-17 16:35:33 +00003680 if ((lhsType->isObjCClassType() &&
3681 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3682 (rhsType->isObjCClassType() &&
3683 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3684 return Compatible;
3685 }
3686
Steve Naroff1f4d7272007-05-11 04:00:31 +00003687 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003688 lhptee = lhsType->getAs<PointerType>()->getPointeeType();
3689 rhptee = rhsType->getAs<PointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003690
Steve Naroff1f4d7272007-05-11 04:00:31 +00003691 // make sure we operate on the canonical type
Chris Lattner574dee62008-07-26 22:17:49 +00003692 lhptee = Context.getCanonicalType(lhptee);
3693 rhptee = Context.getCanonicalType(rhptee);
Steve Naroff1f4d7272007-05-11 04:00:31 +00003694
Chris Lattner9bad62c2008-01-04 18:04:52 +00003695 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003696
3697 // C99 6.5.16.1p1: This following citation is common to constraints
3698 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
3699 // qualifiers of the type *pointed to* by the right;
Fariborz Jahanianece85822009-02-17 18:27:45 +00003700 // FIXME: Handle ExtQualType
Douglas Gregor9a657932008-10-21 23:43:52 +00003701 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
Chris Lattner9bad62c2008-01-04 18:04:52 +00003702 ConvTy = CompatiblePointerDiscardsQualifiers;
Steve Naroff3f597292007-05-11 22:18:03 +00003703
Mike Stump4e1f26a2009-02-19 03:04:26 +00003704 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
3705 // incomplete type and the other is a pointer to a qualified or unqualified
Steve Naroff3f597292007-05-11 22:18:03 +00003706 // version of void...
Chris Lattner0a788432008-01-03 22:56:36 +00003707 if (lhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003708 if (rhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00003709 return ConvTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003710
Chris Lattner0a788432008-01-03 22:56:36 +00003711 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003712 assert(rhptee->isFunctionType());
3713 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00003714 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003715
Chris Lattner0a788432008-01-03 22:56:36 +00003716 if (rhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003717 if (lhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00003718 return ConvTy;
Chris Lattner0a788432008-01-03 22:56:36 +00003719
3720 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00003721 assert(lhptee->isFunctionType());
3722 return FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00003723 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00003724 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Steve Naroff3f597292007-05-11 22:18:03 +00003725 // unqualified versions of compatible types, ...
Eli Friedman80160bd2009-03-22 23:59:44 +00003726 lhptee = lhptee.getUnqualifiedType();
3727 rhptee = rhptee.getUnqualifiedType();
3728 if (!Context.typesAreCompatible(lhptee, rhptee)) {
3729 // Check if the pointee types are compatible ignoring the sign.
3730 // We explicitly check for char so that we catch "char" vs
3731 // "unsigned char" on systems where "char" is unsigned.
Chris Lattnerec3a1562009-10-17 20:33:28 +00003732 if (lhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003733 lhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00003734 else if (lhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003735 lhptee = Context.getCorrespondingUnsignedType(lhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00003736
3737 if (rhptee->isCharType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003738 rhptee = Context.UnsignedCharTy;
Chris Lattnerec3a1562009-10-17 20:33:28 +00003739 else if (rhptee->isSignedIntegerType())
Eli Friedman80160bd2009-03-22 23:59:44 +00003740 rhptee = Context.getCorrespondingUnsignedType(rhptee);
Chris Lattnerec3a1562009-10-17 20:33:28 +00003741
Eli Friedman80160bd2009-03-22 23:59:44 +00003742 if (lhptee == rhptee) {
3743 // Types are compatible ignoring the sign. Qualifier incompatibility
3744 // takes priority over sign incompatibility because the sign
3745 // warning can be disabled.
3746 if (ConvTy != Compatible)
3747 return ConvTy;
3748 return IncompatiblePointerSign;
3749 }
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00003750
3751 // If we are a multi-level pointer, it's possible that our issue is simply
3752 // one of qualification - e.g. char ** -> const char ** is not allowed. If
3753 // the eventual target type is the same and the pointers have the same
3754 // level of indirection, this must be the issue.
3755 if (lhptee->isPointerType() && rhptee->isPointerType()) {
3756 do {
3757 lhptee = lhptee->getAs<PointerType>()->getPointeeType();
3758 rhptee = rhptee->getAs<PointerType>()->getPointeeType();
3759
3760 lhptee = Context.getCanonicalType(lhptee);
3761 rhptee = Context.getCanonicalType(rhptee);
3762 } while (lhptee->isPointerType() && rhptee->isPointerType());
3763
3764 if (lhptee.getUnqualifiedType() == rhptee.getUnqualifiedType())
3765 return IncompatibleMultiPointerQualifiers;
3766 }
3767
Eli Friedman80160bd2009-03-22 23:59:44 +00003768 // General pointer incompatibility takes priority over qualifiers.
Mike Stump11289f42009-09-09 15:08:12 +00003769 return IncompatiblePointer;
Eli Friedman80160bd2009-03-22 23:59:44 +00003770 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00003771 return ConvTy;
Steve Naroff1f4d7272007-05-11 04:00:31 +00003772}
3773
Steve Naroff081c7422008-09-04 15:10:53 +00003774/// CheckBlockPointerTypesForAssignment - This routine determines whether two
3775/// block pointer types are compatible or whether a block and normal pointer
3776/// are compatible. It is more restrict than comparing two function pointer
3777// types.
Mike Stump4e1f26a2009-02-19 03:04:26 +00003778Sema::AssignConvertType
3779Sema::CheckBlockPointerTypesForAssignment(QualType lhsType,
Steve Naroff081c7422008-09-04 15:10:53 +00003780 QualType rhsType) {
3781 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003782
Steve Naroff081c7422008-09-04 15:10:53 +00003783 // get the "pointed to" type (ignoring qualifiers at the top level)
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003784 lhptee = lhsType->getAs<BlockPointerType>()->getPointeeType();
3785 rhptee = rhsType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00003786
Steve Naroff081c7422008-09-04 15:10:53 +00003787 // make sure we operate on the canonical type
3788 lhptee = Context.getCanonicalType(lhptee);
3789 rhptee = Context.getCanonicalType(rhptee);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003790
Steve Naroff081c7422008-09-04 15:10:53 +00003791 AssignConvertType ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003792
Steve Naroff081c7422008-09-04 15:10:53 +00003793 // For blocks we enforce that qualifiers are identical.
3794 if (lhptee.getCVRQualifiers() != rhptee.getCVRQualifiers())
3795 ConvTy = CompatiblePointerDiscardsQualifiers;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003796
Eli Friedmana6638ca2009-06-08 05:08:54 +00003797 if (!Context.typesAreCompatible(lhptee, rhptee))
Mike Stump4e1f26a2009-02-19 03:04:26 +00003798 return IncompatibleBlockPointer;
Steve Naroff081c7422008-09-04 15:10:53 +00003799 return ConvTy;
3800}
3801
Mike Stump4e1f26a2009-02-19 03:04:26 +00003802/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
3803/// has code to accommodate several GCC extensions when type checking
Steve Naroff17f76e02007-05-03 21:03:48 +00003804/// pointers. Here are some objectionable examples that GCC considers warnings:
3805///
3806/// int a, *pint;
3807/// short *pshort;
3808/// struct foo *pfoo;
3809///
3810/// pint = pshort; // warning: assignment from incompatible pointer type
3811/// a = pint; // warning: assignment makes integer from pointer without a cast
3812/// pint = a; // warning: assignment makes pointer from integer without a cast
3813/// pint = pfoo; // warning: assignment from incompatible pointer type
3814///
3815/// As a result, the code for dealing with pointers is more complex than the
Mike Stump4e1f26a2009-02-19 03:04:26 +00003816/// C99 spec dictates.
Steve Naroff17f76e02007-05-03 21:03:48 +00003817///
Chris Lattner9bad62c2008-01-04 18:04:52 +00003818Sema::AssignConvertType
Steve Naroff98cf3e92007-06-06 18:38:38 +00003819Sema::CheckAssignmentConstraints(QualType lhsType, QualType rhsType) {
Chris Lattnera52c2f22008-01-04 23:18:45 +00003820 // Get canonical types. We're not formatting these types, just comparing
3821 // them.
Chris Lattner574dee62008-07-26 22:17:49 +00003822 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
3823 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedman3360d892008-05-30 18:07:22 +00003824
3825 if (lhsType == rhsType)
Chris Lattnerf5c973d2008-01-07 17:51:46 +00003826 return Compatible; // Common case: fast path an exact match.
Steve Naroff44fd8ff2007-07-24 21:46:40 +00003827
David Chisnall9f57c292009-08-17 16:35:33 +00003828 if ((lhsType->isObjCClassType() &&
3829 (rhsType.getDesugaredType() == Context.ObjCClassRedefinitionType)) ||
3830 (rhsType->isObjCClassType() &&
3831 (lhsType.getDesugaredType() == Context.ObjCClassRedefinitionType))) {
3832 return Compatible;
3833 }
3834
Douglas Gregor6b754842008-10-28 00:22:11 +00003835 // If the left-hand side is a reference type, then we are in a
3836 // (rare!) case where we've allowed the use of references in C,
3837 // e.g., as a parameter type in a built-in function. In this case,
3838 // just make sure that the type referenced is compatible with the
3839 // right-hand side type. The caller is responsible for adjusting
3840 // lhsType so that the resulting expression does not have reference
3841 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003842 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
Douglas Gregor6b754842008-10-28 00:22:11 +00003843 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType))
Anders Carlsson24ebce62007-10-12 23:56:29 +00003844 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00003845 return Incompatible;
Fariborz Jahaniana1e34202007-12-19 17:45:58 +00003846 }
Nate Begemanbd956c42009-06-28 02:36:38 +00003847 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
3848 // to the same ExtVector type.
3849 if (lhsType->isExtVectorType()) {
3850 if (rhsType->isExtVectorType())
3851 return lhsType == rhsType ? Compatible : Incompatible;
3852 if (!rhsType->isVectorType() && rhsType->isArithmeticType())
3853 return Compatible;
3854 }
Mike Stump11289f42009-09-09 15:08:12 +00003855
Nate Begeman191a6b12008-07-14 18:02:46 +00003856 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00003857 // If we are allowing lax vector conversions, and LHS and RHS are both
Mike Stump4e1f26a2009-02-19 03:04:26 +00003858 // vectors, the total size only needs to be the same. This is a bitcast;
Nate Begeman191a6b12008-07-14 18:02:46 +00003859 // no bits are changed but the result type is different.
Chris Lattner881a2122008-01-04 23:32:24 +00003860 if (getLangOptions().LaxVectorConversions &&
3861 lhsType->isVectorType() && rhsType->isVectorType()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00003862 if (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))
Anders Carlssondb5a9b62009-01-30 23:17:46 +00003863 return IncompatibleVectors;
Chris Lattner881a2122008-01-04 23:32:24 +00003864 }
3865 return Incompatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003866 }
Eli Friedman3360d892008-05-30 18:07:22 +00003867
Chris Lattner881a2122008-01-04 23:32:24 +00003868 if (lhsType->isArithmeticType() && rhsType->isArithmeticType())
Steve Naroff98cf3e92007-06-06 18:38:38 +00003869 return Compatible;
Eli Friedman3360d892008-05-30 18:07:22 +00003870
Chris Lattnerec646832008-04-07 06:49:41 +00003871 if (isa<PointerType>(lhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00003872 if (rhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00003873 return IntToPointer;
Eli Friedman3360d892008-05-30 18:07:22 +00003874
Chris Lattnerec646832008-04-07 06:49:41 +00003875 if (isa<PointerType>(rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00003876 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003877
Steve Naroffaccc4882009-07-20 17:56:53 +00003878 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003879 if (isa<ObjCObjectPointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00003880 if (lhsType->isVoidPointerType()) // an exception to the rule.
3881 return Compatible;
3882 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003883 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003884 if (rhsType->getAs<BlockPointerType>()) {
3885 if (lhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00003886 return Compatible;
Steve Naroff32d072c2008-09-29 18:10:17 +00003887
3888 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003889 if (getLangOptions().ObjC1 && lhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00003890 return Compatible;
3891 }
Steve Naroff081c7422008-09-04 15:10:53 +00003892 return Incompatible;
3893 }
3894
3895 if (isa<BlockPointerType>(lhsType)) {
3896 if (rhsType->isIntegerType())
Eli Friedman8163b7a2009-02-25 04:20:42 +00003897 return IntToBlockPointer;
Mike Stump4e1f26a2009-02-19 03:04:26 +00003898
Steve Naroff32d072c2008-09-29 18:10:17 +00003899 // Treat block pointers as objects.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003900 if (getLangOptions().ObjC1 && rhsType->isObjCIdType())
Steve Naroff32d072c2008-09-29 18:10:17 +00003901 return Compatible;
3902
Steve Naroff081c7422008-09-04 15:10:53 +00003903 if (rhsType->isBlockPointerType())
3904 return CheckBlockPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003905
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003906 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff081c7422008-09-04 15:10:53 +00003907 if (RHSPT->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00003908 return Compatible;
Steve Naroff081c7422008-09-04 15:10:53 +00003909 }
Chris Lattnera52c2f22008-01-04 23:18:45 +00003910 return Incompatible;
3911 }
3912
Steve Naroff7cae42b2009-07-10 23:34:53 +00003913 if (isa<ObjCObjectPointerType>(lhsType)) {
3914 if (rhsType->isIntegerType())
3915 return IntToPointer;
Mike Stump11289f42009-09-09 15:08:12 +00003916
Steve Naroffaccc4882009-07-20 17:56:53 +00003917 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003918 if (isa<PointerType>(rhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00003919 if (rhsType->isVoidPointerType()) // an exception to the rule.
3920 return Compatible;
3921 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003922 }
3923 if (rhsType->isObjCObjectPointerType()) {
Steve Naroff1329fa02009-07-15 18:40:39 +00003924 if (lhsType->isObjCBuiltinType() || rhsType->isObjCBuiltinType())
3925 return Compatible;
Steve Naroffaccc4882009-07-20 17:56:53 +00003926 if (Context.typesAreCompatible(lhsType, rhsType))
3927 return Compatible;
Steve Naroff8e6aee52009-07-23 01:01:38 +00003928 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
3929 return IncompatibleObjCQualifiedId;
Steve Naroffaccc4882009-07-20 17:56:53 +00003930 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003931 }
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003932 if (const PointerType *RHSPT = rhsType->getAs<PointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00003933 if (RHSPT->getPointeeType()->isVoidType())
3934 return Compatible;
3935 }
3936 // Treat block pointers as objects.
3937 if (rhsType->isBlockPointerType())
3938 return Compatible;
3939 return Incompatible;
3940 }
Chris Lattnerec646832008-04-07 06:49:41 +00003941 if (isa<PointerType>(rhsType)) {
Steve Naroff98cf3e92007-06-06 18:38:38 +00003942 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
Eli Friedman3360d892008-05-30 18:07:22 +00003943 if (lhsType == Context.BoolTy)
3944 return Compatible;
3945
3946 if (lhsType->isIntegerType())
Chris Lattner940cfeb2008-01-04 18:22:42 +00003947 return PointerToInt;
Steve Naroff98cf3e92007-06-06 18:38:38 +00003948
Mike Stump4e1f26a2009-02-19 03:04:26 +00003949 if (isa<PointerType>(lhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00003950 return CheckPointerTypesForAssignment(lhsType, rhsType);
Mike Stump4e1f26a2009-02-19 03:04:26 +00003951
3952 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003953 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Douglas Gregore7dd1452008-11-27 00:44:28 +00003954 return Compatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00003955 return Incompatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00003956 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00003957 if (isa<ObjCObjectPointerType>(rhsType)) {
3958 // C99 6.5.16.1p1: the left operand is _Bool and the right is a pointer.
3959 if (lhsType == Context.BoolTy)
3960 return Compatible;
3961
3962 if (lhsType->isIntegerType())
3963 return PointerToInt;
3964
Steve Naroffaccc4882009-07-20 17:56:53 +00003965 // In general, C pointers are not compatible with ObjC object pointers.
Steve Naroff7cae42b2009-07-10 23:34:53 +00003966 if (isa<PointerType>(lhsType)) {
Steve Naroffaccc4882009-07-20 17:56:53 +00003967 if (lhsType->isVoidPointerType()) // an exception to the rule.
3968 return Compatible;
3969 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00003970 }
3971 if (isa<BlockPointerType>(lhsType) &&
Ted Kremenekc23c7e62009-07-29 21:53:49 +00003972 rhsType->getAs<PointerType>()->getPointeeType()->isVoidType())
Steve Naroff7cae42b2009-07-10 23:34:53 +00003973 return Compatible;
3974 return Incompatible;
3975 }
Eli Friedman3360d892008-05-30 18:07:22 +00003976
Chris Lattnera52c2f22008-01-04 23:18:45 +00003977 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
Chris Lattnerec646832008-04-07 06:49:41 +00003978 if (Context.typesAreCompatible(lhsType, rhsType))
Steve Naroff98cf3e92007-06-06 18:38:38 +00003979 return Compatible;
Bill Wendling216423b2007-05-30 06:30:29 +00003980 }
Steve Naroff98cf3e92007-06-06 18:38:38 +00003981 return Incompatible;
Steve Naroff9eb24652007-05-02 21:58:15 +00003982}
3983
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003984/// \brief Constructs a transparent union from an expression that is
3985/// used to initialize the transparent union.
Mike Stump11289f42009-09-09 15:08:12 +00003986static void ConstructTransparentUnion(ASTContext &C, Expr *&E,
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00003987 QualType UnionType, FieldDecl *Field) {
3988 // Build an initializer list that designates the appropriate member
3989 // of the transparent union.
3990 InitListExpr *Initializer = new (C) InitListExpr(SourceLocation(),
3991 &E, 1,
3992 SourceLocation());
3993 Initializer->setType(UnionType);
3994 Initializer->setInitializedFieldInUnion(Field);
3995
3996 // Build a compound literal constructing a value of the transparent
3997 // union type from this initializer list.
3998 E = new (C) CompoundLiteralExpr(SourceLocation(), UnionType, Initializer,
3999 false);
4000}
4001
4002Sema::AssignConvertType
4003Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, Expr *&rExpr) {
4004 QualType FromType = rExpr->getType();
4005
Mike Stump11289f42009-09-09 15:08:12 +00004006 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004007 // transparent_union GCC extension.
4008 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00004009 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004010 return Incompatible;
4011
4012 // The field to initialize within the transparent union.
4013 RecordDecl *UD = UT->getDecl();
4014 FieldDecl *InitField = 0;
4015 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00004016 for (RecordDecl::field_iterator it = UD->field_begin(),
4017 itend = UD->field_end();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004018 it != itend; ++it) {
4019 if (it->getType()->isPointerType()) {
4020 // If the transparent union contains a pointer type, we allow:
4021 // 1) void pointer
4022 // 2) null pointer constant
4023 if (FromType->isPointerType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004024 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004025 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_BitCast);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004026 InitField = *it;
4027 break;
4028 }
Mike Stump11289f42009-09-09 15:08:12 +00004029
Douglas Gregor56751b52009-09-25 04:25:58 +00004030 if (rExpr->isNullPointerConstant(Context,
4031 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004032 ImpCastExprToType(rExpr, it->getType(), CastExpr::CK_IntegralToPointer);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004033 InitField = *it;
4034 break;
4035 }
4036 }
4037
4038 if (CheckAssignmentConstraints(it->getType(), rExpr->getType())
4039 == Compatible) {
4040 InitField = *it;
4041 break;
4042 }
4043 }
4044
4045 if (!InitField)
4046 return Incompatible;
4047
4048 ConstructTransparentUnion(Context, rExpr, ArgType, InitField);
4049 return Compatible;
4050}
4051
Chris Lattner9bad62c2008-01-04 18:04:52 +00004052Sema::AssignConvertType
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004053Sema::CheckSingleAssignmentConstraints(QualType lhsType, Expr *&rExpr) {
Douglas Gregor9a657932008-10-21 23:43:52 +00004054 if (getLangOptions().CPlusPlus) {
4055 if (!lhsType->isRecordType()) {
4056 // C++ 5.17p3: If the left operand is not of class type, the
4057 // expression is implicitly converted (C++ 4) to the
4058 // cv-unqualified type of the left operand.
Douglas Gregor47d3f272008-12-19 17:40:08 +00004059 if (PerformImplicitConversion(rExpr, lhsType.getUnqualifiedType(),
4060 "assigning"))
Douglas Gregor9a657932008-10-21 23:43:52 +00004061 return Incompatible;
Chris Lattner0d5640c2009-04-12 09:02:39 +00004062 return Compatible;
Douglas Gregor9a657932008-10-21 23:43:52 +00004063 }
4064
4065 // FIXME: Currently, we fall through and treat C++ classes like C
4066 // structures.
4067 }
4068
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004069 // C99 6.5.16.1p1: the left operand is a pointer and the right is
4070 // a null pointer constant.
Mike Stump11289f42009-09-09 15:08:12 +00004071 if ((lhsType->isPointerType() ||
4072 lhsType->isObjCObjectPointerType() ||
Mike Stump4e1f26a2009-02-19 03:04:26 +00004073 lhsType->isBlockPointerType())
Douglas Gregor56751b52009-09-25 04:25:58 +00004074 && rExpr->isNullPointerConstant(Context,
4075 Expr::NPC_ValueDependentIsNull)) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004076 ImpCastExprToType(rExpr, lhsType, CastExpr::CK_Unknown);
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00004077 return Compatible;
4078 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004079
Chris Lattnere6dcd502007-10-16 02:55:40 +00004080 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004081 // conversion of functions/arrays. If the conversion were done for all
Douglas Gregora121b752009-11-03 16:56:39 +00004082 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004083 // expressions that surpress this implicit conversion (&, sizeof).
Chris Lattnere6dcd502007-10-16 02:55:40 +00004084 //
Mike Stump4e1f26a2009-02-19 03:04:26 +00004085 // Suppress this for references: C++ 8.5.3p5.
Chris Lattnere6dcd502007-10-16 02:55:40 +00004086 if (!lhsType->isReferenceType())
4087 DefaultFunctionArrayConversion(rExpr);
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004088
Chris Lattner9bad62c2008-01-04 18:04:52 +00004089 Sema::AssignConvertType result =
4090 CheckAssignmentConstraints(lhsType, rExpr->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00004091
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004092 // C99 6.5.16.1p2: The value of the right operand is converted to the
4093 // type of the assignment expression.
Douglas Gregor6b754842008-10-28 00:22:11 +00004094 // CheckAssignmentConstraints allows the left-hand side to be a reference,
4095 // so that we can use references in built-in functions even in C.
4096 // The getNonReferenceType() call makes sure that the resulting expression
4097 // does not have reference type.
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00004098 if (result != Incompatible && rExpr->getType() != lhsType)
Eli Friedman06ed2a52009-10-20 08:27:19 +00004099 ImpCastExprToType(rExpr, lhsType.getNonReferenceType(),
4100 CastExpr::CK_Unknown);
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00004101 return result;
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004102}
4103
Chris Lattner326f7572008-11-18 01:30:42 +00004104QualType Sema::InvalidOperands(SourceLocation Loc, Expr *&lex, Expr *&rex) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004105 Diag(Loc, diag::err_typecheck_invalid_operands)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00004106 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004107 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner5c11c412007-12-12 05:47:28 +00004108 return QualType();
Steve Naroff6f49f5d2007-05-29 14:23:36 +00004109}
4110
Mike Stump4e1f26a2009-02-19 03:04:26 +00004111inline QualType Sema::CheckVectorOperands(SourceLocation Loc, Expr *&lex,
Steve Naroff7a5af782007-07-13 16:58:59 +00004112 Expr *&rex) {
Mike Stump4e1f26a2009-02-19 03:04:26 +00004113 // For conversion purposes, we ignore any qualifiers.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004114 // For example, "const float" and "float" are equivalent.
Chris Lattner574dee62008-07-26 22:17:49 +00004115 QualType lhsType =
4116 Context.getCanonicalType(lex->getType()).getUnqualifiedType();
4117 QualType rhsType =
4118 Context.getCanonicalType(rex->getType()).getUnqualifiedType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004119
Nate Begeman191a6b12008-07-14 18:02:46 +00004120 // If the vector types are identical, return.
Nate Begeman002e4bd2008-04-04 01:30:25 +00004121 if (lhsType == rhsType)
Steve Naroff84ff4b42007-07-09 21:31:10 +00004122 return lhsType;
Nate Begeman330aaa72007-12-30 02:59:45 +00004123
Nate Begeman191a6b12008-07-14 18:02:46 +00004124 // Handle the case of a vector & extvector type of the same size and element
4125 // type. It would be nice if we only had one vector type someday.
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004126 if (getLangOptions().LaxVectorConversions) {
4127 // FIXME: Should we warn here?
John McCall9dd450b2009-09-21 23:43:11 +00004128 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
4129 if (const VectorType *RV = rhsType->getAs<VectorType>())
Nate Begeman191a6b12008-07-14 18:02:46 +00004130 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004131 LV->getNumElements() == RV->getNumElements()) {
Nate Begeman191a6b12008-07-14 18:02:46 +00004132 return lhsType->isExtVectorType() ? lhsType : rhsType;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00004133 }
4134 }
4135 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004136
Nate Begemanbd956c42009-06-28 02:36:38 +00004137 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
4138 // swap back (so that we don't reverse the inputs to a subtract, for instance.
4139 bool swapped = false;
4140 if (rhsType->isExtVectorType()) {
4141 swapped = true;
4142 std::swap(rex, lex);
4143 std::swap(rhsType, lhsType);
4144 }
Mike Stump11289f42009-09-09 15:08:12 +00004145
Nate Begeman886448d2009-06-28 19:12:57 +00004146 // Handle the case of an ext vector and scalar.
John McCall9dd450b2009-09-21 23:43:11 +00004147 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begemanbd956c42009-06-28 02:36:38 +00004148 QualType EltTy = LV->getElementType();
4149 if (EltTy->isIntegralType() && rhsType->isIntegralType()) {
4150 if (Context.getIntegerTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004151 ImpCastExprToType(rex, lhsType, CastExpr::CK_IntegralCast);
Nate Begemanbd956c42009-06-28 02:36:38 +00004152 if (swapped) std::swap(rex, lex);
4153 return lhsType;
4154 }
4155 }
4156 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
4157 rhsType->isRealFloatingType()) {
4158 if (Context.getFloatingTypeOrder(EltTy, rhsType) >= 0) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004159 ImpCastExprToType(rex, lhsType, CastExpr::CK_FloatingCast);
Nate Begemanbd956c42009-06-28 02:36:38 +00004160 if (swapped) std::swap(rex, lex);
4161 return lhsType;
4162 }
Nate Begeman330aaa72007-12-30 02:59:45 +00004163 }
4164 }
Mike Stump11289f42009-09-09 15:08:12 +00004165
Nate Begeman886448d2009-06-28 19:12:57 +00004166 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattner377d1f82008-11-18 22:52:51 +00004167 Diag(Loc, diag::err_typecheck_vector_not_convertable)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004168 << lex->getType() << rex->getType()
Chris Lattner377d1f82008-11-18 22:52:51 +00004169 << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff84ff4b42007-07-09 21:31:10 +00004170 return QualType();
Sebastian Redl112a97662009-02-07 00:15:38 +00004171}
4172
Steve Naroff218bc2b2007-05-04 21:54:46 +00004173inline QualType Sema::CheckMultiplyDivideOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004174 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar060d5e22009-01-05 22:42:10 +00004175 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004176 return CheckVectorOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004177
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004178 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004179
Steve Naroffdbd9e892007-07-17 00:58:39 +00004180 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004181 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004182 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004183}
4184
Steve Naroff218bc2b2007-05-04 21:54:46 +00004185inline QualType Sema::CheckRemainderOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004186 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Daniel Dunbar0d2bfec2009-01-05 22:55:36 +00004187 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4188 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
4189 return CheckVectorOperands(Loc, lex, rex);
4190 return InvalidOperands(Loc, lex, rex);
4191 }
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004192
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004193 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004194
Steve Naroffdbd9e892007-07-17 00:58:39 +00004195 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004196 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004197 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004198}
4199
4200inline QualType Sema::CheckAdditionOperands( // C99 6.5.6
Mike Stump11289f42009-09-09 15:08:12 +00004201 Expr *&lex, Expr *&rex, SourceLocation Loc, QualType* CompLHSTy) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004202 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4203 QualType compType = CheckVectorOperands(Loc, lex, rex);
4204 if (CompLHSTy) *CompLHSTy = compType;
4205 return compType;
4206 }
Steve Naroff7a5af782007-07-13 16:58:59 +00004207
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004208 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Eli Friedman8e122982008-05-18 18:08:51 +00004209
Steve Naroffe4718892007-04-27 18:30:00 +00004210 // handle the common case first (both operands are arithmetic).
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004211 if (lex->getType()->isArithmeticType() &&
4212 rex->getType()->isArithmeticType()) {
4213 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004214 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004215 }
Steve Naroff218bc2b2007-05-04 21:54:46 +00004216
Eli Friedman8e122982008-05-18 18:08:51 +00004217 // Put any potential pointer into PExp
4218 Expr* PExp = lex, *IExp = rex;
Steve Naroff6b712a72009-07-14 18:25:06 +00004219 if (IExp->getType()->isAnyPointerType())
Eli Friedman8e122982008-05-18 18:08:51 +00004220 std::swap(PExp, IExp);
4221
Steve Naroff6b712a72009-07-14 18:25:06 +00004222 if (PExp->getType()->isAnyPointerType()) {
Mike Stump11289f42009-09-09 15:08:12 +00004223
Eli Friedman8e122982008-05-18 18:08:51 +00004224 if (IExp->getType()->isIntegerType()) {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004225 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00004226
Chris Lattner12bdebb2009-04-24 23:50:08 +00004227 // Check for arithmetic on pointers to incomplete types.
4228 if (PointeeTy->isVoidType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004229 if (getLangOptions().CPlusPlus) {
4230 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
Chris Lattner3b054132008-11-19 05:08:23 +00004231 << lex->getSourceRange() << rex->getSourceRange();
Douglas Gregordd430f72009-01-19 19:26:10 +00004232 return QualType();
Eli Friedman8e122982008-05-18 18:08:51 +00004233 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004234
4235 // GNU extension: arithmetic on pointer to void
4236 Diag(Loc, diag::ext_gnu_void_ptr)
4237 << lex->getSourceRange() << rex->getSourceRange();
Chris Lattner12bdebb2009-04-24 23:50:08 +00004238 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorac1fb652009-03-24 19:52:54 +00004239 if (getLangOptions().CPlusPlus) {
4240 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
4241 << lex->getType() << lex->getSourceRange();
4242 return QualType();
4243 }
4244
4245 // GNU extension: arithmetic on pointer to function
4246 Diag(Loc, diag::ext_gnu_ptr_func_arith)
4247 << lex->getType() << lex->getSourceRange();
Steve Naroffa63372d2009-07-13 21:32:29 +00004248 } else {
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004249 // Check if we require a complete type.
Mike Stump11289f42009-09-09 15:08:12 +00004250 if (((PExp->getType()->isPointerType() &&
Steve Naroffa63372d2009-07-13 21:32:29 +00004251 !PExp->getType()->isDependentType()) ||
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004252 PExp->getType()->isObjCObjectPointerType()) &&
4253 RequireCompleteType(Loc, PointeeTy,
Mike Stump11289f42009-09-09 15:08:12 +00004254 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
4255 << PExp->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004256 << PExp->getType()))
Steve Naroffaacd4cc2009-07-13 21:20:41 +00004257 return QualType();
4258 }
Chris Lattner12bdebb2009-04-24 23:50:08 +00004259 // Diagnose bad cases where we step over interface counts.
4260 if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4261 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4262 << PointeeTy << PExp->getSourceRange();
4263 return QualType();
4264 }
Mike Stump11289f42009-09-09 15:08:12 +00004265
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004266 if (CompLHSTy) {
Eli Friedman629ffb92009-08-20 04:21:42 +00004267 QualType LHSTy = Context.isPromotableBitField(lex);
4268 if (LHSTy.isNull()) {
4269 LHSTy = lex->getType();
4270 if (LHSTy->isPromotableIntegerType())
4271 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004272 }
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004273 *CompLHSTy = LHSTy;
4274 }
Eli Friedman8e122982008-05-18 18:08:51 +00004275 return PExp->getType();
4276 }
4277 }
4278
Chris Lattner326f7572008-11-18 01:30:42 +00004279 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004280}
4281
Chris Lattner2a3569b2008-04-07 05:30:13 +00004282// C99 6.5.6
4283QualType Sema::CheckSubtractionOperands(Expr *&lex, Expr *&rex,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004284 SourceLocation Loc, QualType* CompLHSTy) {
4285 if (lex->getType()->isVectorType() || rex->getType()->isVectorType()) {
4286 QualType compType = CheckVectorOperands(Loc, lex, rex);
4287 if (CompLHSTy) *CompLHSTy = compType;
4288 return compType;
4289 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004290
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004291 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004292
Chris Lattner4d62f422007-12-09 21:53:25 +00004293 // Enforce type constraints: C99 6.5.6p3.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004294
Chris Lattner4d62f422007-12-09 21:53:25 +00004295 // Handle the common case first (both operands are arithmetic).
Mike Stumpf70bcf72009-05-07 18:43:07 +00004296 if (lex->getType()->isArithmeticType()
4297 && rex->getType()->isArithmeticType()) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004298 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004299 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004300 }
Mike Stump11289f42009-09-09 15:08:12 +00004301
Chris Lattner4d62f422007-12-09 21:53:25 +00004302 // Either ptr - int or ptr - ptr.
Steve Naroff6b712a72009-07-14 18:25:06 +00004303 if (lex->getType()->isAnyPointerType()) {
Steve Naroff4eed7a12009-07-13 17:19:15 +00004304 QualType lpointee = lex->getType()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004305
Douglas Gregorac1fb652009-03-24 19:52:54 +00004306 // The LHS must be an completely-defined object type.
Douglas Gregorf6cd9282009-01-23 00:36:41 +00004307
Douglas Gregorac1fb652009-03-24 19:52:54 +00004308 bool ComplainAboutVoid = false;
4309 Expr *ComplainAboutFunc = 0;
4310 if (lpointee->isVoidType()) {
4311 if (getLangOptions().CPlusPlus) {
4312 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4313 << lex->getSourceRange() << rex->getSourceRange();
4314 return QualType();
4315 }
4316
4317 // GNU C extension: arithmetic on pointer to void
4318 ComplainAboutVoid = true;
4319 } else if (lpointee->isFunctionType()) {
4320 if (getLangOptions().CPlusPlus) {
4321 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004322 << lex->getType() << lex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004323 return QualType();
4324 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004325
4326 // GNU C extension: arithmetic on pointer to function
4327 ComplainAboutFunc = lex;
4328 } else if (!lpointee->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00004329 RequireCompleteType(Loc, lpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004330 PDiag(diag::err_typecheck_sub_ptr_object)
Mike Stump11289f42009-09-09 15:08:12 +00004331 << lex->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00004332 << lex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004333 return QualType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004334
Chris Lattner12bdebb2009-04-24 23:50:08 +00004335 // Diagnose bad cases where we step over interface counts.
4336 if (lpointee->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
4337 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
4338 << lpointee << lex->getSourceRange();
4339 return QualType();
4340 }
Mike Stump11289f42009-09-09 15:08:12 +00004341
Chris Lattner4d62f422007-12-09 21:53:25 +00004342 // The result type of a pointer-int computation is the pointer type.
Douglas Gregorac1fb652009-03-24 19:52:54 +00004343 if (rex->getType()->isIntegerType()) {
4344 if (ComplainAboutVoid)
4345 Diag(Loc, diag::ext_gnu_void_ptr)
4346 << lex->getSourceRange() << rex->getSourceRange();
4347 if (ComplainAboutFunc)
4348 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004349 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004350 << ComplainAboutFunc->getSourceRange();
4351
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004352 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004353 return lex->getType();
Douglas Gregorac1fb652009-03-24 19:52:54 +00004354 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004355
Chris Lattner4d62f422007-12-09 21:53:25 +00004356 // Handle pointer-pointer subtractions.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004357 if (const PointerType *RHSPTy = rex->getType()->getAs<PointerType>()) {
Eli Friedman1974e532008-02-08 01:19:44 +00004358 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004359
Douglas Gregorac1fb652009-03-24 19:52:54 +00004360 // RHS must be a completely-type object type.
4361 // Handle the GNU void* extension.
4362 if (rpointee->isVoidType()) {
4363 if (getLangOptions().CPlusPlus) {
4364 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
4365 << lex->getSourceRange() << rex->getSourceRange();
4366 return QualType();
4367 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004368
Douglas Gregorac1fb652009-03-24 19:52:54 +00004369 ComplainAboutVoid = true;
4370 } else if (rpointee->isFunctionType()) {
4371 if (getLangOptions().CPlusPlus) {
4372 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004373 << rex->getType() << rex->getSourceRange();
Chris Lattner4d62f422007-12-09 21:53:25 +00004374 return QualType();
4375 }
Douglas Gregorac1fb652009-03-24 19:52:54 +00004376
4377 // GNU extension: arithmetic on pointer to function
4378 if (!ComplainAboutFunc)
4379 ComplainAboutFunc = rex;
4380 } else if (!rpointee->isDependentType() &&
4381 RequireCompleteType(Loc, rpointee,
Anders Carlsson029fc692009-08-26 22:59:12 +00004382 PDiag(diag::err_typecheck_sub_ptr_object)
4383 << rex->getSourceRange()
4384 << rex->getType()))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004385 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004386
Eli Friedman168fe152009-05-16 13:54:38 +00004387 if (getLangOptions().CPlusPlus) {
4388 // Pointee types must be the same: C++ [expr.add]
4389 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
4390 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4391 << lex->getType() << rex->getType()
4392 << lex->getSourceRange() << rex->getSourceRange();
4393 return QualType();
4394 }
4395 } else {
4396 // Pointee types must be compatible C99 6.5.6p3
4397 if (!Context.typesAreCompatible(
4398 Context.getCanonicalType(lpointee).getUnqualifiedType(),
4399 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
4400 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
4401 << lex->getType() << rex->getType()
4402 << lex->getSourceRange() << rex->getSourceRange();
4403 return QualType();
4404 }
Chris Lattner4d62f422007-12-09 21:53:25 +00004405 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004406
Douglas Gregorac1fb652009-03-24 19:52:54 +00004407 if (ComplainAboutVoid)
4408 Diag(Loc, diag::ext_gnu_void_ptr)
4409 << lex->getSourceRange() << rex->getSourceRange();
4410 if (ComplainAboutFunc)
4411 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump11289f42009-09-09 15:08:12 +00004412 << ComplainAboutFunc->getType()
Douglas Gregorac1fb652009-03-24 19:52:54 +00004413 << ComplainAboutFunc->getSourceRange();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004414
4415 if (CompLHSTy) *CompLHSTy = lex->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00004416 return Context.getPointerDiffType();
4417 }
4418 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004419
Chris Lattner326f7572008-11-18 01:30:42 +00004420 return InvalidOperands(Loc, lex, rex);
Steve Naroff218bc2b2007-05-04 21:54:46 +00004421}
4422
Chris Lattner2a3569b2008-04-07 05:30:13 +00004423// C99 6.5.7
Chris Lattner326f7572008-11-18 01:30:42 +00004424QualType Sema::CheckShiftOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Chris Lattner2a3569b2008-04-07 05:30:13 +00004425 bool isCompAssign) {
Chris Lattner5c11c412007-12-12 05:47:28 +00004426 // C99 6.5.7p2: Each of the operands shall have integer type.
4427 if (!lex->getType()->isIntegerType() || !rex->getType()->isIntegerType())
Chris Lattner326f7572008-11-18 01:30:42 +00004428 return InvalidOperands(Loc, lex, rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004429
Nate Begemane46ee9a2009-10-25 02:26:48 +00004430 // Vector shifts promote their scalar inputs to vector type.
4431 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
4432 return CheckVectorOperands(Loc, lex, rex);
4433
Chris Lattner5c11c412007-12-12 05:47:28 +00004434 // Shifts don't perform usual arithmetic conversions, they just do integer
4435 // promotions on each operand. C99 6.5.7p3
Eli Friedman629ffb92009-08-20 04:21:42 +00004436 QualType LHSTy = Context.isPromotableBitField(lex);
4437 if (LHSTy.isNull()) {
4438 LHSTy = lex->getType();
4439 if (LHSTy->isPromotableIntegerType())
4440 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregord2c2d172009-05-02 00:36:19 +00004441 }
Chris Lattner3c133402007-12-13 07:28:16 +00004442 if (!isCompAssign)
Eli Friedman06ed2a52009-10-20 08:27:19 +00004443 ImpCastExprToType(lex, LHSTy, CastExpr::CK_IntegralCast);
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004444
Chris Lattner5c11c412007-12-12 05:47:28 +00004445 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004446
Ryan Flynnf53fab82009-08-07 16:20:20 +00004447 // Sanity-check shift operands
4448 llvm::APSInt Right;
4449 // Check right/shifter operand
Daniel Dunbar687fa862009-09-17 06:31:27 +00004450 if (!rex->isValueDependent() &&
4451 rex->isIntegerConstantExpr(Right, Context)) {
Ryan Flynn2f085712009-08-08 19:18:23 +00004452 if (Right.isNegative())
Ryan Flynnf53fab82009-08-07 16:20:20 +00004453 Diag(Loc, diag::warn_shift_negative) << rex->getSourceRange();
4454 else {
4455 llvm::APInt LeftBits(Right.getBitWidth(),
4456 Context.getTypeSize(lex->getType()));
4457 if (Right.uge(LeftBits))
4458 Diag(Loc, diag::warn_shift_gt_typewidth) << rex->getSourceRange();
4459 }
4460 }
4461
Chris Lattner5c11c412007-12-12 05:47:28 +00004462 // "The type of the result is that of the promoted left operand."
Eli Friedman8b7b1b12009-03-28 01:22:36 +00004463 return LHSTy;
Steve Naroff26c8ea52007-03-21 21:08:52 +00004464}
4465
John McCall99ce6bf2009-11-06 08:49:08 +00004466/// \brief Implements -Wsign-compare.
4467///
4468/// \param lex the left-hand expression
4469/// \param rex the right-hand expression
4470/// \param OpLoc the location of the joining operator
John McCalle46fd852009-11-06 08:53:51 +00004471/// \param Equality whether this is an "equality-like" join, which
4472/// suppresses the warning in some cases
John McCall1fa36b72009-11-05 09:23:39 +00004473void Sema::CheckSignCompare(Expr *lex, Expr *rex, SourceLocation OpLoc,
John McCall99ce6bf2009-11-06 08:49:08 +00004474 const PartialDiagnostic &PD, bool Equality) {
John McCalle2c91e62009-11-06 18:16:06 +00004475 // Don't warn if we're in an unevaluated context.
4476 if (ExprEvalContext == Unevaluated)
4477 return;
4478
John McCall644a4182009-11-05 00:40:04 +00004479 QualType lt = lex->getType(), rt = rex->getType();
4480
4481 // Only warn if both operands are integral.
4482 if (!lt->isIntegerType() || !rt->isIntegerType())
4483 return;
4484
Sebastian Redl0b7c85f2009-11-05 21:09:23 +00004485 // If either expression is value-dependent, don't warn. We'll get another
4486 // chance at instantiation time.
4487 if (lex->isValueDependent() || rex->isValueDependent())
4488 return;
4489
John McCall644a4182009-11-05 00:40:04 +00004490 // The rule is that the signed operand becomes unsigned, so isolate the
4491 // signed operand.
John McCall99ce6bf2009-11-06 08:49:08 +00004492 Expr *signedOperand, *unsignedOperand;
John McCall644a4182009-11-05 00:40:04 +00004493 if (lt->isSignedIntegerType()) {
4494 if (rt->isSignedIntegerType()) return;
4495 signedOperand = lex;
John McCall99ce6bf2009-11-06 08:49:08 +00004496 unsignedOperand = rex;
John McCall644a4182009-11-05 00:40:04 +00004497 } else {
4498 if (!rt->isSignedIntegerType()) return;
4499 signedOperand = rex;
John McCall99ce6bf2009-11-06 08:49:08 +00004500 unsignedOperand = lex;
John McCall644a4182009-11-05 00:40:04 +00004501 }
4502
John McCall99ce6bf2009-11-06 08:49:08 +00004503 // If the unsigned type is strictly smaller than the signed type,
John McCalle46fd852009-11-06 08:53:51 +00004504 // then (1) the result type will be signed and (2) the unsigned
4505 // value will fit fully within the signed type, and thus the result
John McCall99ce6bf2009-11-06 08:49:08 +00004506 // of the comparison will be exact.
4507 if (Context.getIntWidth(signedOperand->getType()) >
4508 Context.getIntWidth(unsignedOperand->getType()))
4509 return;
4510
John McCall644a4182009-11-05 00:40:04 +00004511 // If the value is a non-negative integer constant, then the
4512 // signed->unsigned conversion won't change it.
4513 llvm::APSInt value;
John McCall1fa36b72009-11-05 09:23:39 +00004514 if (signedOperand->isIntegerConstantExpr(value, Context)) {
John McCall644a4182009-11-05 00:40:04 +00004515 assert(value.isSigned() && "result of signed expression not signed");
4516
4517 if (value.isNonNegative())
4518 return;
4519 }
4520
John McCall99ce6bf2009-11-06 08:49:08 +00004521 if (Equality) {
4522 // For (in)equality comparisons, if the unsigned operand is a
John McCalle46fd852009-11-06 08:53:51 +00004523 // constant which cannot collide with a overflowed signed operand,
4524 // then reinterpreting the signed operand as unsigned will not
4525 // change the result of the comparison.
John McCall99ce6bf2009-11-06 08:49:08 +00004526 if (unsignedOperand->isIntegerConstantExpr(value, Context)) {
4527 assert(!value.isSigned() && "result of unsigned expression is signed");
4528
4529 // 2's complement: test the top bit.
4530 if (value.isNonNegative())
4531 return;
4532 }
4533 }
4534
John McCall1fa36b72009-11-05 09:23:39 +00004535 Diag(OpLoc, PD)
John McCall644a4182009-11-05 00:40:04 +00004536 << lex->getType() << rex->getType()
4537 << lex->getSourceRange() << rex->getSourceRange();
4538}
4539
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004540// C99 6.5.8, C++ [expr.rel]
Chris Lattner326f7572008-11-18 01:30:42 +00004541QualType Sema::CheckCompareOperands(Expr *&lex, Expr *&rex, SourceLocation Loc,
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004542 unsigned OpaqueOpc, bool isRelational) {
4543 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)OpaqueOpc;
4544
Nate Begeman191a6b12008-07-14 18:02:46 +00004545 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004546 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004547
John McCall99ce6bf2009-11-06 08:49:08 +00004548 CheckSignCompare(lex, rex, Loc, diag::warn_mixed_sign_comparison,
4549 (Opc == BinaryOperator::EQ || Opc == BinaryOperator::NE));
John McCall644a4182009-11-05 00:40:04 +00004550
Chris Lattnerb620c342007-08-26 01:18:55 +00004551 // C99 6.5.8p3 / C99 6.5.9p4
Steve Naroff47fea352007-08-10 18:26:40 +00004552 if (lex->getType()->isArithmeticType() && rex->getType()->isArithmeticType())
4553 UsualArithmeticConversions(lex, rex);
4554 else {
4555 UsualUnaryConversions(lex);
4556 UsualUnaryConversions(rex);
4557 }
Steve Naroff31090012007-07-16 21:54:35 +00004558 QualType lType = lex->getType();
4559 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004560
Mike Stumpf70bcf72009-05-07 18:43:07 +00004561 if (!lType->isFloatingType()
4562 && !(lType->isBlockPointerType() && isRelational)) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00004563 // For non-floating point types, check for self-comparisons of the form
4564 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4565 // often indicate logic errors in the program.
Mike Stump11289f42009-09-09 15:08:12 +00004566 // NOTE: Don't warn about comparisons of enum constants. These can arise
Ted Kremenekde9e9682009-03-20 19:57:37 +00004567 // from macro expansions, and are usually quite deliberate.
Chris Lattner222b8bd2009-03-08 19:39:53 +00004568 Expr *LHSStripped = lex->IgnoreParens();
4569 Expr *RHSStripped = rex->IgnoreParens();
4570 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped))
4571 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped))
Ted Kremenek9ffbe412009-03-20 18:35:45 +00004572 if (DRL->getDecl() == DRR->getDecl() &&
4573 !isa<EnumConstantDecl>(DRL->getDecl()))
Mike Stump4e1f26a2009-02-19 03:04:26 +00004574 Diag(Loc, diag::warn_selfcomparison);
Mike Stump11289f42009-09-09 15:08:12 +00004575
Chris Lattner222b8bd2009-03-08 19:39:53 +00004576 if (isa<CastExpr>(LHSStripped))
4577 LHSStripped = LHSStripped->IgnoreParenCasts();
4578 if (isa<CastExpr>(RHSStripped))
4579 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00004580
Chris Lattner222b8bd2009-03-08 19:39:53 +00004581 // Warn about comparisons against a string constant (unless the other
4582 // operand is null), the user probably wants strcmp.
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004583 Expr *literalString = 0;
4584 Expr *literalStringStripped = 0;
Chris Lattner222b8bd2009-03-08 19:39:53 +00004585 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00004586 !RHSStripped->isNullPointerConstant(Context,
4587 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004588 literalString = lex;
4589 literalStringStripped = LHSStripped;
Mike Stump12b8ce12009-08-04 21:02:39 +00004590 } else if ((isa<StringLiteral>(RHSStripped) ||
4591 isa<ObjCEncodeExpr>(RHSStripped)) &&
Douglas Gregor56751b52009-09-25 04:25:58 +00004592 !LHSStripped->isNullPointerConstant(Context,
4593 Expr::NPC_ValueDependentIsNull)) {
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004594 literalString = rex;
4595 literalStringStripped = RHSStripped;
4596 }
4597
4598 if (literalString) {
4599 std::string resultComparison;
4600 switch (Opc) {
4601 case BinaryOperator::LT: resultComparison = ") < 0"; break;
4602 case BinaryOperator::GT: resultComparison = ") > 0"; break;
4603 case BinaryOperator::LE: resultComparison = ") <= 0"; break;
4604 case BinaryOperator::GE: resultComparison = ") >= 0"; break;
4605 case BinaryOperator::EQ: resultComparison = ") == 0"; break;
4606 case BinaryOperator::NE: resultComparison = ") != 0"; break;
4607 default: assert(false && "Invalid comparison operator");
4608 }
4609 Diag(Loc, diag::warn_stringcompare)
4610 << isa<ObjCEncodeExpr>(literalStringStripped)
4611 << literalString->getSourceRange()
Douglas Gregor170512f2009-04-01 23:51:29 +00004612 << CodeModificationHint::CreateReplacement(SourceRange(Loc), ", ")
4613 << CodeModificationHint::CreateInsertion(lex->getLocStart(),
4614 "strcmp(")
4615 << CodeModificationHint::CreateInsertion(
4616 PP.getLocForEndOfToken(rex->getLocEnd()),
Douglas Gregor7a5bc762009-04-06 18:45:53 +00004617 resultComparison);
4618 }
Ted Kremeneke451eae2007-10-29 16:58:49 +00004619 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004620
Douglas Gregorca63811b2008-11-19 03:25:36 +00004621 // The result of comparisons is 'bool' in C++, 'int' in C.
Chris Lattner222b8bd2009-03-08 19:39:53 +00004622 QualType ResultTy = getLangOptions().CPlusPlus? Context.BoolTy :Context.IntTy;
Douglas Gregorca63811b2008-11-19 03:25:36 +00004623
Chris Lattnerb620c342007-08-26 01:18:55 +00004624 if (isRelational) {
4625 if (lType->isRealType() && rType->isRealType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00004626 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00004627 } else {
Ted Kremeneke2763b02007-10-29 17:13:39 +00004628 // Check for comparisons of floating point operands using != and ==.
Ted Kremeneke2763b02007-10-29 17:13:39 +00004629 if (lType->isFloatingType()) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00004630 assert(rType->isFloatingType());
Chris Lattner326f7572008-11-18 01:30:42 +00004631 CheckFloatComparison(Loc,lex,rex);
Ted Kremenekd4ecc6d2007-10-29 16:40:01 +00004632 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004633
Chris Lattnerb620c342007-08-26 01:18:55 +00004634 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00004635 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00004636 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004637
Douglas Gregor56751b52009-09-25 04:25:58 +00004638 bool LHSIsNull = lex->isNullPointerConstant(Context,
4639 Expr::NPC_ValueDependentIsNull);
4640 bool RHSIsNull = rex->isNullPointerConstant(Context,
4641 Expr::NPC_ValueDependentIsNull);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004642
Chris Lattnerb620c342007-08-26 01:18:55 +00004643 // All of the following pointer related warnings are GCC extensions, except
4644 // when handling null pointer constants. One day, we can consider making them
4645 // errors (when -pedantic-errors is enabled).
Steve Naroff808eb8f2007-08-27 04:08:11 +00004646 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattner3a0702e2008-04-03 05:07:25 +00004647 QualType LCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004648 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattner3a0702e2008-04-03 05:07:25 +00004649 QualType RCanPointeeTy =
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004650 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00004651
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004652 if (getLangOptions().CPlusPlus) {
Eli Friedman16c209612009-08-23 00:27:47 +00004653 if (LCanPointeeTy == RCanPointeeTy)
4654 return ResultTy;
4655
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004656 // C++ [expr.rel]p2:
4657 // [...] Pointer conversions (4.10) and qualification
4658 // conversions (4.4) are performed on pointer operands (or on
4659 // a pointer operand and a null pointer constant) to bring
4660 // them to their composite pointer type. [...]
4661 //
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004662 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004663 // comparisons of pointers.
Douglas Gregorb8420462009-05-05 04:50:50 +00004664 QualType T = FindCompositePointerType(lex, rex);
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004665 if (T.isNull()) {
4666 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4667 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4668 return QualType();
4669 }
4670
Eli Friedman06ed2a52009-10-20 08:27:19 +00004671 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
4672 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00004673 return ResultTy;
4674 }
Eli Friedman16c209612009-08-23 00:27:47 +00004675 // C99 6.5.9p2 and C99 6.5.8p2
4676 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
4677 RCanPointeeTy.getUnqualifiedType())) {
4678 // Valid unless a relational comparison of function pointers
4679 if (isRelational && LCanPointeeTy->isFunctionType()) {
4680 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
4681 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4682 }
4683 } else if (!isRelational &&
4684 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
4685 // Valid unless comparison between non-null pointer and function pointer
4686 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
4687 && !LHSIsNull && !RHSIsNull) {
4688 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
4689 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4690 }
4691 } else {
4692 // Invalid
Chris Lattner377d1f82008-11-18 22:52:51 +00004693 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004694 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff75c17232007-06-13 21:41:08 +00004695 }
Eli Friedman16c209612009-08-23 00:27:47 +00004696 if (LCanPointeeTy != RCanPointeeTy)
Eli Friedman06ed2a52009-10-20 08:27:19 +00004697 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004698 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00004699 }
Mike Stump11289f42009-09-09 15:08:12 +00004700
Sebastian Redl576fd422009-05-10 18:38:11 +00004701 if (getLangOptions().CPlusPlus) {
Mike Stump11289f42009-09-09 15:08:12 +00004702 // Comparison of pointers with null pointer constants and equality
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004703 // comparisons of member pointers to null pointer constants.
Mike Stump11289f42009-09-09 15:08:12 +00004704 if (RHSIsNull &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004705 (lType->isPointerType() ||
4706 (!isRelational && lType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00004707 ImpCastExprToType(rex, lType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00004708 return ResultTy;
4709 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004710 if (LHSIsNull &&
4711 (rType->isPointerType() ||
4712 (!isRelational && rType->isMemberPointerType()))) {
Anders Carlsson83133d92009-08-24 18:03:14 +00004713 ImpCastExprToType(lex, rType, CastExpr::CK_NullToMemberPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00004714 return ResultTy;
4715 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004716
4717 // Comparison of member pointers.
Mike Stump11289f42009-09-09 15:08:12 +00004718 if (!isRelational &&
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004719 lType->isMemberPointerType() && rType->isMemberPointerType()) {
4720 // C++ [expr.eq]p2:
Mike Stump11289f42009-09-09 15:08:12 +00004721 // In addition, pointers to members can be compared, or a pointer to
4722 // member and a null pointer constant. Pointer to member conversions
4723 // (4.11) and qualification conversions (4.4) are performed to bring
4724 // them to a common type. If one operand is a null pointer constant,
4725 // the common type is the type of the other operand. Otherwise, the
4726 // common type is a pointer to member type similar (4.4) to the type
4727 // of one of the operands, with a cv-qualification signature (4.4)
4728 // that is the union of the cv-qualification signatures of the operand
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004729 // types.
4730 QualType T = FindCompositePointerType(lex, rex);
4731 if (T.isNull()) {
4732 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
4733 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
4734 return QualType();
4735 }
Mike Stump11289f42009-09-09 15:08:12 +00004736
Eli Friedman06ed2a52009-10-20 08:27:19 +00004737 ImpCastExprToType(lex, T, CastExpr::CK_BitCast);
4738 ImpCastExprToType(rex, T, CastExpr::CK_BitCast);
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004739 return ResultTy;
4740 }
Mike Stump11289f42009-09-09 15:08:12 +00004741
Douglas Gregorb00b10e2009-08-24 17:42:35 +00004742 // Comparison of nullptr_t with itself.
Sebastian Redl576fd422009-05-10 18:38:11 +00004743 if (lType->isNullPtrType() && rType->isNullPtrType())
4744 return ResultTy;
4745 }
Mike Stump11289f42009-09-09 15:08:12 +00004746
Steve Naroff081c7422008-09-04 15:10:53 +00004747 // Handle block pointer types.
Mike Stump1b821b42009-05-07 03:14:14 +00004748 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004749 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
4750 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004751
Steve Naroff081c7422008-09-04 15:10:53 +00004752 if (!LHSIsNull && !RHSIsNull &&
Eli Friedmana6638ca2009-06-08 05:08:54 +00004753 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004754 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004755 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff081c7422008-09-04 15:10:53 +00004756 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00004757 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004758 return ResultTy;
Steve Naroff081c7422008-09-04 15:10:53 +00004759 }
Steve Naroffe18f94c2008-09-28 01:11:11 +00004760 // Allow block pointers to be compared with null pointer constants.
Mike Stump1b821b42009-05-07 03:14:14 +00004761 if (!isRelational
4762 && ((lType->isBlockPointerType() && rType->isPointerType())
4763 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroffe18f94c2008-09-28 01:11:11 +00004764 if (!LHSIsNull && !RHSIsNull) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004765 if (!((rType->isPointerType() && rType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00004766 ->getPointeeType()->isVoidType())
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004767 || (lType->isPointerType() && lType->getAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00004768 ->getPointeeType()->isVoidType())))
4769 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
4770 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroffe18f94c2008-09-28 01:11:11 +00004771 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00004772 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004773 return ResultTy;
Steve Naroffe18f94c2008-09-28 01:11:11 +00004774 }
Steve Naroff081c7422008-09-04 15:10:53 +00004775
Steve Naroff7cae42b2009-07-10 23:34:53 +00004776 if ((lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType())) {
Steve Naroff1d4a9a32008-10-27 10:33:19 +00004777 if (lType->isPointerType() || rType->isPointerType()) {
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004778 const PointerType *LPT = lType->getAs<PointerType>();
4779 const PointerType *RPT = rType->getAs<PointerType>();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004780 bool LPtrToVoid = LPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00004781 Context.getCanonicalType(LPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004782 bool RPtrToVoid = RPT ?
Steve Naroff753567f2008-11-17 19:49:16 +00004783 Context.getCanonicalType(RPT->getPointeeType())->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004784
Steve Naroff753567f2008-11-17 19:49:16 +00004785 if (!LPtrToVoid && !RPtrToVoid &&
4786 !Context.typesAreCompatible(lType, rType)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00004787 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
Chris Lattner1e5665e2008-11-24 06:25:27 +00004788 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Steve Naroff1d4a9a32008-10-27 10:33:19 +00004789 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00004790 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004791 return ResultTy;
Steve Naroffea54d9e2008-10-20 18:19:10 +00004792 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00004793 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004794 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff7cae42b2009-07-10 23:34:53 +00004795 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
4796 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Eli Friedman06ed2a52009-10-20 08:27:19 +00004797 ImpCastExprToType(rex, lType, CastExpr::CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004798 return ResultTy;
Steve Naroffb788d9b2008-06-03 14:04:54 +00004799 }
Fariborz Jahanian134cbef2007-12-20 01:06:58 +00004800 }
Steve Naroff6b712a72009-07-14 18:25:06 +00004801 if (lType->isAnyPointerType() && rType->isIntegerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00004802 unsigned DiagID = 0;
4803 if (RHSIsNull) {
4804 if (isRelational)
4805 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4806 } else if (isRelational)
4807 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4808 else
4809 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00004810
Chris Lattnerd99bd522009-08-23 00:03:44 +00004811 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004812 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00004813 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00004814 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00004815 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004816 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00004817 }
Steve Naroff6b712a72009-07-14 18:25:06 +00004818 if (lType->isIntegerType() && rType->isAnyPointerType()) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00004819 unsigned DiagID = 0;
4820 if (LHSIsNull) {
4821 if (isRelational)
4822 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
4823 } else if (isRelational)
4824 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
4825 else
4826 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00004827
Chris Lattnerd99bd522009-08-23 00:03:44 +00004828 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00004829 Diag(Loc, DiagID)
Chris Lattnerd466ea12009-06-30 06:24:05 +00004830 << lType << rType << lex->getSourceRange() << rex->getSourceRange();
Chris Lattnerf8344db2009-08-22 18:58:31 +00004831 }
Eli Friedman06ed2a52009-10-20 08:27:19 +00004832 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004833 return ResultTy;
Steve Naroff043d45d2007-05-15 02:32:35 +00004834 }
Steve Naroff4b191572008-09-04 16:56:14 +00004835 // Handle block pointers.
Mike Stumpf70bcf72009-05-07 18:43:07 +00004836 if (!isRelational && RHSIsNull
4837 && lType->isBlockPointerType() && rType->isIntegerType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004838 ImpCastExprToType(rex, lType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004839 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00004840 }
Mike Stumpf70bcf72009-05-07 18:43:07 +00004841 if (!isRelational && LHSIsNull
4842 && lType->isIntegerType() && rType->isBlockPointerType()) {
Eli Friedman06ed2a52009-10-20 08:27:19 +00004843 ImpCastExprToType(lex, rType, CastExpr::CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00004844 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00004845 }
Chris Lattner326f7572008-11-18 01:30:42 +00004846 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004847}
4848
Nate Begeman191a6b12008-07-14 18:02:46 +00004849/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump4e1f26a2009-02-19 03:04:26 +00004850/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begeman191a6b12008-07-14 18:02:46 +00004851/// like a scalar comparison, a vector comparison produces a vector of integer
4852/// types.
4853QualType Sema::CheckVectorCompareOperands(Expr *&lex, Expr *&rex,
Chris Lattner326f7572008-11-18 01:30:42 +00004854 SourceLocation Loc,
Nate Begeman191a6b12008-07-14 18:02:46 +00004855 bool isRelational) {
4856 // Check to make sure we're operating on vectors of the same type and width,
4857 // Allowing one side to be a scalar of element type.
Chris Lattner326f7572008-11-18 01:30:42 +00004858 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00004859 if (vType.isNull())
4860 return vType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004861
Nate Begeman191a6b12008-07-14 18:02:46 +00004862 QualType lType = lex->getType();
4863 QualType rType = rex->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00004864
Nate Begeman191a6b12008-07-14 18:02:46 +00004865 // For non-floating point types, check for self-comparisons of the form
4866 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
4867 // often indicate logic errors in the program.
4868 if (!lType->isFloatingType()) {
4869 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex->IgnoreParens()))
4870 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex->IgnoreParens()))
4871 if (DRL->getDecl() == DRR->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00004872 Diag(Loc, diag::warn_selfcomparison);
Nate Begeman191a6b12008-07-14 18:02:46 +00004873 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004874
Nate Begeman191a6b12008-07-14 18:02:46 +00004875 // Check for comparisons of floating point operands using != and ==.
4876 if (!isRelational && lType->isFloatingType()) {
4877 assert (rType->isFloatingType());
Chris Lattner326f7572008-11-18 01:30:42 +00004878 CheckFloatComparison(Loc,lex,rex);
Nate Begeman191a6b12008-07-14 18:02:46 +00004879 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004880
Nate Begeman191a6b12008-07-14 18:02:46 +00004881 // Return the type for the comparison, which is the same as vector type for
4882 // integer vectors, or an integer type of identical size and number of
4883 // elements for floating point vectors.
4884 if (lType->isIntegerType())
4885 return lType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004886
John McCall9dd450b2009-09-21 23:43:11 +00004887 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begeman191a6b12008-07-14 18:02:46 +00004888 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004889 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begeman191a6b12008-07-14 18:02:46 +00004890 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattner5d688962009-03-31 07:46:52 +00004891 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004892 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
4893
Mike Stump4e1f26a2009-02-19 03:04:26 +00004894 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman2f2bdeb2009-01-18 03:20:47 +00004895 "Unhandled vector element size in vector compare");
Nate Begeman191a6b12008-07-14 18:02:46 +00004896 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
4897}
4898
Steve Naroff218bc2b2007-05-04 21:54:46 +00004899inline QualType Sema::CheckBitwiseOperands(
Mike Stump11289f42009-09-09 15:08:12 +00004900 Expr *&lex, Expr *&rex, SourceLocation Loc, bool isCompAssign) {
Steve Naroff94a5aca2007-07-16 22:23:01 +00004901 if (lex->getType()->isVectorType() || rex->getType()->isVectorType())
Chris Lattner326f7572008-11-18 01:30:42 +00004902 return CheckVectorOperands(Loc, lex, rex);
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00004903
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004904 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004905
Steve Naroffdbd9e892007-07-17 00:58:39 +00004906 if (lex->getType()->isIntegerType() && rex->getType()->isIntegerType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00004907 return compType;
Chris Lattner326f7572008-11-18 01:30:42 +00004908 return InvalidOperands(Loc, lex, rex);
Steve Naroff26c8ea52007-03-21 21:08:52 +00004909}
4910
Steve Naroff218bc2b2007-05-04 21:54:46 +00004911inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Mike Stump11289f42009-09-09 15:08:12 +00004912 Expr *&lex, Expr *&rex, SourceLocation Loc) {
Steve Naroff31090012007-07-16 21:54:35 +00004913 UsualUnaryConversions(lex);
4914 UsualUnaryConversions(rex);
Mike Stump4e1f26a2009-02-19 03:04:26 +00004915
Anders Carlsson35a99d92009-10-16 01:44:21 +00004916 if (!lex->getType()->isScalarType() || !rex->getType()->isScalarType())
4917 return InvalidOperands(Loc, lex, rex);
4918
4919 if (Context.getLangOptions().CPlusPlus) {
4920 // C++ [expr.log.and]p2
4921 // C++ [expr.log.or]p2
4922 return Context.BoolTy;
4923 }
4924
4925 return Context.IntTy;
Steve Naroffae4143e2007-04-26 20:39:23 +00004926}
4927
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004928/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
4929/// is a read-only property; return true if so. A readonly property expression
4930/// depends on various declarations and thus must be treated specially.
4931///
Mike Stump11289f42009-09-09 15:08:12 +00004932static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004933 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
4934 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
4935 if (ObjCPropertyDecl *PDecl = PropExpr->getProperty()) {
4936 QualType BaseType = PropExpr->getBase()->getType();
Mike Stump11289f42009-09-09 15:08:12 +00004937 if (const ObjCObjectPointerType *OPT =
Steve Naroff7cae42b2009-07-10 23:34:53 +00004938 BaseType->getAsObjCInterfacePointerType())
4939 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
4940 if (S.isPropertyReadonly(PDecl, IFace))
4941 return true;
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004942 }
4943 }
4944 return false;
4945}
4946
Chris Lattner30bd3272008-11-18 01:22:49 +00004947/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
4948/// emit an error and return true. If so, return false.
4949static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004950 SourceLocation OrigLoc = Loc;
Mike Stump11289f42009-09-09 15:08:12 +00004951 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004952 &Loc);
Fariborz Jahanian8e1555c2009-01-12 19:55:42 +00004953 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
4954 IsLV = Expr::MLV_ReadonlyProperty;
Chris Lattner30bd3272008-11-18 01:22:49 +00004955 if (IsLV == Expr::MLV_Valid)
4956 return false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004957
Chris Lattner30bd3272008-11-18 01:22:49 +00004958 unsigned Diag = 0;
4959 bool NeedType = false;
4960 switch (IsLV) { // C99 6.5.16p2
4961 default: assert(0 && "Unknown result from isModifiableLvalue!");
4962 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004963 case Expr::MLV_ArrayType:
Chris Lattner30bd3272008-11-18 01:22:49 +00004964 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
4965 NeedType = true;
4966 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00004967 case Expr::MLV_NotObjectType:
Chris Lattner30bd3272008-11-18 01:22:49 +00004968 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
4969 NeedType = true;
4970 break;
Chris Lattner9b3bbe92008-11-17 19:51:54 +00004971 case Expr::MLV_LValueCast:
Chris Lattner30bd3272008-11-18 01:22:49 +00004972 Diag = diag::err_typecheck_lvalue_casts_not_supported;
4973 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00004974 case Expr::MLV_InvalidExpression:
Chris Lattner30bd3272008-11-18 01:22:49 +00004975 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
4976 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00004977 case Expr::MLV_IncompleteType:
4978 case Expr::MLV_IncompleteVoidType:
Douglas Gregored0cfbd2009-03-09 16:13:40 +00004979 return S.RequireCompleteType(Loc, E->getType(),
Anders Carlssond624e162009-08-26 23:45:07 +00004980 PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
4981 << E->getSourceRange());
Chris Lattner9bad62c2008-01-04 18:04:52 +00004982 case Expr::MLV_DuplicateVectorComponents:
Chris Lattner30bd3272008-11-18 01:22:49 +00004983 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
4984 break;
Steve Naroffba756cb2008-09-26 14:41:28 +00004985 case Expr::MLV_NotBlockQualified:
Chris Lattner30bd3272008-11-18 01:22:49 +00004986 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
4987 break;
Fariborz Jahanian8a1810f2008-11-22 18:39:36 +00004988 case Expr::MLV_ReadonlyProperty:
4989 Diag = diag::error_readonly_property_assignment;
4990 break;
Fariborz Jahanian5118c412008-11-22 20:25:50 +00004991 case Expr::MLV_NoSetterProperty:
4992 Diag = diag::error_nosetter_property_assignment;
4993 break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00004994 }
Steve Naroffad373bd2007-07-31 12:34:36 +00004995
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00004996 SourceRange Assign;
4997 if (Loc != OrigLoc)
4998 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner30bd3272008-11-18 01:22:49 +00004999 if (NeedType)
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00005000 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00005001 else
Mike Stump11289f42009-09-09 15:08:12 +00005002 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00005003 return true;
5004}
5005
5006
5007
5008// C99 6.5.16.1
Chris Lattner326f7572008-11-18 01:30:42 +00005009QualType Sema::CheckAssignmentOperands(Expr *LHS, Expr *&RHS,
5010 SourceLocation Loc,
5011 QualType CompoundType) {
5012 // Verify that LHS is a modifiable lvalue, and emit error if not.
5013 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattner30bd3272008-11-18 01:22:49 +00005014 return QualType();
Chris Lattner326f7572008-11-18 01:30:42 +00005015
5016 QualType LHSType = LHS->getType();
5017 QualType RHSType = CompoundType.isNull() ? RHS->getType() : CompoundType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005018
Chris Lattner9bad62c2008-01-04 18:04:52 +00005019 AssignConvertType ConvTy;
Chris Lattner326f7572008-11-18 01:30:42 +00005020 if (CompoundType.isNull()) {
Chris Lattnerea714382008-08-21 18:04:13 +00005021 // Simple assignment "x = y".
Chris Lattner326f7572008-11-18 01:30:42 +00005022 ConvTy = CheckSingleAssignmentConstraints(LHSType, RHS);
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005023 // Special case of NSObject attributes on c-style pointer types.
5024 if (ConvTy == IncompatiblePointer &&
5025 ((Context.isObjCNSObjectType(LHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00005026 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005027 (Context.isObjCNSObjectType(RHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00005028 LHSType->isObjCObjectPointerType())))
Fariborz Jahanian255c0952009-01-13 23:34:40 +00005029 ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005030
Chris Lattnerea714382008-08-21 18:04:13 +00005031 // If the RHS is a unary plus or minus, check to see if they = and + are
5032 // right next to each other. If so, the user may have typo'd "x =+ 4"
5033 // instead of "x += 4".
Chris Lattner326f7572008-11-18 01:30:42 +00005034 Expr *RHSCheck = RHS;
Chris Lattnerea714382008-08-21 18:04:13 +00005035 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
5036 RHSCheck = ICE->getSubExpr();
5037 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
5038 if ((UO->getOpcode() == UnaryOperator::Plus ||
5039 UO->getOpcode() == UnaryOperator::Minus) &&
Chris Lattner326f7572008-11-18 01:30:42 +00005040 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattnerea714382008-08-21 18:04:13 +00005041 // Only if the two operators are exactly adjacent.
Chris Lattner36c39c92009-03-08 06:51:10 +00005042 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
5043 // And there is a space or other character before the subexpr of the
5044 // unary +/-. We don't want to warn on "x=-1".
Chris Lattnered9f14c2009-03-09 07:11:10 +00005045 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
5046 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005047 Diag(Loc, diag::warn_not_compound_assign)
5048 << (UO->getOpcode() == UnaryOperator::Plus ? "+" : "-")
5049 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner36c39c92009-03-08 06:51:10 +00005050 }
Chris Lattnerea714382008-08-21 18:04:13 +00005051 }
5052 } else {
5053 // Compound assignment "x += y"
Eli Friedmanb05c41e2009-05-16 05:56:02 +00005054 ConvTy = CheckAssignmentConstraints(LHSType, RHSType);
Chris Lattnerea714382008-08-21 18:04:13 +00005055 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00005056
Chris Lattner326f7572008-11-18 01:30:42 +00005057 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
5058 RHS, "assigning"))
Chris Lattner9bad62c2008-01-04 18:04:52 +00005059 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005060
Steve Naroff98cf3e92007-06-06 18:38:38 +00005061 // C99 6.5.16p3: The type of an assignment expression is the type of the
5062 // left operand unless the left operand has qualified type, in which case
Mike Stump4e1f26a2009-02-19 03:04:26 +00005063 // it is the unqualified version of the type of the left operand.
Steve Naroff98cf3e92007-06-06 18:38:38 +00005064 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
5065 // is converted to the type of the assignment expression (above).
Chris Lattnerf17bd422007-08-30 17:45:32 +00005066 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregord2c2d172009-05-02 00:36:19 +00005067 // operand.
Chris Lattner326f7572008-11-18 01:30:42 +00005068 return LHSType.getUnqualifiedType();
Steve Naroffae4143e2007-04-26 20:39:23 +00005069}
5070
Chris Lattner326f7572008-11-18 01:30:42 +00005071// C99 6.5.17
5072QualType Sema::CheckCommaOperands(Expr *LHS, Expr *&RHS, SourceLocation Loc) {
Chris Lattnerf6e1e302008-07-25 20:54:07 +00005073 // Comma performs lvalue conversion (C99 6.3.2.1), but not unary conversions.
Chris Lattner326f7572008-11-18 01:30:42 +00005074 DefaultFunctionArrayConversion(RHS);
Eli Friedmanba961a92009-03-23 00:24:07 +00005075
5076 // FIXME: Check that RHS type is complete in C mode (it's legal for it to be
5077 // incomplete in C++).
5078
Chris Lattner326f7572008-11-18 01:30:42 +00005079 return RHS->getType();
Steve Naroff95af0132007-03-30 23:47:58 +00005080}
5081
Steve Naroff7a5af782007-07-13 16:58:59 +00005082/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
5083/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
Sebastian Redle10c2c32008-12-20 09:35:34 +00005084QualType Sema::CheckIncrementDecrementOperand(Expr *Op, SourceLocation OpLoc,
5085 bool isInc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005086 if (Op->isTypeDependent())
5087 return Context.DependentTy;
5088
Chris Lattner6b0cf142008-11-21 07:05:48 +00005089 QualType ResType = Op->getType();
5090 assert(!ResType.isNull() && "no type for increment/decrement expression");
Steve Naroffd50c88e2007-04-05 21:15:20 +00005091
Sebastian Redle10c2c32008-12-20 09:35:34 +00005092 if (getLangOptions().CPlusPlus && ResType->isBooleanType()) {
5093 // Decrement of bool is not allowed.
5094 if (!isInc) {
5095 Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
5096 return QualType();
5097 }
5098 // Increment of bool sets it to true, but is deprecated.
5099 Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
5100 } else if (ResType->isRealType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00005101 // OK!
Steve Naroff6b712a72009-07-14 18:25:06 +00005102 } else if (ResType->isAnyPointerType()) {
5103 QualType PointeeTy = ResType->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00005104
Chris Lattner6b0cf142008-11-21 07:05:48 +00005105 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff7cae42b2009-07-10 23:34:53 +00005106 if (PointeeTy->isVoidType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005107 if (getLangOptions().CPlusPlus) {
5108 Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
5109 << Op->getSourceRange();
5110 return QualType();
5111 }
5112
5113 // Pointer to void is a GNU extension in C.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005114 Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005115 } else if (PointeeTy->isFunctionType()) {
Douglas Gregorf6cd9282009-01-23 00:36:41 +00005116 if (getLangOptions().CPlusPlus) {
5117 Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
5118 << Op->getType() << Op->getSourceRange();
5119 return QualType();
5120 }
5121
5122 Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005123 << ResType << Op->getSourceRange();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005124 } else if (RequireCompleteType(OpLoc, PointeeTy,
Anders Carlsson029fc692009-08-26 22:59:12 +00005125 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump11289f42009-09-09 15:08:12 +00005126 << Op->getSourceRange()
Anders Carlsson029fc692009-08-26 22:59:12 +00005127 << ResType))
Douglas Gregordd430f72009-01-19 19:26:10 +00005128 return QualType();
Fariborz Jahanianca75db72009-07-16 17:59:14 +00005129 // Diagnose bad cases where we step over interface counts.
5130 else if (PointeeTy->isObjCInterfaceType() && LangOpts.ObjCNonFragileABI) {
5131 Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
5132 << PointeeTy << Op->getSourceRange();
5133 return QualType();
5134 }
Chris Lattner6b0cf142008-11-21 07:05:48 +00005135 } else if (ResType->isComplexType()) {
5136 // C99 does not support ++/-- on complex types, we allow as an extension.
5137 Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005138 << ResType << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005139 } else {
5140 Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005141 << ResType << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005142 return QualType();
Steve Naroff46ba1eb2007-04-03 23:13:13 +00005143 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005144 // At this point, we know we have a real, complex or pointer type.
Steve Naroff9e1e5512007-08-23 21:37:33 +00005145 // Now make sure the operand is a modifiable lvalue.
Chris Lattner6b0cf142008-11-21 07:05:48 +00005146 if (CheckForModifiableLvalue(Op, OpLoc, *this))
Steve Naroff35d85152007-05-07 00:24:15 +00005147 return QualType();
Chris Lattner6b0cf142008-11-21 07:05:48 +00005148 return ResType;
Steve Naroff26c8ea52007-03-21 21:08:52 +00005149}
5150
Anders Carlsson806700f2008-02-01 07:15:58 +00005151/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Steve Naroff47500512007-04-19 23:00:49 +00005152/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005153/// where the declaration is needed for type checking. We only need to
5154/// handle cases when the expression references a function designator
5155/// or is an lvalue. Here are some examples:
5156/// - &(x) => x
5157/// - &*****f => f for f a function designator.
5158/// - &s.xx => s
5159/// - &s.zz[1].yy -> s, if zz is an array
5160/// - *(x + 1) -> x, if x is an array
5161/// - &"123"[2] -> 0
5162/// - & __real__ x -> x
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005163static NamedDecl *getPrimaryDecl(Expr *E) {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005164 switch (E->getStmtClass()) {
Steve Naroff47500512007-04-19 23:00:49 +00005165 case Stmt::DeclRefExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005166 return cast<DeclRefExpr>(E)->getDecl();
Steve Naroff47500512007-04-19 23:00:49 +00005167 case Stmt::MemberExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005168 // If this is an arrow operator, the address is an offset from
5169 // the base's value, so the object the base refers to is
5170 // irrelevant.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005171 if (cast<MemberExpr>(E)->isArrow())
Chris Lattner48d52842007-11-16 17:46:48 +00005172 return 0;
Eli Friedman3a1e6922009-04-20 08:23:18 +00005173 // Otherwise, the expression refers to a part of the base
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005174 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson806700f2008-02-01 07:15:58 +00005175 case Stmt::ArraySubscriptExprClass: {
Mike Stump87c57ac2009-05-16 07:39:55 +00005176 // FIXME: This code shouldn't be necessary! We should catch the implicit
5177 // promotion of register arrays earlier.
Eli Friedman3a1e6922009-04-20 08:23:18 +00005178 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
5179 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
5180 if (ICE->getSubExpr()->getType()->isArrayType())
5181 return getPrimaryDecl(ICE->getSubExpr());
5182 }
5183 return 0;
Anders Carlsson806700f2008-02-01 07:15:58 +00005184 }
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005185 case Stmt::UnaryOperatorClass: {
5186 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005187
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005188 switch(UO->getOpcode()) {
Daniel Dunbarb692ef42008-08-04 20:02:37 +00005189 case UnaryOperator::Real:
5190 case UnaryOperator::Imag:
5191 case UnaryOperator::Extension:
5192 return getPrimaryDecl(UO->getSubExpr());
5193 default:
5194 return 0;
5195 }
5196 }
Steve Naroff47500512007-04-19 23:00:49 +00005197 case Stmt::ParenExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005198 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner48d52842007-11-16 17:46:48 +00005199 case Stmt::ImplicitCastExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00005200 // If the result of an implicit cast is an l-value, we care about
5201 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005202 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Steve Naroff47500512007-04-19 23:00:49 +00005203 default:
5204 return 0;
5205 }
5206}
5207
5208/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump4e1f26a2009-02-19 03:04:26 +00005209/// designator or an lvalue designating an object. If it is an lvalue, the
Steve Naroff47500512007-04-19 23:00:49 +00005210/// object cannot be declared with storage class register or be a bit field.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005211/// Note: The usual conversions are *not* applied to the operand of the &
Steve Naroffa78fe7e2007-05-16 19:47:19 +00005212/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005213/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregorcd695e52008-11-10 20:40:00 +00005214/// we allow the '&' but retain the overloaded-function type.
Steve Naroff35d85152007-05-07 00:24:15 +00005215QualType Sema::CheckAddressOfOperand(Expr *op, SourceLocation OpLoc) {
Eli Friedman3a1e6922009-04-20 08:23:18 +00005216 // Make sure to ignore parentheses in subsequent checks
5217 op = op->IgnoreParens();
5218
Douglas Gregor19b8c4f2008-12-17 22:52:20 +00005219 if (op->isTypeDependent())
5220 return Context.DependentTy;
5221
Steve Naroff826e91a2008-01-13 17:10:08 +00005222 if (getLangOptions().C99) {
5223 // Implement C99-only parts of addressof rules.
5224 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
5225 if (uOp->getOpcode() == UnaryOperator::Deref)
5226 // Per C99 6.5.3.2, the address of a deref always returns a valid result
5227 // (assuming the deref expression is valid).
5228 return uOp->getSubExpr()->getType();
5229 }
5230 // Technically, there should be a check for array subscript
5231 // expressions here, but the result of one is always an lvalue anyway.
5232 }
Douglas Gregor5251f1b2008-10-21 16:13:35 +00005233 NamedDecl *dcl = getPrimaryDecl(op);
Chris Lattner67315442008-07-26 21:30:36 +00005234 Expr::isLvalueResult lval = op->isLvalue(Context);
Nuno Lopes17f345f2008-12-16 22:59:47 +00005235
Eli Friedmance7f9002009-05-16 23:27:50 +00005236 if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
5237 // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005238 // The operand must be either an l-value or a function designator
Eli Friedmance7f9002009-05-16 23:27:50 +00005239 if (!op->getType()->isFunctionType()) {
Chris Lattner48d52842007-11-16 17:46:48 +00005240 // FIXME: emit more specific diag...
Chris Lattnerf490e152008-11-19 05:27:50 +00005241 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
5242 << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005243 return QualType();
5244 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00005245 } else if (op->getBitField()) { // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00005246 // The operand cannot be a bit-field
5247 Diag(OpLoc, diag::err_typecheck_address_of)
5248 << "bit-field" << op->getSourceRange();
Douglas Gregor2eedc3a2008-12-20 23:49:58 +00005249 return QualType();
Nate Begemana6b47a42009-02-15 22:45:20 +00005250 } else if (isa<ExtVectorElementExpr>(op) || (isa<ArraySubscriptExpr>(op) &&
5251 cast<ArraySubscriptExpr>(op)->getBase()->getType()->isVectorType())){
Eli Friedman3a1e6922009-04-20 08:23:18 +00005252 // The operand cannot be an element of a vector
Chris Lattner29e812b2008-11-20 06:06:08 +00005253 Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemana6b47a42009-02-15 22:45:20 +00005254 << "vector element" << op->getSourceRange();
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005255 return QualType();
Fariborz Jahanian385db802009-07-07 18:50:52 +00005256 } else if (isa<ObjCPropertyRefExpr>(op)) {
5257 // cannot take address of a property expression.
5258 Diag(OpLoc, diag::err_typecheck_address_of)
5259 << "property expression" << op->getSourceRange();
5260 return QualType();
Anders Carlsson3fa58d12009-09-14 23:15:26 +00005261 } else if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(op)) {
5262 // FIXME: Can LHS ever be null here?
Anders Carlsson01ccf992009-09-15 16:03:44 +00005263 if (!CheckAddressOfOperand(CO->getTrueExpr(), OpLoc).isNull())
5264 return CheckAddressOfOperand(CO->getFalseExpr(), OpLoc);
Steve Naroffb96e4ab62008-02-29 23:30:25 +00005265 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump4e1f26a2009-02-19 03:04:26 +00005266 // We have an lvalue with a decl. Make sure the decl is not declared
Steve Naroff47500512007-04-19 23:00:49 +00005267 // with the register storage-class specifier.
5268 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Steve Naroff35d85152007-05-07 00:24:15 +00005269 if (vd->getStorageClass() == VarDecl::Register) {
Chris Lattner29e812b2008-11-20 06:06:08 +00005270 Diag(OpLoc, diag::err_typecheck_address_of)
5271 << "register variable" << op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005272 return QualType();
5273 }
Douglas Gregor9b146582009-07-08 20:55:45 +00005274 } else if (isa<OverloadedFunctionDecl>(dcl) ||
5275 isa<FunctionTemplateDecl>(dcl)) {
Douglas Gregorcd695e52008-11-10 20:40:00 +00005276 return Context.OverloadTy;
Anders Carlsson0b675f52009-07-08 21:45:58 +00005277 } else if (FieldDecl *FD = dyn_cast<FieldDecl>(dcl)) {
Douglas Gregor9aa8b552008-12-10 21:26:49 +00005278 // Okay: we can take the address of a field.
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005279 // Could be a pointer to member, though, if there is an explicit
5280 // scope qualifier for the class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005281 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005282 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlsson0b675f52009-07-08 21:45:58 +00005283 if (Ctx && Ctx->isRecord()) {
5284 if (FD->getType()->isReferenceType()) {
Mike Stump11289f42009-09-09 15:08:12 +00005285 Diag(OpLoc,
Anders Carlsson0b675f52009-07-08 21:45:58 +00005286 diag::err_cannot_form_pointer_to_member_of_reference_type)
5287 << FD->getDeclName() << FD->getType();
5288 return QualType();
5289 }
Mike Stump11289f42009-09-09 15:08:12 +00005290
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005291 return Context.getMemberPointerType(op->getType(),
5292 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlsson0b675f52009-07-08 21:45:58 +00005293 }
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00005294 }
Anders Carlsson5b535762009-05-16 21:43:42 +00005295 } else if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(dcl)) {
Nuno Lopes5773a1b2008-12-16 22:58:26 +00005296 // Okay: we can take the address of a function.
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005297 // As above.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00005298 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier() &&
5299 MD->isInstance())
Anders Carlsson5b535762009-05-16 21:43:42 +00005300 return Context.getMemberPointerType(op->getType(),
5301 Context.getTypeDeclType(MD->getParent()).getTypePtr());
5302 } else if (!isa<FunctionDecl>(dcl))
Steve Narofff633d092007-04-25 19:01:39 +00005303 assert(0 && "Unknown/unexpected decl type");
Steve Naroff47500512007-04-19 23:00:49 +00005304 }
Sebastian Redl18f8ff62009-02-04 21:23:32 +00005305
Eli Friedmance7f9002009-05-16 23:27:50 +00005306 if (lval == Expr::LV_IncompleteVoidType) {
5307 // Taking the address of a void variable is technically illegal, but we
5308 // allow it in cases which are otherwise valid.
5309 // Example: "extern void x; void* y = &x;".
5310 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
5311 }
5312
Steve Naroff47500512007-04-19 23:00:49 +00005313 // If the operand has type "type", the result has type "pointer to type".
Steve Naroff35d85152007-05-07 00:24:15 +00005314 return Context.getPointerType(op->getType());
Steve Naroff47500512007-04-19 23:00:49 +00005315}
5316
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005317QualType Sema::CheckIndirectionOperand(Expr *Op, SourceLocation OpLoc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005318 if (Op->isTypeDependent())
5319 return Context.DependentTy;
5320
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005321 UsualUnaryConversions(Op);
5322 QualType Ty = Op->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005323
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005324 // Note that per both C89 and C99, this is always legal, even if ptype is an
5325 // incomplete type or void. It would be possible to warn about dereferencing
5326 // a void pointer, but it's completely well-defined, and such a warning is
5327 // unlikely to catch any mistakes.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005328 if (const PointerType *PT = Ty->getAs<PointerType>())
Steve Naroff826e91a2008-01-13 17:10:08 +00005329 return PT->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005330
John McCall9dd450b2009-09-21 23:43:11 +00005331 if (const ObjCObjectPointerType *OPT = Ty->getAs<ObjCObjectPointerType>())
Fariborz Jahanianf15d4b62009-09-03 00:43:07 +00005332 return OPT->getPointeeType();
Steve Naroff7cae42b2009-07-10 23:34:53 +00005333
Chris Lattner29e812b2008-11-20 06:06:08 +00005334 Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner6a2ed6f2008-11-23 09:13:29 +00005335 << Ty << Op->getSourceRange();
Steve Naroff35d85152007-05-07 00:24:15 +00005336 return QualType();
Steve Naroff1926c832007-04-24 00:23:05 +00005337}
Steve Naroff218bc2b2007-05-04 21:54:46 +00005338
5339static inline BinaryOperator::Opcode ConvertTokenKindToBinaryOpcode(
5340 tok::TokenKind Kind) {
5341 BinaryOperator::Opcode Opc;
5342 switch (Kind) {
5343 default: assert(0 && "Unknown binop!");
Sebastian Redl112a97662009-02-07 00:15:38 +00005344 case tok::periodstar: Opc = BinaryOperator::PtrMemD; break;
5345 case tok::arrowstar: Opc = BinaryOperator::PtrMemI; break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00005346 case tok::star: Opc = BinaryOperator::Mul; break;
5347 case tok::slash: Opc = BinaryOperator::Div; break;
5348 case tok::percent: Opc = BinaryOperator::Rem; break;
5349 case tok::plus: Opc = BinaryOperator::Add; break;
5350 case tok::minus: Opc = BinaryOperator::Sub; break;
5351 case tok::lessless: Opc = BinaryOperator::Shl; break;
5352 case tok::greatergreater: Opc = BinaryOperator::Shr; break;
5353 case tok::lessequal: Opc = BinaryOperator::LE; break;
5354 case tok::less: Opc = BinaryOperator::LT; break;
5355 case tok::greaterequal: Opc = BinaryOperator::GE; break;
5356 case tok::greater: Opc = BinaryOperator::GT; break;
5357 case tok::exclaimequal: Opc = BinaryOperator::NE; break;
5358 case tok::equalequal: Opc = BinaryOperator::EQ; break;
5359 case tok::amp: Opc = BinaryOperator::And; break;
5360 case tok::caret: Opc = BinaryOperator::Xor; break;
5361 case tok::pipe: Opc = BinaryOperator::Or; break;
5362 case tok::ampamp: Opc = BinaryOperator::LAnd; break;
5363 case tok::pipepipe: Opc = BinaryOperator::LOr; break;
5364 case tok::equal: Opc = BinaryOperator::Assign; break;
5365 case tok::starequal: Opc = BinaryOperator::MulAssign; break;
5366 case tok::slashequal: Opc = BinaryOperator::DivAssign; break;
5367 case tok::percentequal: Opc = BinaryOperator::RemAssign; break;
5368 case tok::plusequal: Opc = BinaryOperator::AddAssign; break;
5369 case tok::minusequal: Opc = BinaryOperator::SubAssign; break;
5370 case tok::lesslessequal: Opc = BinaryOperator::ShlAssign; break;
5371 case tok::greatergreaterequal: Opc = BinaryOperator::ShrAssign; break;
5372 case tok::ampequal: Opc = BinaryOperator::AndAssign; break;
5373 case tok::caretequal: Opc = BinaryOperator::XorAssign; break;
5374 case tok::pipeequal: Opc = BinaryOperator::OrAssign; break;
5375 case tok::comma: Opc = BinaryOperator::Comma; break;
5376 }
5377 return Opc;
5378}
5379
Steve Naroff35d85152007-05-07 00:24:15 +00005380static inline UnaryOperator::Opcode ConvertTokenKindToUnaryOpcode(
5381 tok::TokenKind Kind) {
5382 UnaryOperator::Opcode Opc;
5383 switch (Kind) {
5384 default: assert(0 && "Unknown unary op!");
5385 case tok::plusplus: Opc = UnaryOperator::PreInc; break;
5386 case tok::minusminus: Opc = UnaryOperator::PreDec; break;
5387 case tok::amp: Opc = UnaryOperator::AddrOf; break;
5388 case tok::star: Opc = UnaryOperator::Deref; break;
5389 case tok::plus: Opc = UnaryOperator::Plus; break;
5390 case tok::minus: Opc = UnaryOperator::Minus; break;
5391 case tok::tilde: Opc = UnaryOperator::Not; break;
5392 case tok::exclaim: Opc = UnaryOperator::LNot; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005393 case tok::kw___real: Opc = UnaryOperator::Real; break;
5394 case tok::kw___imag: Opc = UnaryOperator::Imag; break;
Chris Lattnerd0f76512007-06-08 22:16:53 +00005395 case tok::kw___extension__: Opc = UnaryOperator::Extension; break;
Steve Naroff35d85152007-05-07 00:24:15 +00005396 }
5397 return Opc;
5398}
5399
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005400/// CreateBuiltinBinOp - Creates a new built-in binary operation with
5401/// operator @p Opc at location @c TokLoc. This routine only supports
5402/// built-in operations; ActOnBinOp handles overloaded operators.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005403Action::OwningExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
5404 unsigned Op,
5405 Expr *lhs, Expr *rhs) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005406 QualType ResultTy; // Result type of the binary operator.
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005407 BinaryOperator::Opcode Opc = (BinaryOperator::Opcode)Op;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005408 // The following two variables are used for compound assignment operators
5409 QualType CompLHSTy; // Type of LHS after promotions for computation
5410 QualType CompResultTy; // Type of computation result
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005411
5412 switch (Opc) {
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005413 case BinaryOperator::Assign:
5414 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, QualType());
5415 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005416 case BinaryOperator::PtrMemD:
5417 case BinaryOperator::PtrMemI:
5418 ResultTy = CheckPointerToMemberOperands(lhs, rhs, OpLoc,
5419 Opc == BinaryOperator::PtrMemI);
5420 break;
5421 case BinaryOperator::Mul:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005422 case BinaryOperator::Div:
5423 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc);
5424 break;
5425 case BinaryOperator::Rem:
5426 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
5427 break;
5428 case BinaryOperator::Add:
5429 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
5430 break;
5431 case BinaryOperator::Sub:
5432 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
5433 break;
Sebastian Redl112a97662009-02-07 00:15:38 +00005434 case BinaryOperator::Shl:
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005435 case BinaryOperator::Shr:
5436 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc);
5437 break;
5438 case BinaryOperator::LE:
5439 case BinaryOperator::LT:
5440 case BinaryOperator::GE:
5441 case BinaryOperator::GT:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005442 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005443 break;
5444 case BinaryOperator::EQ:
5445 case BinaryOperator::NE:
Douglas Gregor7a5bc762009-04-06 18:45:53 +00005446 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005447 break;
5448 case BinaryOperator::And:
5449 case BinaryOperator::Xor:
5450 case BinaryOperator::Or:
5451 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
5452 break;
5453 case BinaryOperator::LAnd:
5454 case BinaryOperator::LOr:
5455 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc);
5456 break;
5457 case BinaryOperator::MulAssign:
5458 case BinaryOperator::DivAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005459 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true);
5460 CompLHSTy = CompResultTy;
5461 if (!CompResultTy.isNull())
5462 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005463 break;
5464 case BinaryOperator::RemAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005465 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
5466 CompLHSTy = CompResultTy;
5467 if (!CompResultTy.isNull())
5468 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005469 break;
5470 case BinaryOperator::AddAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005471 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5472 if (!CompResultTy.isNull())
5473 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005474 break;
5475 case BinaryOperator::SubAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005476 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
5477 if (!CompResultTy.isNull())
5478 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005479 break;
5480 case BinaryOperator::ShlAssign:
5481 case BinaryOperator::ShrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005482 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, true);
5483 CompLHSTy = CompResultTy;
5484 if (!CompResultTy.isNull())
5485 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005486 break;
5487 case BinaryOperator::AndAssign:
5488 case BinaryOperator::XorAssign:
5489 case BinaryOperator::OrAssign:
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005490 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
5491 CompLHSTy = CompResultTy;
5492 if (!CompResultTy.isNull())
5493 ResultTy = CheckAssignmentOperands(lhs, rhs, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005494 break;
5495 case BinaryOperator::Comma:
5496 ResultTy = CheckCommaOperands(lhs, rhs, OpLoc);
5497 break;
5498 }
5499 if (ResultTy.isNull())
Sebastian Redlb5d49352009-01-19 22:31:54 +00005500 return ExprError();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005501 if (CompResultTy.isNull())
Steve Narofff6009ed2009-01-21 00:14:39 +00005502 return Owned(new (Context) BinaryOperator(lhs, rhs, Opc, ResultTy, OpLoc));
5503 else
5504 return Owned(new (Context) CompoundAssignOperator(lhs, rhs, Opc, ResultTy,
Eli Friedman8b7b1b12009-03-28 01:22:36 +00005505 CompLHSTy, CompResultTy,
5506 OpLoc));
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005507}
5508
Sebastian Redl44615072009-10-27 12:10:02 +00005509/// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps
5510/// ParenRange in parentheses.
Sebastian Redl4afb7c582009-10-26 17:01:32 +00005511static void SuggestParentheses(Sema &Self, SourceLocation Loc,
5512 const PartialDiagnostic &PD,
5513 SourceRange ParenRange)
5514{
5515 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
5516 if (!ParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
5517 // We can't display the parentheses, so just dig the
5518 // warning/error and return.
5519 Self.Diag(Loc, PD);
5520 return;
5521 }
5522
5523 Self.Diag(Loc, PD)
5524 << CodeModificationHint::CreateInsertion(ParenRange.getBegin(), "(")
5525 << CodeModificationHint::CreateInsertion(EndLoc, ")");
5526}
5527
Sebastian Redl44615072009-10-27 12:10:02 +00005528/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
5529/// operators are mixed in a way that suggests that the programmer forgot that
5530/// comparison operators have higher precedence. The most typical example of
5531/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
Sebastian Redl43028242009-10-26 15:24:15 +00005532static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperator::Opcode Opc,
5533 SourceLocation OpLoc,Expr *lhs,Expr *rhs){
Sebastian Redl44615072009-10-27 12:10:02 +00005534 typedef BinaryOperator BinOp;
5535 BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1),
5536 rhsopc = static_cast<BinOp::Opcode>(-1);
5537 if (BinOp *BO = dyn_cast<BinOp>(lhs))
Sebastian Redl43028242009-10-26 15:24:15 +00005538 lhsopc = BO->getOpcode();
Sebastian Redl44615072009-10-27 12:10:02 +00005539 if (BinOp *BO = dyn_cast<BinOp>(rhs))
Sebastian Redl43028242009-10-26 15:24:15 +00005540 rhsopc = BO->getOpcode();
5541
5542 // Subs are not binary operators.
5543 if (lhsopc == -1 && rhsopc == -1)
5544 return;
5545
5546 // Bitwise operations are sometimes used as eager logical ops.
5547 // Don't diagnose this.
Sebastian Redl44615072009-10-27 12:10:02 +00005548 if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) &&
5549 (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc)))
Sebastian Redl43028242009-10-26 15:24:15 +00005550 return;
5551
Sebastian Redl44615072009-10-27 12:10:02 +00005552 if (BinOp::isComparisonOp(lhsopc))
Sebastian Redl4afb7c582009-10-26 17:01:32 +00005553 SuggestParentheses(Self, OpLoc,
5554 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redl44615072009-10-27 12:10:02 +00005555 << SourceRange(lhs->getLocStart(), OpLoc)
5556 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc),
5557 SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd()));
5558 else if (BinOp::isComparisonOp(rhsopc))
Sebastian Redl4afb7c582009-10-26 17:01:32 +00005559 SuggestParentheses(Self, OpLoc,
5560 PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redl44615072009-10-27 12:10:02 +00005561 << SourceRange(OpLoc, rhs->getLocEnd())
5562 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc),
5563 SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart()));
Sebastian Redl43028242009-10-26 15:24:15 +00005564}
5565
5566/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
5567/// precedence. This currently diagnoses only "arg1 'bitwise' arg2 'eq' arg3".
5568/// But it could also warn about arg1 && arg2 || arg3, as GCC 4.3+ does.
5569static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperator::Opcode Opc,
5570 SourceLocation OpLoc, Expr *lhs, Expr *rhs){
Sebastian Redl44615072009-10-27 12:10:02 +00005571 if (BinaryOperator::isBitwiseOp(Opc))
Sebastian Redl43028242009-10-26 15:24:15 +00005572 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs);
5573}
5574
Steve Naroff218bc2b2007-05-04 21:54:46 +00005575// Binary Operators. 'Tok' is the token for the operator.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005576Action::OwningExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
5577 tok::TokenKind Kind,
5578 ExprArg LHS, ExprArg RHS) {
Steve Naroff218bc2b2007-05-04 21:54:46 +00005579 BinaryOperator::Opcode Opc = ConvertTokenKindToBinaryOpcode(Kind);
Anders Carlssonb781bcd2009-05-01 19:49:17 +00005580 Expr *lhs = LHS.takeAs<Expr>(), *rhs = RHS.takeAs<Expr>();
Steve Naroff218bc2b2007-05-04 21:54:46 +00005581
Steve Naroff83895f72007-09-16 03:34:24 +00005582 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
5583 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Steve Naroff218bc2b2007-05-04 21:54:46 +00005584
Sebastian Redl43028242009-10-26 15:24:15 +00005585 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
5586 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs);
5587
Douglas Gregor5287f092009-11-05 00:51:44 +00005588 return BuildBinOp(S, TokLoc, Opc, lhs, rhs);
5589}
5590
5591Action::OwningExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
5592 BinaryOperator::Opcode Opc,
5593 Expr *lhs, Expr *rhs) {
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005594 if (getLangOptions().CPlusPlus &&
Mike Stump11289f42009-09-09 15:08:12 +00005595 (lhs->getType()->isOverloadableType() ||
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005596 rhs->getType()->isOverloadableType())) {
5597 // Find all of the overloaded operators visible from this
5598 // point. We perform both an operator-name lookup from the local
5599 // scope and an argument-dependent lookup based on the types of
5600 // the arguments.
Douglas Gregord2b7ef62009-03-13 00:33:25 +00005601 FunctionSet Functions;
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005602 OverloadedOperatorKind OverOp = BinaryOperator::getOverloadedOperator(Opc);
5603 if (OverOp != OO_None) {
Douglas Gregor5287f092009-11-05 00:51:44 +00005604 if (S)
5605 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
5606 Functions);
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005607 Expr *Args[2] = { lhs, rhs };
Mike Stump11289f42009-09-09 15:08:12 +00005608 DeclarationName OpName
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005609 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redlc057f422009-10-23 19:23:15 +00005610 ArgumentDependentLookup(OpName, /*Operator*/true, Args, 2, Functions);
Douglas Gregora11693b2008-11-12 17:17:38 +00005611 }
Douglas Gregor5287f092009-11-05 00:51:44 +00005612
Douglas Gregor1baf54e2009-03-13 18:40:31 +00005613 // Build the (potentially-overloaded, potentially-dependent)
5614 // binary operation.
Douglas Gregor5287f092009-11-05 00:51:44 +00005615 return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs);
Sebastian Redlb5d49352009-01-19 22:31:54 +00005616 }
Douglas Gregor5287f092009-11-05 00:51:44 +00005617
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +00005618 // Build a built-in binary operation.
Douglas Gregor5287f092009-11-05 00:51:44 +00005619 return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs);
Steve Naroff218bc2b2007-05-04 21:54:46 +00005620}
5621
Douglas Gregor084d8552009-03-13 23:49:33 +00005622Action::OwningExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Mike Stump11289f42009-09-09 15:08:12 +00005623 unsigned OpcIn,
Douglas Gregor084d8552009-03-13 23:49:33 +00005624 ExprArg InputArg) {
5625 UnaryOperator::Opcode Opc = static_cast<UnaryOperator::Opcode>(OpcIn);
Douglas Gregord08452f2008-11-19 15:42:04 +00005626
Mike Stump87c57ac2009-05-16 07:39:55 +00005627 // FIXME: Input is modified below, but InputArg is not updated appropriately.
Douglas Gregor084d8552009-03-13 23:49:33 +00005628 Expr *Input = (Expr *)InputArg.get();
Steve Naroff35d85152007-05-07 00:24:15 +00005629 QualType resultType;
5630 switch (Opc) {
Douglas Gregor084d8552009-03-13 23:49:33 +00005631 case UnaryOperator::OffsetOf:
5632 assert(false && "Invalid unary operator");
5633 break;
5634
Steve Naroff35d85152007-05-07 00:24:15 +00005635 case UnaryOperator::PreInc:
5636 case UnaryOperator::PreDec:
Eli Friedman6aea5752009-07-22 22:25:00 +00005637 case UnaryOperator::PostInc:
5638 case UnaryOperator::PostDec:
Sebastian Redle10c2c32008-12-20 09:35:34 +00005639 resultType = CheckIncrementDecrementOperand(Input, OpLoc,
Eli Friedman6aea5752009-07-22 22:25:00 +00005640 Opc == UnaryOperator::PreInc ||
5641 Opc == UnaryOperator::PostInc);
Steve Naroff35d85152007-05-07 00:24:15 +00005642 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005643 case UnaryOperator::AddrOf:
Chris Lattner86554282007-06-08 22:32:33 +00005644 resultType = CheckAddressOfOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00005645 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005646 case UnaryOperator::Deref:
Steve Naroffb7235642007-12-18 04:06:57 +00005647 DefaultFunctionArrayConversion(Input);
Chris Lattner86554282007-06-08 22:32:33 +00005648 resultType = CheckIndirectionOperand(Input, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +00005649 break;
5650 case UnaryOperator::Plus:
5651 case UnaryOperator::Minus:
Steve Naroff31090012007-07-16 21:54:35 +00005652 UsualUnaryConversions(Input);
5653 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005654 if (resultType->isDependentType())
5655 break;
Douglas Gregord08452f2008-11-19 15:42:04 +00005656 if (resultType->isArithmeticType()) // C99 6.5.3.3p1
5657 break;
5658 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
5659 resultType->isEnumeralType())
5660 break;
5661 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
5662 Opc == UnaryOperator::Plus &&
5663 resultType->isPointerType())
5664 break;
5665
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005666 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5667 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00005668 case UnaryOperator::Not: // bitwise complement
Steve Naroff31090012007-07-16 21:54:35 +00005669 UsualUnaryConversions(Input);
5670 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005671 if (resultType->isDependentType())
5672 break;
Chris Lattner0d707612008-07-25 23:52:49 +00005673 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
5674 if (resultType->isComplexType() || resultType->isComplexIntegerType())
5675 // C99 does not support '~' for complex conjugation.
Chris Lattner29e812b2008-11-20 06:06:08 +00005676 Diag(OpLoc, diag::ext_integer_complement_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005677 << resultType << Input->getSourceRange();
Chris Lattner0d707612008-07-25 23:52:49 +00005678 else if (!resultType->isIntegerType())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005679 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5680 << resultType << Input->getSourceRange());
Steve Naroff35d85152007-05-07 00:24:15 +00005681 break;
5682 case UnaryOperator::LNot: // logical negation
Steve Naroff71b59a92007-06-04 22:22:31 +00005683 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Steve Naroff31090012007-07-16 21:54:35 +00005684 DefaultFunctionArrayConversion(Input);
5685 resultType = Input->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005686 if (resultType->isDependentType())
5687 break;
Steve Naroff35d85152007-05-07 00:24:15 +00005688 if (!resultType->isScalarType()) // C99 6.5.3.3p1
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005689 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
5690 << resultType << Input->getSourceRange());
Chris Lattnerbe31ed82007-06-02 19:11:33 +00005691 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005692 // In C++, it's bool. C++ 5.3.1p8
5693 resultType = getLangOptions().CPlusPlus ? Context.BoolTy : Context.IntTy;
Steve Naroff35d85152007-05-07 00:24:15 +00005694 break;
Chris Lattner30b5dd02007-08-24 21:16:53 +00005695 case UnaryOperator::Real:
Chris Lattner30b5dd02007-08-24 21:16:53 +00005696 case UnaryOperator::Imag:
Chris Lattner709322b2009-02-17 08:12:06 +00005697 resultType = CheckRealImagOperand(Input, OpLoc, Opc == UnaryOperator::Real);
Chris Lattner30b5dd02007-08-24 21:16:53 +00005698 break;
Chris Lattner86554282007-06-08 22:32:33 +00005699 case UnaryOperator::Extension:
Chris Lattner86554282007-06-08 22:32:33 +00005700 resultType = Input->getType();
Steve Naroff043d45d2007-05-15 02:32:35 +00005701 break;
Steve Naroff35d85152007-05-07 00:24:15 +00005702 }
5703 if (resultType.isNull())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005704 return ExprError();
Douglas Gregor084d8552009-03-13 23:49:33 +00005705
5706 InputArg.release();
Steve Narofff6009ed2009-01-21 00:14:39 +00005707 return Owned(new (Context) UnaryOperator(Input, Opc, resultType, OpLoc));
Steve Naroff35d85152007-05-07 00:24:15 +00005708}
Chris Lattnereefa10e2007-05-28 06:56:27 +00005709
Douglas Gregor5287f092009-11-05 00:51:44 +00005710Action::OwningExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
5711 UnaryOperator::Opcode Opc,
5712 ExprArg input) {
Douglas Gregor084d8552009-03-13 23:49:33 +00005713 Expr *Input = (Expr*)input.get();
Douglas Gregor084d8552009-03-13 23:49:33 +00005714 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType()) {
5715 // Find all of the overloaded operators visible from this
5716 // point. We perform both an operator-name lookup from the local
5717 // scope and an argument-dependent lookup based on the types of
5718 // the arguments.
5719 FunctionSet Functions;
5720 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
5721 if (OverOp != OO_None) {
Douglas Gregor5287f092009-11-05 00:51:44 +00005722 if (S)
5723 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
5724 Functions);
Mike Stump11289f42009-09-09 15:08:12 +00005725 DeclarationName OpName
Douglas Gregor084d8552009-03-13 23:49:33 +00005726 = Context.DeclarationNames.getCXXOperatorName(OverOp);
Sebastian Redlc057f422009-10-23 19:23:15 +00005727 ArgumentDependentLookup(OpName, /*Operator*/true, &Input, 1, Functions);
Douglas Gregor084d8552009-03-13 23:49:33 +00005728 }
Douglas Gregor5287f092009-11-05 00:51:44 +00005729
Douglas Gregor084d8552009-03-13 23:49:33 +00005730 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, move(input));
5731 }
Douglas Gregor5287f092009-11-05 00:51:44 +00005732
Douglas Gregor084d8552009-03-13 23:49:33 +00005733 return CreateBuiltinUnaryOp(OpLoc, Opc, move(input));
5734}
5735
Douglas Gregor5287f092009-11-05 00:51:44 +00005736// Unary Operators. 'Tok' is the token for the operator.
5737Action::OwningExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
5738 tok::TokenKind Op, ExprArg input) {
5739 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), move(input));
5740}
5741
Steve Naroff66356bd2007-09-16 14:56:35 +00005742/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005743Sema::OwningExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc,
5744 SourceLocation LabLoc,
5745 IdentifierInfo *LabelII) {
Chris Lattnereefa10e2007-05-28 06:56:27 +00005746 // Look up the record for this label identifier.
Chris Lattner3318e862009-04-18 20:01:55 +00005747 LabelStmt *&LabelDecl = getLabelMap()[LabelII];
Mike Stump4e1f26a2009-02-19 03:04:26 +00005748
Daniel Dunbar88402ce2008-08-04 16:51:22 +00005749 // If we haven't seen this label yet, create a forward reference. It
5750 // will be validated and/or cleaned up in ActOnFinishFunctionBody.
Steve Naroff846b1ec2009-03-13 15:38:40 +00005751 if (LabelDecl == 0)
Steve Narofff6009ed2009-01-21 00:14:39 +00005752 LabelDecl = new (Context) LabelStmt(LabLoc, LabelII, 0);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005753
Chris Lattnereefa10e2007-05-28 06:56:27 +00005754 // Create the AST node. The address of a label always has type 'void*'.
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005755 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, LabelDecl,
5756 Context.getPointerType(Context.VoidTy)));
Chris Lattnereefa10e2007-05-28 06:56:27 +00005757}
5758
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005759Sema::OwningExprResult
5760Sema::ActOnStmtExpr(SourceLocation LPLoc, StmtArg substmt,
5761 SourceLocation RPLoc) { // "({..})"
5762 Stmt *SubStmt = static_cast<Stmt*>(substmt.get());
Chris Lattner366727f2007-07-24 16:58:17 +00005763 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
5764 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
5765
Eli Friedman52cc0162009-01-24 23:09:00 +00005766 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Chris Lattnera69b0762009-04-25 19:11:05 +00005767 if (isFileScope)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005768 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedman52cc0162009-01-24 23:09:00 +00005769
Chris Lattner366727f2007-07-24 16:58:17 +00005770 // FIXME: there are a variety of strange constraints to enforce here, for
5771 // example, it is not possible to goto into a stmt expression apparently.
5772 // More semantic analysis is needed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00005773
Chris Lattner366727f2007-07-24 16:58:17 +00005774 // If there are sub stmts in the compound stmt, take the type of the last one
5775 // as the type of the stmtexpr.
5776 QualType Ty = Context.VoidTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005777
Chris Lattner944d3062008-07-26 19:51:01 +00005778 if (!Compound->body_empty()) {
5779 Stmt *LastStmt = Compound->body_back();
5780 // If LastStmt is a label, skip down through into the body.
5781 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt))
5782 LastStmt = Label->getSubStmt();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005783
Chris Lattner944d3062008-07-26 19:51:01 +00005784 if (Expr *LastExpr = dyn_cast<Expr>(LastStmt))
Chris Lattner366727f2007-07-24 16:58:17 +00005785 Ty = LastExpr->getType();
Chris Lattner944d3062008-07-26 19:51:01 +00005786 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005787
Eli Friedmanba961a92009-03-23 00:24:07 +00005788 // FIXME: Check that expression type is complete/non-abstract; statement
5789 // expressions are not lvalues.
5790
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005791 substmt.release();
5792 return Owned(new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc));
Chris Lattner366727f2007-07-24 16:58:17 +00005793}
Steve Naroff78864672007-08-01 22:05:33 +00005794
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005795Sema::OwningExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
5796 SourceLocation BuiltinLoc,
5797 SourceLocation TypeLoc,
5798 TypeTy *argty,
5799 OffsetOfComponent *CompPtr,
5800 unsigned NumComponents,
5801 SourceLocation RPLoc) {
5802 // FIXME: This function leaks all expressions in the offset components on
5803 // error.
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00005804 // FIXME: Preserve type source info.
5805 QualType ArgTy = GetTypeFromParser(argty);
Chris Lattnerf17bd422007-08-30 17:45:32 +00005806 assert(!ArgTy.isNull() && "Missing type argument!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00005807
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005808 bool Dependent = ArgTy->isDependentType();
5809
Chris Lattnerf17bd422007-08-30 17:45:32 +00005810 // We must have at least one component that refers to the type, and the first
5811 // one is known to be a field designator. Verify that the ArgTy represents
5812 // a struct/union/class.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005813 if (!Dependent && !ArgTy->isRecordType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005814 return ExprError(Diag(TypeLoc, diag::err_offsetof_record_type) << ArgTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005815
Eli Friedmanba961a92009-03-23 00:24:07 +00005816 // FIXME: Type must be complete per C99 7.17p3 because a declaring a variable
5817 // with an incomplete type would be illegal.
Douglas Gregor26897462009-03-11 16:48:53 +00005818
Eli Friedman988a16b2009-02-27 06:44:11 +00005819 // Otherwise, create a null pointer as the base, and iteratively process
5820 // the offsetof designators.
5821 QualType ArgTyPtr = Context.getPointerType(ArgTy);
5822 Expr* Res = new (Context) ImplicitValueInitExpr(ArgTyPtr);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005823 Res = new (Context) UnaryOperator(Res, UnaryOperator::Deref,
Eli Friedman988a16b2009-02-27 06:44:11 +00005824 ArgTy, SourceLocation());
Eli Friedman16c88df2009-01-26 01:33:06 +00005825
Chris Lattner78502cf2007-08-31 21:49:13 +00005826 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
5827 // GCC extension, diagnose them.
Eli Friedman988a16b2009-02-27 06:44:11 +00005828 // FIXME: This diagnostic isn't actually visible because the location is in
5829 // a system header!
Chris Lattner78502cf2007-08-31 21:49:13 +00005830 if (NumComponents != 1)
Chris Lattnerf490e152008-11-19 05:27:50 +00005831 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
5832 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005833
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005834 if (!Dependent) {
Eli Friedman8469bc72009-05-03 21:22:18 +00005835 bool DidWarnAboutNonPOD = false;
Mike Stump11289f42009-09-09 15:08:12 +00005836
John McCall9eff4e62009-11-04 03:03:43 +00005837 if (RequireCompleteType(TypeLoc, Res->getType(),
5838 diag::err_offsetof_incomplete_type))
5839 return ExprError();
5840
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005841 // FIXME: Dependent case loses a lot of information here. And probably
5842 // leaks like a sieve.
5843 for (unsigned i = 0; i != NumComponents; ++i) {
5844 const OffsetOfComponent &OC = CompPtr[i];
5845 if (OC.isBrackets) {
5846 // Offset of an array sub-field. TODO: Should we allow vector elements?
5847 const ArrayType *AT = Context.getAsArrayType(Res->getType());
5848 if (!AT) {
5849 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005850 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
5851 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005852 }
5853
5854 // FIXME: C++: Verify that operator[] isn't overloaded.
5855
Eli Friedman988a16b2009-02-27 06:44:11 +00005856 // Promote the array so it looks more like a normal array subscript
5857 // expression.
5858 DefaultFunctionArrayConversion(Res);
5859
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005860 // C99 6.5.2.1p1
5861 Expr *Idx = static_cast<Expr*>(OC.U.E);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005862 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005863 if (!Idx->isTypeDependent() && !Idx->getType()->isIntegerType())
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005864 return ExprError(Diag(Idx->getLocStart(),
Chris Lattner003af242009-04-25 22:50:55 +00005865 diag::err_typecheck_subscript_not_integer)
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005866 << Idx->getSourceRange());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005867
5868 Res = new (Context) ArraySubscriptExpr(Res, Idx, AT->getElementType(),
5869 OC.LocEnd);
5870 continue;
Chris Lattnerf17bd422007-08-30 17:45:32 +00005871 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005872
Ted Kremenekc23c7e62009-07-29 21:53:49 +00005873 const RecordType *RC = Res->getType()->getAs<RecordType>();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005874 if (!RC) {
5875 Res->Destroy(Context);
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005876 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
5877 << Res->getType());
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005878 }
Chris Lattner98dbf0a2007-08-30 17:59:59 +00005879
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005880 // Get the decl corresponding to this.
5881 RecordDecl *RD = RC->getDecl();
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00005882 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00005883 if (!CRD->isPOD() && !DidWarnAboutNonPOD) {
Anders Carlsson8b98d022009-05-02 17:45:47 +00005884 ExprError(Diag(BuiltinLoc, diag::warn_offsetof_non_pod_type)
5885 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
5886 << Res->getType());
Anders Carlsson38ebcaa2009-05-02 18:36:10 +00005887 DidWarnAboutNonPOD = true;
5888 }
Anders Carlsson2bbb86b2009-05-01 23:20:30 +00005889 }
Mike Stump11289f42009-09-09 15:08:12 +00005890
John McCall9f3059a2009-10-09 21:13:30 +00005891 LookupResult R;
5892 LookupQualifiedName(R, RD, OC.U.IdentInfo, LookupMemberName);
5893
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005894 FieldDecl *MemberDecl
John McCall9f3059a2009-10-09 21:13:30 +00005895 = dyn_cast_or_null<FieldDecl>(R.getAsSingleDecl(Context));
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005896 // FIXME: Leaks Res
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005897 if (!MemberDecl)
Douglas Gregore40876a2009-10-13 21:16:44 +00005898 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
5899 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart, OC.LocEnd));
Mike Stump4e1f26a2009-02-19 03:04:26 +00005900
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005901 // FIXME: C++: Verify that MemberDecl isn't a static field.
5902 // FIXME: Verify that MemberDecl isn't a bitfield.
Eli Friedman64fc3c62009-04-26 20:50:44 +00005903 if (cast<RecordDecl>(MemberDecl->getDeclContext())->isAnonymousStructOrUnion()) {
Anders Carlsson3cbc8592009-05-01 19:30:39 +00005904 Res = BuildAnonymousStructUnionMemberReference(
5905 SourceLocation(), MemberDecl, Res, SourceLocation()).takeAs<Expr>();
Eli Friedman64fc3c62009-04-26 20:50:44 +00005906 } else {
5907 // MemberDecl->getType() doesn't get the right qualifiers, but it
5908 // doesn't matter here.
5909 Res = new (Context) MemberExpr(Res, false, MemberDecl, OC.LocEnd,
5910 MemberDecl->getType().getNonReferenceType());
5911 }
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005912 }
Chris Lattnerf17bd422007-08-30 17:45:32 +00005913 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00005914
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005915 return Owned(new (Context) UnaryOperator(Res, UnaryOperator::OffsetOf,
5916 Context.getSizeType(), BuiltinLoc));
Chris Lattnerf17bd422007-08-30 17:45:32 +00005917}
5918
5919
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005920Sema::OwningExprResult Sema::ActOnTypesCompatibleExpr(SourceLocation BuiltinLoc,
5921 TypeTy *arg1,TypeTy *arg2,
5922 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00005923 // FIXME: Preserve type source info.
5924 QualType argT1 = GetTypeFromParser(arg1);
5925 QualType argT2 = GetTypeFromParser(arg2);
Mike Stump4e1f26a2009-02-19 03:04:26 +00005926
Steve Naroff78864672007-08-01 22:05:33 +00005927 assert((!argT1.isNull() && !argT2.isNull()) && "Missing type argument(s)");
Mike Stump4e1f26a2009-02-19 03:04:26 +00005928
Douglas Gregorf907cbf2009-05-19 22:28:02 +00005929 if (getLangOptions().CPlusPlus) {
5930 Diag(BuiltinLoc, diag::err_types_compatible_p_in_cplusplus)
5931 << SourceRange(BuiltinLoc, RPLoc);
5932 return ExprError();
5933 }
5934
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005935 return Owned(new (Context) TypesCompatibleExpr(Context.IntTy, BuiltinLoc,
5936 argT1, argT2, RPLoc));
Steve Naroff78864672007-08-01 22:05:33 +00005937}
5938
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005939Sema::OwningExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
5940 ExprArg cond,
5941 ExprArg expr1, ExprArg expr2,
5942 SourceLocation RPLoc) {
5943 Expr *CondExpr = static_cast<Expr*>(cond.get());
5944 Expr *LHSExpr = static_cast<Expr*>(expr1.get());
5945 Expr *RHSExpr = static_cast<Expr*>(expr2.get());
Mike Stump4e1f26a2009-02-19 03:04:26 +00005946
Steve Naroff9efdabc2007-08-03 21:21:27 +00005947 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
5948
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005949 QualType resType;
Douglas Gregor56751b52009-09-25 04:25:58 +00005950 bool ValueDependent = false;
Douglas Gregor0df91122009-05-19 22:43:30 +00005951 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005952 resType = Context.DependentTy;
Douglas Gregor56751b52009-09-25 04:25:58 +00005953 ValueDependent = true;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005954 } else {
5955 // The conditional expression is required to be a constant expression.
5956 llvm::APSInt condEval(32);
5957 SourceLocation ExpLoc;
5958 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005959 return ExprError(Diag(ExpLoc,
5960 diag::err_typecheck_choose_expr_requires_constant)
5961 << CondExpr->getSourceRange());
Steve Naroff9efdabc2007-08-03 21:21:27 +00005962
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005963 // If the condition is > zero, then the AST type is the same as the LSHExpr.
5964 resType = condEval.getZExtValue() ? LHSExpr->getType() : RHSExpr->getType();
Douglas Gregor56751b52009-09-25 04:25:58 +00005965 ValueDependent = condEval.getZExtValue() ? LHSExpr->isValueDependent()
5966 : RHSExpr->isValueDependent();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00005967 }
5968
Sebastian Redl6d4256c2009-03-15 17:47:39 +00005969 cond.release(); expr1.release(); expr2.release();
5970 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
Douglas Gregor56751b52009-09-25 04:25:58 +00005971 resType, RPLoc,
5972 resType->isDependentType(),
5973 ValueDependent));
Steve Naroff9efdabc2007-08-03 21:21:27 +00005974}
5975
Steve Naroffc540d662008-09-03 18:15:37 +00005976//===----------------------------------------------------------------------===//
5977// Clang Extensions.
5978//===----------------------------------------------------------------------===//
5979
5980/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005981void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Steve Naroffc540d662008-09-03 18:15:37 +00005982 // Analyze block parameters.
5983 BlockSemaInfo *BSI = new BlockSemaInfo();
Mike Stump4e1f26a2009-02-19 03:04:26 +00005984
Steve Naroffc540d662008-09-03 18:15:37 +00005985 // Add BSI to CurBlock.
5986 BSI->PrevBlockInfo = CurBlock;
5987 CurBlock = BSI;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005988
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00005989 BSI->ReturnType = QualType();
Steve Naroffc540d662008-09-03 18:15:37 +00005990 BSI->TheScope = BlockScope;
Mike Stumpa6703322009-02-19 22:01:56 +00005991 BSI->hasBlockDeclRefExprs = false;
Daniel Dunbarb9a68612009-07-29 01:59:17 +00005992 BSI->hasPrototype = false;
Chris Lattner45542ea2009-04-19 05:28:12 +00005993 BSI->SavedFunctionNeedsScopeChecking = CurFunctionNeedsScopeChecking;
5994 CurFunctionNeedsScopeChecking = false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005995
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005996 BSI->TheDecl = BlockDecl::Create(Context, CurContext, CaretLoc);
Douglas Gregor91f84212008-12-11 16:49:14 +00005997 PushDeclContext(BlockScope, BSI->TheDecl);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00005998}
5999
Mike Stump82f071f2009-02-04 22:31:32 +00006000void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpf70bcf72009-05-07 18:43:07 +00006001 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
Mike Stump82f071f2009-02-04 22:31:32 +00006002
6003 if (ParamInfo.getNumTypeObjects() == 0
6004 || ParamInfo.getTypeObject(0).Kind != DeclaratorChunk::Function) {
Douglas Gregor758a8692009-06-17 21:51:59 +00006005 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Mike Stump82f071f2009-02-04 22:31:32 +00006006 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
6007
Mike Stumpd456c482009-04-28 01:10:27 +00006008 if (T->isArrayType()) {
6009 Diag(ParamInfo.getSourceRange().getBegin(),
6010 diag::err_block_returns_array);
6011 return;
6012 }
6013
Mike Stump82f071f2009-02-04 22:31:32 +00006014 // The parameter list is optional, if there was none, assume ().
6015 if (!T->isFunctionType())
6016 T = Context.getFunctionType(T, NULL, 0, 0, 0);
6017
6018 CurBlock->hasPrototype = true;
6019 CurBlock->isVariadic = false;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006020 // Check for a valid sentinel attribute on this block.
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00006021 if (CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00006022 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00006023 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006024 // FIXME: remove the attribute.
6025 }
John McCall9dd450b2009-09-21 23:43:11 +00006026 QualType RetTy = T.getTypePtr()->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00006027
Chris Lattner6de05082009-04-11 19:27:54 +00006028 // Do not allow returning a objc interface by-value.
6029 if (RetTy->isObjCInterfaceType()) {
6030 Diag(ParamInfo.getSourceRange().getBegin(),
6031 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
6032 return;
6033 }
Mike Stump82f071f2009-02-04 22:31:32 +00006034 return;
6035 }
6036
Steve Naroffc540d662008-09-03 18:15:37 +00006037 // Analyze arguments to block.
6038 assert(ParamInfo.getTypeObject(0).Kind == DeclaratorChunk::Function &&
6039 "Not a function declarator!");
6040 DeclaratorChunk::FunctionTypeInfo &FTI = ParamInfo.getTypeObject(0).Fun;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006041
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006042 CurBlock->hasPrototype = FTI.hasPrototype;
6043 CurBlock->isVariadic = true;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006044
Steve Naroffc540d662008-09-03 18:15:37 +00006045 // Check for C99 6.7.5.3p10 - foo(void) is a non-varargs function that takes
6046 // no arguments, not a function that takes a single void argument.
6047 if (FTI.hasPrototype &&
6048 FTI.NumArgs == 1 && !FTI.isVariadic && FTI.ArgInfo[0].Ident == 0 &&
Chris Lattner83f095c2009-03-28 19:18:32 +00006049 (!FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType().getCVRQualifiers()&&
6050 FTI.ArgInfo[0].Param.getAs<ParmVarDecl>()->getType()->isVoidType())) {
Steve Naroffc540d662008-09-03 18:15:37 +00006051 // empty arg list, don't push any params.
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006052 CurBlock->isVariadic = false;
Steve Naroffc540d662008-09-03 18:15:37 +00006053 } else if (FTI.hasPrototype) {
6054 for (unsigned i = 0, e = FTI.NumArgs; i != e; ++i)
Chris Lattner83f095c2009-03-28 19:18:32 +00006055 CurBlock->Params.push_back(FTI.ArgInfo[i].Param.getAs<ParmVarDecl>());
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006056 CurBlock->isVariadic = FTI.isVariadic;
Steve Naroffc540d662008-09-03 18:15:37 +00006057 }
Jay Foad7d0479f2009-05-21 09:52:38 +00006058 CurBlock->TheDecl->setParams(Context, CurBlock->Params.data(),
Chris Lattner6de05082009-04-11 19:27:54 +00006059 CurBlock->Params.size());
Fariborz Jahanian960910a2009-05-19 17:08:59 +00006060 CurBlock->TheDecl->setIsVariadic(CurBlock->isVariadic);
Douglas Gregor758a8692009-06-17 21:51:59 +00006061 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006062 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
6063 E = CurBlock->TheDecl->param_end(); AI != E; ++AI)
6064 // If this has an identifier, add it to the scope stack.
6065 if ((*AI)->getIdentifier())
6066 PushOnScopeChains(*AI, CurBlock->TheScope);
Chris Lattner6de05082009-04-11 19:27:54 +00006067
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006068 // Check for a valid sentinel attribute on this block.
Mike Stump11289f42009-09-09 15:08:12 +00006069 if (!CurBlock->isVariadic &&
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00006070 CurBlock->TheDecl->getAttr<SentinelAttr>()) {
Mike Stump11289f42009-09-09 15:08:12 +00006071 Diag(ParamInfo.getAttributes()->getLoc(),
Fariborz Jahanian6802ed92009-05-15 21:18:04 +00006072 diag::warn_attribute_sentinel_not_variadic) << 1;
Fariborz Jahanian6607b212009-05-14 20:53:39 +00006073 // FIXME: remove the attribute.
6074 }
Mike Stump11289f42009-09-09 15:08:12 +00006075
Chris Lattner6de05082009-04-11 19:27:54 +00006076 // Analyze the return type.
6077 QualType T = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall9dd450b2009-09-21 23:43:11 +00006078 QualType RetTy = T->getAs<FunctionType>()->getResultType();
Mike Stump11289f42009-09-09 15:08:12 +00006079
Chris Lattner6de05082009-04-11 19:27:54 +00006080 // Do not allow returning a objc interface by-value.
6081 if (RetTy->isObjCInterfaceType()) {
6082 Diag(ParamInfo.getSourceRange().getBegin(),
6083 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
6084 } else if (!RetTy->isDependentType())
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006085 CurBlock->ReturnType = RetTy;
Steve Naroffc540d662008-09-03 18:15:37 +00006086}
6087
6088/// ActOnBlockError - If there is an error parsing a block, this callback
6089/// is invoked to pop the information about the block from the action impl.
6090void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
6091 // Ensure that CurBlock is deleted.
6092 llvm::OwningPtr<BlockSemaInfo> CC(CurBlock);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006093
Chris Lattner45542ea2009-04-19 05:28:12 +00006094 CurFunctionNeedsScopeChecking = CurBlock->SavedFunctionNeedsScopeChecking;
6095
Steve Naroffc540d662008-09-03 18:15:37 +00006096 // Pop off CurBlock, handle nested blocks.
Chris Lattner41b86942009-04-21 22:38:46 +00006097 PopDeclContext();
Steve Naroffc540d662008-09-03 18:15:37 +00006098 CurBlock = CurBlock->PrevBlockInfo;
Steve Naroffc540d662008-09-03 18:15:37 +00006099 // FIXME: Delete the ParmVarDecl objects as well???
Steve Naroffc540d662008-09-03 18:15:37 +00006100}
6101
6102/// ActOnBlockStmtExpr - This is called when the body of a block statement
6103/// literal was successfully completed. ^(int x){...}
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006104Sema::OwningExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
6105 StmtArg body, Scope *CurScope) {
Chris Lattner9eac9312009-03-27 04:18:06 +00006106 // If blocks are disabled, emit an error.
6107 if (!LangOpts.Blocks)
6108 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump11289f42009-09-09 15:08:12 +00006109
Steve Naroffc540d662008-09-03 18:15:37 +00006110 // Ensure that CurBlock is deleted.
6111 llvm::OwningPtr<BlockSemaInfo> BSI(CurBlock);
Steve Naroffc540d662008-09-03 18:15:37 +00006112
Steve Naroff1d95e5a2008-10-10 01:28:17 +00006113 PopDeclContext();
6114
Steve Naroffc540d662008-09-03 18:15:37 +00006115 // Pop off CurBlock, handle nested blocks.
6116 CurBlock = CurBlock->PrevBlockInfo;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006117
Steve Naroffc540d662008-09-03 18:15:37 +00006118 QualType RetTy = Context.VoidTy;
Fariborz Jahanian3fd73102009-06-19 23:37:08 +00006119 if (!BSI->ReturnType.isNull())
6120 RetTy = BSI->ReturnType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006121
Steve Naroffc540d662008-09-03 18:15:37 +00006122 llvm::SmallVector<QualType, 8> ArgTypes;
6123 for (unsigned i = 0, e = BSI->Params.size(); i != e; ++i)
6124 ArgTypes.push_back(BSI->Params[i]->getType());
Mike Stump4e1f26a2009-02-19 03:04:26 +00006125
Mike Stump3bf1ab42009-07-28 22:04:01 +00006126 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroffc540d662008-09-03 18:15:37 +00006127 QualType BlockTy;
6128 if (!BSI->hasPrototype)
Mike Stump3bf1ab42009-07-28 22:04:01 +00006129 BlockTy = Context.getFunctionType(RetTy, 0, 0, false, 0, false, false, 0, 0,
6130 NoReturn);
Steve Naroffc540d662008-09-03 18:15:37 +00006131 else
Jay Foad7d0479f2009-05-21 09:52:38 +00006132 BlockTy = Context.getFunctionType(RetTy, ArgTypes.data(), ArgTypes.size(),
Mike Stump3bf1ab42009-07-28 22:04:01 +00006133 BSI->isVariadic, 0, false, false, 0, 0,
6134 NoReturn);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006135
Eli Friedmanba961a92009-03-23 00:24:07 +00006136 // FIXME: Check that return/parameter types are complete/non-abstract
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006137 DiagnoseUnusedParameters(BSI->Params.begin(), BSI->Params.end());
Steve Naroffc540d662008-09-03 18:15:37 +00006138 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006139
Chris Lattner45542ea2009-04-19 05:28:12 +00006140 // If needed, diagnose invalid gotos and switches in the block.
6141 if (CurFunctionNeedsScopeChecking)
6142 DiagnoseInvalidJumps(static_cast<CompoundStmt*>(body.get()));
6143 CurFunctionNeedsScopeChecking = BSI->SavedFunctionNeedsScopeChecking;
Mike Stump11289f42009-09-09 15:08:12 +00006144
Anders Carlssonb781bcd2009-05-01 19:49:17 +00006145 BSI->TheDecl->setBody(body.takeAs<CompoundStmt>());
Mike Stump3bf1ab42009-07-28 22:04:01 +00006146 CheckFallThroughForBlock(BlockTy, BSI->TheDecl->getBody());
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006147 return Owned(new (Context) BlockExpr(BSI->TheDecl, BlockTy,
6148 BSI->hasBlockDeclRefExprs));
Steve Naroffc540d662008-09-03 18:15:37 +00006149}
6150
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006151Sema::OwningExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
6152 ExprArg expr, TypeTy *type,
6153 SourceLocation RPLoc) {
Argyrios Kyrtzidisc7148c92009-08-19 01:28:28 +00006154 QualType T = GetTypeFromParser(type);
Chris Lattner56382aa2009-04-05 15:49:53 +00006155 Expr *E = static_cast<Expr*>(expr.get());
6156 Expr *OrigExpr = E;
Mike Stump11289f42009-09-09 15:08:12 +00006157
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006158 InitBuiltinVaListType();
Eli Friedman121ba0c2008-08-09 23:32:40 +00006159
6160 // Get the va_list type
6161 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedmane2cad652009-05-16 12:46:54 +00006162 if (VaListType->isArrayType()) {
6163 // Deal with implicit array decay; for example, on x86-64,
6164 // va_list is an array, but it's supposed to decay to
6165 // a pointer for va_arg.
Eli Friedman121ba0c2008-08-09 23:32:40 +00006166 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedmane2cad652009-05-16 12:46:54 +00006167 // Make sure the input expression also decays appropriately.
6168 UsualUnaryConversions(E);
6169 } else {
6170 // Otherwise, the va_list argument must be an l-value because
6171 // it is modified by va_arg.
Mike Stump11289f42009-09-09 15:08:12 +00006172 if (!E->isTypeDependent() &&
Douglas Gregorad3150c2009-05-19 23:10:31 +00006173 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedmane2cad652009-05-16 12:46:54 +00006174 return ExprError();
6175 }
Eli Friedman121ba0c2008-08-09 23:32:40 +00006176
Douglas Gregorad3150c2009-05-19 23:10:31 +00006177 if (!E->isTypeDependent() &&
6178 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006179 return ExprError(Diag(E->getLocStart(),
6180 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner56382aa2009-04-05 15:49:53 +00006181 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner3f5cd772009-04-05 00:59:53 +00006182 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006183
Eli Friedmanba961a92009-03-23 00:24:07 +00006184 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006185 // FIXME: Warn if a non-POD type is passed in.
Mike Stump4e1f26a2009-02-19 03:04:26 +00006186
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006187 expr.release();
6188 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, T.getNonReferenceType(),
6189 RPLoc));
Anders Carlsson7e13ab82007-10-15 20:28:48 +00006190}
6191
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006192Sema::OwningExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor3be4b122008-11-29 04:51:27 +00006193 // The type of __null will be int or long, depending on the size of
6194 // pointers on the target.
6195 QualType Ty;
6196 if (Context.Target.getPointerWidth(0) == Context.Target.getIntWidth())
6197 Ty = Context.IntTy;
6198 else
6199 Ty = Context.LongTy;
6200
Sebastian Redl6d4256c2009-03-15 17:47:39 +00006201 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor3be4b122008-11-29 04:51:27 +00006202}
6203
Chris Lattner9bad62c2008-01-04 18:04:52 +00006204bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
6205 SourceLocation Loc,
6206 QualType DstType, QualType SrcType,
6207 Expr *SrcExpr, const char *Flavor) {
6208 // Decode the result (notice that AST's are still created for extensions).
6209 bool isInvalid = false;
6210 unsigned DiagKind;
6211 switch (ConvTy) {
6212 default: assert(0 && "Unknown conversion type");
6213 case Compatible: return false;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006214 case PointerToInt:
Chris Lattner9bad62c2008-01-04 18:04:52 +00006215 DiagKind = diag::ext_typecheck_convert_pointer_int;
6216 break;
Chris Lattner940cfeb2008-01-04 18:22:42 +00006217 case IntToPointer:
6218 DiagKind = diag::ext_typecheck_convert_int_pointer;
6219 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006220 case IncompatiblePointer:
6221 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
6222 break;
Eli Friedman80160bd2009-03-22 23:59:44 +00006223 case IncompatiblePointerSign:
6224 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
6225 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006226 case FunctionVoidPointer:
6227 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
6228 break;
6229 case CompatiblePointerDiscardsQualifiers:
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00006230 // If the qualifiers lost were because we were applying the
6231 // (deprecated) C++ conversion from a string literal to a char*
6232 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
6233 // Ideally, this check would be performed in
6234 // CheckPointerTypesForAssignment. However, that would require a
6235 // bit of refactoring (so that the second argument is an
6236 // expression, rather than a type), which should be done as part
6237 // of a larger effort to fix CheckPointerTypesForAssignment for
6238 // C++ semantics.
6239 if (getLangOptions().CPlusPlus &&
6240 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
6241 return false;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006242 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
6243 break;
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00006244 case IncompatibleMultiPointerQualifiers:
6245 DiagKind = diag::err_multi_pointer_qualifier_mismatch;
6246 break;
Steve Naroff081c7422008-09-04 15:10:53 +00006247 case IntToBlockPointer:
6248 DiagKind = diag::err_int_to_block_pointer;
6249 break;
6250 case IncompatibleBlockPointer:
Mike Stumpd79b5a82009-04-21 22:51:42 +00006251 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff081c7422008-09-04 15:10:53 +00006252 break;
Steve Naroff8afa9892008-10-14 22:18:38 +00006253 case IncompatibleObjCQualifiedId:
Mike Stump4e1f26a2009-02-19 03:04:26 +00006254 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff8afa9892008-10-14 22:18:38 +00006255 // it can give a more specific diagnostic.
6256 DiagKind = diag::warn_incompatible_qualified_id;
6257 break;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00006258 case IncompatibleVectors:
6259 DiagKind = diag::warn_incompatible_vectors;
6260 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006261 case Incompatible:
6262 DiagKind = diag::err_typecheck_convert_incompatible;
6263 isInvalid = true;
6264 break;
6265 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006266
Chris Lattnerf3d3fae2008-11-24 05:29:24 +00006267 Diag(Loc, DiagKind) << DstType << SrcType << Flavor
6268 << SrcExpr->getSourceRange();
Chris Lattner9bad62c2008-01-04 18:04:52 +00006269 return isInvalid;
6270}
Anders Carlssone54e8a12008-11-30 19:50:32 +00006271
Chris Lattnerc71d08b2009-04-25 21:59:05 +00006272bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006273 llvm::APSInt ICEResult;
6274 if (E->isIntegerConstantExpr(ICEResult, Context)) {
6275 if (Result)
6276 *Result = ICEResult;
6277 return false;
6278 }
6279
Anders Carlssone54e8a12008-11-30 19:50:32 +00006280 Expr::EvalResult EvalResult;
6281
Mike Stump4e1f26a2009-02-19 03:04:26 +00006282 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone54e8a12008-11-30 19:50:32 +00006283 EvalResult.HasSideEffects) {
6284 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
6285
6286 if (EvalResult.Diag) {
6287 // We only show the note if it's not the usual "invalid subexpression"
6288 // or if it's actually in a subexpression.
6289 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
6290 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
6291 Diag(EvalResult.DiagLoc, EvalResult.Diag);
6292 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006293
Anders Carlssone54e8a12008-11-30 19:50:32 +00006294 return true;
6295 }
6296
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006297 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
6298 E->getSourceRange();
Anders Carlssone54e8a12008-11-30 19:50:32 +00006299
Eli Friedmanbb967cc2009-04-25 22:26:58 +00006300 if (EvalResult.Diag &&
6301 Diags.getDiagnosticLevel(diag::ext_expr_not_ice) != Diagnostic::Ignored)
6302 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stump4e1f26a2009-02-19 03:04:26 +00006303
Anders Carlssone54e8a12008-11-30 19:50:32 +00006304 if (Result)
6305 *Result = EvalResult.Val.getInt();
6306 return false;
6307}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006308
Mike Stump11289f42009-09-09 15:08:12 +00006309Sema::ExpressionEvaluationContext
6310Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006311 // Introduce a new set of potentially referenced declarations to the stack.
6312 if (NewContext == PotentiallyPotentiallyEvaluated)
6313 PotentiallyReferencedDeclStack.push_back(PotentiallyReferencedDecls());
Mike Stump11289f42009-09-09 15:08:12 +00006314
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006315 std::swap(ExprEvalContext, NewContext);
6316 return NewContext;
6317}
6318
Mike Stump11289f42009-09-09 15:08:12 +00006319void
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006320Sema::PopExpressionEvaluationContext(ExpressionEvaluationContext OldContext,
6321 ExpressionEvaluationContext NewContext) {
6322 ExprEvalContext = NewContext;
6323
6324 if (OldContext == PotentiallyPotentiallyEvaluated) {
6325 // Mark any remaining declarations in the current position of the stack
6326 // as "referenced". If they were not meant to be referenced, semantic
6327 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
6328 PotentiallyReferencedDecls RemainingDecls;
6329 RemainingDecls.swap(PotentiallyReferencedDeclStack.back());
6330 PotentiallyReferencedDeclStack.pop_back();
Mike Stump11289f42009-09-09 15:08:12 +00006331
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006332 for (PotentiallyReferencedDecls::iterator I = RemainingDecls.begin(),
6333 IEnd = RemainingDecls.end();
6334 I != IEnd; ++I)
6335 MarkDeclarationReferenced(I->first, I->second);
6336 }
6337}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006338
6339/// \brief Note that the given declaration was referenced in the source code.
6340///
6341/// This routine should be invoke whenever a given declaration is referenced
6342/// in the source code, and where that reference occurred. If this declaration
6343/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
6344/// C99 6.9p3), then the declaration will be marked as used.
6345///
6346/// \param Loc the location where the declaration was referenced.
6347///
6348/// \param D the declaration that has been referenced by the source code.
6349void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
6350 assert(D && "No declaration?");
Mike Stump11289f42009-09-09 15:08:12 +00006351
Douglas Gregor77b50e12009-06-22 23:06:13 +00006352 if (D->isUsed())
6353 return;
Mike Stump11289f42009-09-09 15:08:12 +00006354
Douglas Gregor3beaf9b2009-10-08 21:35:42 +00006355 // Mark a parameter or variable declaration "used", regardless of whether we're in a
6356 // template or not. The reason for this is that unevaluated expressions
6357 // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and
6358 // -Wunused-parameters)
6359 if (isa<ParmVarDecl>(D) ||
6360 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod()))
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006361 D->setUsed(true);
Mike Stump11289f42009-09-09 15:08:12 +00006362
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006363 // Do not mark anything as "used" within a dependent context; wait for
6364 // an instantiation.
6365 if (CurContext->isDependentContext())
6366 return;
Mike Stump11289f42009-09-09 15:08:12 +00006367
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006368 switch (ExprEvalContext) {
6369 case Unevaluated:
6370 // We are in an expression that is not potentially evaluated; do nothing.
6371 return;
Mike Stump11289f42009-09-09 15:08:12 +00006372
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006373 case PotentiallyEvaluated:
6374 // We are in a potentially-evaluated expression, so this declaration is
6375 // "used"; handle this below.
6376 break;
Mike Stump11289f42009-09-09 15:08:12 +00006377
Douglas Gregor0b6a6242009-06-22 20:57:11 +00006378 case PotentiallyPotentiallyEvaluated:
6379 // We are in an expression that may be potentially evaluated; queue this
6380 // declaration reference until we know whether the expression is
6381 // potentially evaluated.
6382 PotentiallyReferencedDeclStack.back().push_back(std::make_pair(Loc, D));
6383 return;
6384 }
Mike Stump11289f42009-09-09 15:08:12 +00006385
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006386 // Note that this declaration has been used.
Fariborz Jahanian3a363432009-06-22 17:30:33 +00006387 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00006388 unsigned TypeQuals;
Fariborz Jahanian18eb69a2009-06-22 20:37:23 +00006389 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
6390 if (!Constructor->isUsed())
6391 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump11289f42009-09-09 15:08:12 +00006392 } else if (Constructor->isImplicit() &&
Mike Stump12b8ce12009-08-04 21:02:39 +00006393 Constructor->isCopyConstructor(Context, TypeQuals)) {
Fariborz Jahanian477d2422009-06-22 23:34:40 +00006394 if (!Constructor->isUsed())
6395 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
6396 }
Fariborz Jahanian24a175b2009-06-26 23:49:16 +00006397 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
6398 if (Destructor->isImplicit() && !Destructor->isUsed())
6399 DefineImplicitDestructor(Loc, Destructor);
Mike Stump11289f42009-09-09 15:08:12 +00006400
Fariborz Jahanian41f79272009-06-25 21:45:19 +00006401 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
6402 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
6403 MethodDecl->getOverloadedOperator() == OO_Equal) {
6404 if (!MethodDecl->isUsed())
6405 DefineImplicitOverloadedAssign(Loc, MethodDecl);
6406 }
6407 }
Fariborz Jahanian49796cc72009-06-24 22:09:44 +00006408 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
Mike Stump11289f42009-09-09 15:08:12 +00006409 // Implicit instantiation of function templates and member functions of
Douglas Gregor4adbc6d2009-06-26 00:10:03 +00006410 // class templates.
Douglas Gregorafca3b42009-10-27 20:53:28 +00006411 if (!Function->getBody() && Function->isImplicitlyInstantiable()) {
Douglas Gregor06db9f52009-10-12 20:18:28 +00006412 bool AlreadyInstantiated = false;
6413 if (FunctionTemplateSpecializationInfo *SpecInfo
6414 = Function->getTemplateSpecializationInfo()) {
6415 if (SpecInfo->getPointOfInstantiation().isInvalid())
6416 SpecInfo->setPointOfInstantiation(Loc);
Douglas Gregorafca3b42009-10-27 20:53:28 +00006417 else if (SpecInfo->getTemplateSpecializationKind()
6418 == TSK_ImplicitInstantiation)
Douglas Gregor06db9f52009-10-12 20:18:28 +00006419 AlreadyInstantiated = true;
6420 } else if (MemberSpecializationInfo *MSInfo
6421 = Function->getMemberSpecializationInfo()) {
6422 if (MSInfo->getPointOfInstantiation().isInvalid())
6423 MSInfo->setPointOfInstantiation(Loc);
Douglas Gregorafca3b42009-10-27 20:53:28 +00006424 else if (MSInfo->getTemplateSpecializationKind()
6425 == TSK_ImplicitInstantiation)
Douglas Gregor06db9f52009-10-12 20:18:28 +00006426 AlreadyInstantiated = true;
6427 }
6428
6429 if (!AlreadyInstantiated)
6430 PendingImplicitInstantiations.push_back(std::make_pair(Function, Loc));
6431 }
6432
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006433 // FIXME: keep track of references to static functions
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006434 Function->setUsed(true);
6435 return;
Douglas Gregor77b50e12009-06-22 23:06:13 +00006436 }
Mike Stump11289f42009-09-09 15:08:12 +00006437
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006438 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006439 // Implicit instantiation of static data members of class templates.
Mike Stump11289f42009-09-09 15:08:12 +00006440 if (Var->isStaticDataMember() &&
Douglas Gregor06db9f52009-10-12 20:18:28 +00006441 Var->getInstantiatedFromStaticDataMember()) {
6442 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
6443 assert(MSInfo && "Missing member specialization information?");
6444 if (MSInfo->getPointOfInstantiation().isInvalid() &&
6445 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) {
6446 MSInfo->setPointOfInstantiation(Loc);
6447 PendingImplicitInstantiations.push_back(std::make_pair(Var, Loc));
6448 }
6449 }
Mike Stump11289f42009-09-09 15:08:12 +00006450
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006451 // FIXME: keep track of references to static data?
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006452
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006453 D->setUsed(true);
Douglas Gregora6ef8f02009-07-24 20:34:43 +00006454 return;
Sam Weinigbae69142009-09-11 03:29:30 +00006455 }
Douglas Gregorc9c02ed2009-06-19 23:52:42 +00006456}
Anders Carlsson7f84ed92009-10-09 23:51:55 +00006457
6458bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
6459 CallExpr *CE, FunctionDecl *FD) {
6460 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
6461 return false;
6462
6463 PartialDiagnostic Note =
6464 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
6465 << FD->getDeclName() : PDiag();
6466 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
6467
6468 if (RequireCompleteType(Loc, ReturnType,
6469 FD ?
6470 PDiag(diag::err_call_function_incomplete_return)
6471 << CE->getSourceRange() << FD->getDeclName() :
6472 PDiag(diag::err_call_incomplete_return)
6473 << CE->getSourceRange(),
6474 std::make_pair(NoteLoc, Note)))
6475 return true;
6476
6477 return false;
6478}
6479
John McCalld5707ab2009-10-12 21:59:07 +00006480// Diagnose the common s/=/==/ typo. Note that adding parentheses
6481// will prevent this condition from triggering, which is what we want.
6482void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
6483 SourceLocation Loc;
6484
6485 if (isa<BinaryOperator>(E)) {
6486 BinaryOperator *Op = cast<BinaryOperator>(E);
6487 if (Op->getOpcode() != BinaryOperator::Assign)
6488 return;
6489
6490 Loc = Op->getOperatorLoc();
6491 } else if (isa<CXXOperatorCallExpr>(E)) {
6492 CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E);
6493 if (Op->getOperator() != OO_Equal)
6494 return;
6495
6496 Loc = Op->getOperatorLoc();
6497 } else {
6498 // Not an assignment.
6499 return;
6500 }
6501
John McCalld5707ab2009-10-12 21:59:07 +00006502 SourceLocation Open = E->getSourceRange().getBegin();
John McCalle724ae92009-10-12 22:25:59 +00006503 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
John McCalld5707ab2009-10-12 21:59:07 +00006504
6505 Diag(Loc, diag::warn_condition_is_assignment)
6506 << E->getSourceRange()
6507 << CodeModificationHint::CreateInsertion(Open, "(")
6508 << CodeModificationHint::CreateInsertion(Close, ")");
6509}
6510
6511bool Sema::CheckBooleanCondition(Expr *&E, SourceLocation Loc) {
6512 DiagnoseAssignmentAsCondition(E);
6513
6514 if (!E->isTypeDependent()) {
6515 DefaultFunctionArrayConversion(E);
6516
6517 QualType T = E->getType();
6518
6519 if (getLangOptions().CPlusPlus) {
6520 if (CheckCXXBooleanCondition(E)) // C++ 6.4p4
6521 return true;
6522 } else if (!T->isScalarType()) { // C99 6.8.4.1p1
6523 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
6524 << T << E->getSourceRange();
6525 return true;
6526 }
6527 }
6528
6529 return false;
6530}