blob: eb84cff99929312ee2eede344d911ffb84675029 [file] [log] [blame]
Reid Spencer5f016e22007-07-11 17:01:13 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner0bc735f2007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Reid Spencer5f016e22007-07-11 17:01:13 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall2d887082010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Douglas Gregore737f502010-08-12 20:07:10 +000015#include "clang/Sema/Initialization.h"
16#include "clang/Sema/Lookup.h"
17#include "clang/Sema/AnalysisBasedWarnings.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000018#include "clang/AST/ASTContext.h"
Douglas Gregorcc8a5d52010-04-29 00:18:15 +000019#include "clang/AST/CXXInheritance.h"
Daniel Dunbarc4a1dea2008-08-11 05:35:13 +000020#include "clang/AST/DeclObjC.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000021#include "clang/AST/DeclTemplate.h"
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +000022#include "clang/AST/EvaluatedExprVisitor.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000023#include "clang/AST/Expr.h"
Chris Lattner04421082008-04-08 04:40:51 +000024#include "clang/AST/ExprCXX.h"
Steve Narofff494b572008-05-29 21:12:08 +000025#include "clang/AST/ExprObjC.h"
Douglas Gregorb4eeaff2010-05-07 23:12:07 +000026#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor8ecdb652010-04-28 22:16:22 +000027#include "clang/AST/TypeLoc.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000028#include "clang/Basic/PartialDiagnostic.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000029#include "clang/Basic/SourceManager.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000030#include "clang/Basic/TargetInfo.h"
Anders Carlssond497ba72009-08-26 22:59:12 +000031#include "clang/Lex/LiteralSupport.h"
32#include "clang/Lex/Preprocessor.h"
John McCall19510852010-08-20 18:27:03 +000033#include "clang/Sema/DeclSpec.h"
34#include "clang/Sema/Designator.h"
35#include "clang/Sema/Scope.h"
John McCall781472f2010-08-25 08:40:02 +000036#include "clang/Sema/ScopeInfo.h"
John McCall19510852010-08-20 18:27:03 +000037#include "clang/Sema/ParsedTemplate.h"
John McCall7cd088e2010-08-24 07:21:54 +000038#include "clang/Sema/Template.h"
Reid Spencer5f016e22007-07-11 17:01:13 +000039using namespace clang;
John McCall781472f2010-08-25 08:40:02 +000040using namespace sema;
Reid Spencer5f016e22007-07-11 17:01:13 +000041
David Chisnall0f436562009-08-17 16:35:33 +000042
Douglas Gregor48f3bb92009-02-18 21:56:37 +000043/// \brief Determine whether the use of this declaration is valid, and
44/// emit any corresponding diagnostics.
45///
46/// This routine diagnoses various problems with referencing
47/// declarations that can occur when using a declaration. For example,
48/// it might warn if a deprecated or unavailable declaration is being
49/// used, or produce an error (and return true) if a C++0x deleted
50/// function is being used.
51///
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +000052/// If IgnoreDeprecated is set to true, this should not warn about deprecated
Chris Lattner52338262009-10-25 22:31:57 +000053/// decls.
54///
Douglas Gregor48f3bb92009-02-18 21:56:37 +000055/// \returns true if there was an error (this declaration cannot be
56/// referenced), false otherwise.
Chris Lattner52338262009-10-25 22:31:57 +000057///
Fariborz Jahanian8e5fc9b2010-12-21 00:44:01 +000058bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
Peter Collingbourne743b82b2011-01-02 19:53:12 +000059 bool UnknownObjCClass) {
Douglas Gregor9b623632010-10-12 23:32:35 +000060 if (getLangOptions().CPlusPlus && isa<FunctionDecl>(D)) {
61 // If there were any diagnostics suppressed by template argument deduction,
62 // emit them now.
63 llvm::DenseMap<Decl *, llvm::SmallVector<PartialDiagnosticAt, 1> >::iterator
64 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
65 if (Pos != SuppressedDiagnostics.end()) {
66 llvm::SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second;
67 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I)
68 Diag(Suppressed[I].first, Suppressed[I].second);
69
70 // Clear out the list of suppressed diagnostics, so that we don't emit
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000071 // them again for this specialization. However, we don't obsolete this
Douglas Gregor9b623632010-10-12 23:32:35 +000072 // entry from the table, because we want to avoid ever emitting these
73 // diagnostics again.
74 Suppressed.clear();
75 }
76 }
77
Richard Smith34b41d92011-02-20 03:19:35 +000078 // See if this is an auto-typed variable whose initializer we are parsing.
Richard Smith483b9f32011-02-21 20:05:19 +000079 if (ParsingInitForAutoVars.count(D)) {
80 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
81 << D->getDeclName();
82 return true;
Richard Smith34b41d92011-02-20 03:19:35 +000083 }
84
Douglas Gregor48f3bb92009-02-18 21:56:37 +000085 // See if this is a deleted function.
Douglas Gregor25d944a2009-02-24 04:26:15 +000086 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor48f3bb92009-02-18 21:56:37 +000087 if (FD->isDeleted()) {
88 Diag(Loc, diag::err_deleted_function_use);
89 Diag(D->getLocation(), diag::note_unavailable_here) << true;
90 return true;
91 }
Douglas Gregor25d944a2009-02-24 04:26:15 +000092 }
Douglas Gregor48f3bb92009-02-18 21:56:37 +000093
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000094 // See if this declaration is unavailable or deprecated.
95 std::string Message;
96 switch (D->getAvailability(&Message)) {
97 case AR_Available:
98 case AR_NotYetIntroduced:
99 break;
100
101 case AR_Deprecated:
102 EmitDeprecationWarning(D, Message, Loc, UnknownObjCClass);
103 break;
104
105 case AR_Unavailable:
106 if (Message.empty()) {
107 if (!UnknownObjCClass)
108 Diag(Loc, diag::err_unavailable) << D->getDeclName();
109 else
110 Diag(Loc, diag::warn_unavailable_fwdclass_message)
111 << D->getDeclName();
112 }
113 else
114 Diag(Loc, diag::err_unavailable_message)
115 << D->getDeclName() << Message;
116 Diag(D->getLocation(), diag::note_unavailable_here) << 0;
117 break;
118 }
119
Anders Carlsson2127ecc2010-10-22 23:37:08 +0000120 // Warn if this is used but marked unused.
121 if (D->hasAttr<UnusedAttr>())
122 Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
123
Douglas Gregor48f3bb92009-02-18 21:56:37 +0000124 return false;
Chris Lattner76a642f2009-02-15 22:43:40 +0000125}
126
Douglas Gregor0a0d2b12011-03-23 00:50:03 +0000127/// \brief Retrieve the message suffix that should be added to a
128/// diagnostic complaining about the given function being deleted or
129/// unavailable.
130std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
131 // FIXME: C++0x implicitly-deleted special member functions could be
132 // detected here so that we could improve diagnostics to say, e.g.,
133 // "base class 'A' had a deleted copy constructor".
134 if (FD->isDeleted())
135 return std::string();
136
137 std::string Message;
138 if (FD->getAvailability(&Message))
139 return ": " + Message;
140
141 return std::string();
142}
143
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000144/// DiagnoseSentinelCalls - This routine checks on method dispatch calls
Mike Stump1eb44332009-09-09 15:08:12 +0000145/// (and other functions in future), which have been declared with sentinel
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000146/// attribute. It warns if call does not have the sentinel argument.
147///
148void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Mike Stump1eb44332009-09-09 15:08:12 +0000149 Expr **Args, unsigned NumArgs) {
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +0000150 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump1eb44332009-09-09 15:08:12 +0000151 if (!attr)
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000152 return;
Douglas Gregor92e986e2010-04-22 16:44:27 +0000153
154 // FIXME: In C++0x, if any of the arguments are parameter pack
155 // expansions, we can't check for the sentinel now.
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000156 int sentinelPos = attr->getSentinel();
157 int nullPos = attr->getNullPos();
Mike Stump1eb44332009-09-09 15:08:12 +0000158
Mike Stump390b4cc2009-05-16 07:39:55 +0000159 // FIXME. ObjCMethodDecl and FunctionDecl need be derived from the same common
160 // base class. Then we won't be needing two versions of the same code.
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000161 unsigned int i = 0;
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000162 bool warnNotEnoughArgs = false;
163 int isMethod = 0;
164 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
165 // skip over named parameters.
166 ObjCMethodDecl::param_iterator P, E = MD->param_end();
167 for (P = MD->param_begin(); (P != E && i < NumArgs); ++P) {
168 if (nullPos)
169 --nullPos;
170 else
171 ++i;
172 }
173 warnNotEnoughArgs = (P != E || i >= NumArgs);
174 isMethod = 1;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000175 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000176 // skip over named parameters.
177 ObjCMethodDecl::param_iterator P, E = FD->param_end();
178 for (P = FD->param_begin(); (P != E && i < NumArgs); ++P) {
179 if (nullPos)
180 --nullPos;
181 else
182 ++i;
183 }
184 warnNotEnoughArgs = (P != E || i >= NumArgs);
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000185 } else if (VarDecl *V = dyn_cast<VarDecl>(D)) {
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000186 // block or function pointer call.
187 QualType Ty = V->getType();
188 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +0000189 const FunctionType *FT = Ty->isFunctionPointerType()
John McCall183700f2009-09-21 23:43:11 +0000190 ? Ty->getAs<PointerType>()->getPointeeType()->getAs<FunctionType>()
191 : Ty->getAs<BlockPointerType>()->getPointeeType()->getAs<FunctionType>();
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000192 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT)) {
193 unsigned NumArgsInProto = Proto->getNumArgs();
194 unsigned k;
195 for (k = 0; (k != NumArgsInProto && i < NumArgs); k++) {
196 if (nullPos)
197 --nullPos;
198 else
199 ++i;
200 }
201 warnNotEnoughArgs = (k != NumArgsInProto || i >= NumArgs);
202 }
203 if (Ty->isBlockPointerType())
204 isMethod = 2;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000205 } else
Fariborz Jahaniandaf04152009-05-15 20:33:25 +0000206 return;
Mike Stumpac5fc7c2009-08-04 21:02:39 +0000207 } else
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000208 return;
209
210 if (warnNotEnoughArgs) {
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000211 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000212 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000213 return;
214 }
215 int sentinel = i;
216 while (sentinelPos > 0 && i < NumArgs-1) {
217 --sentinelPos;
218 ++i;
219 }
220 if (sentinelPos > 0) {
221 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Fariborz Jahanian236673e2009-05-14 18:00:00 +0000222 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian88f1ba02009-05-13 23:20:50 +0000223 return;
224 }
225 while (i < NumArgs-1) {
226 ++i;
227 ++sentinel;
228 }
229 Expr *sentinelExpr = Args[sentinel];
John McCall8eb662e2010-05-06 23:53:00 +0000230 if (!sentinelExpr) return;
231 if (sentinelExpr->isTypeDependent()) return;
232 if (sentinelExpr->isValueDependent()) return;
Anders Carlsson343e6ff2010-11-05 15:21:33 +0000233
234 // nullptr_t is always treated as null.
235 if (sentinelExpr->getType()->isNullPtrType()) return;
236
Fariborz Jahanian9ccd7252010-07-14 16:37:51 +0000237 if (sentinelExpr->getType()->isAnyPointerType() &&
John McCall8eb662e2010-05-06 23:53:00 +0000238 sentinelExpr->IgnoreParenCasts()->isNullPointerConstant(Context,
239 Expr::NPC_ValueDependentIsNull))
240 return;
241
242 // Unfortunately, __null has type 'int'.
243 if (isa<GNUNullExpr>(sentinelExpr)) return;
244
245 Diag(Loc, diag::warn_missing_sentinel) << isMethod;
246 Diag(D->getLocation(), diag::note_sentinel_here) << isMethod;
Fariborz Jahanian5b530052009-05-13 18:09:35 +0000247}
248
Douglas Gregor4b2d3f72009-02-26 21:00:50 +0000249SourceRange Sema::getExprRange(ExprTy *E) const {
250 Expr *Ex = (Expr *)E;
251 return Ex? Ex->getSourceRange() : SourceRange();
252}
253
Chris Lattnere7a2e912008-07-25 21:10:04 +0000254//===----------------------------------------------------------------------===//
255// Standard Promotions and Conversions
256//===----------------------------------------------------------------------===//
257
Chris Lattnere7a2e912008-07-25 21:10:04 +0000258/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
John Wiegley429bb272011-04-08 18:41:53 +0000259ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) {
Chris Lattnere7a2e912008-07-25 21:10:04 +0000260 QualType Ty = E->getType();
261 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
262
Chris Lattnere7a2e912008-07-25 21:10:04 +0000263 if (Ty->isFunctionType())
John Wiegley429bb272011-04-08 18:41:53 +0000264 E = ImpCastExprToType(E, Context.getPointerType(Ty),
265 CK_FunctionToPointerDecay).take();
Chris Lattner67d33d82008-07-25 21:33:13 +0000266 else if (Ty->isArrayType()) {
267 // In C90 mode, arrays only promote to pointers if the array expression is
268 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
269 // type 'array of type' is converted to an expression that has type 'pointer
270 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
271 // that has type 'array of type' ...". The relevant change is "an lvalue"
272 // (C90) to "an expression" (C99).
Argyrios Kyrtzidisc39a3d72008-09-11 04:25:59 +0000273 //
274 // C++ 4.2p1:
275 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
276 // T" can be converted to an rvalue of type "pointer to T".
277 //
John McCall7eb0a9e2010-11-24 05:12:34 +0000278 if (getLangOptions().C99 || getLangOptions().CPlusPlus || E->isLValue())
John Wiegley429bb272011-04-08 18:41:53 +0000279 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
280 CK_ArrayToPointerDecay).take();
Chris Lattner67d33d82008-07-25 21:33:13 +0000281 }
John Wiegley429bb272011-04-08 18:41:53 +0000282 return Owned(E);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000283}
284
John Wiegley429bb272011-04-08 18:41:53 +0000285ExprResult Sema::DefaultLvalueConversion(Expr *E) {
John McCall0ae287a2010-12-01 04:43:34 +0000286 // C++ [conv.lval]p1:
287 // A glvalue of a non-function, non-array type T can be
288 // converted to a prvalue.
John Wiegley429bb272011-04-08 18:41:53 +0000289 if (!E->isGLValue()) return Owned(E);
John McCallf6a16482010-12-04 03:47:34 +0000290
John McCall409fa9a2010-12-06 20:48:59 +0000291 QualType T = E->getType();
292 assert(!T.isNull() && "r-value conversion on typeless expression?");
John McCallf6a16482010-12-04 03:47:34 +0000293
John McCall409fa9a2010-12-06 20:48:59 +0000294 // Create a load out of an ObjCProperty l-value, if necessary.
295 if (E->getObjectKind() == OK_ObjCProperty) {
John Wiegley429bb272011-04-08 18:41:53 +0000296 ExprResult Res = ConvertPropertyForRValue(E);
297 if (Res.isInvalid())
298 return Owned(E);
299 E = Res.take();
John McCall409fa9a2010-12-06 20:48:59 +0000300 if (!E->isGLValue())
John Wiegley429bb272011-04-08 18:41:53 +0000301 return Owned(E);
Douglas Gregora873dfc2010-02-03 00:27:59 +0000302 }
John McCall409fa9a2010-12-06 20:48:59 +0000303
304 // We don't want to throw lvalue-to-rvalue casts on top of
305 // expressions of certain types in C++.
306 if (getLangOptions().CPlusPlus &&
307 (E->getType() == Context.OverloadTy ||
308 T->isDependentType() ||
309 T->isRecordType()))
John Wiegley429bb272011-04-08 18:41:53 +0000310 return Owned(E);
John McCall409fa9a2010-12-06 20:48:59 +0000311
312 // The C standard is actually really unclear on this point, and
313 // DR106 tells us what the result should be but not why. It's
314 // generally best to say that void types just doesn't undergo
315 // lvalue-to-rvalue at all. Note that expressions of unqualified
316 // 'void' type are never l-values, but qualified void can be.
317 if (T->isVoidType())
John Wiegley429bb272011-04-08 18:41:53 +0000318 return Owned(E);
John McCall409fa9a2010-12-06 20:48:59 +0000319
320 // C++ [conv.lval]p1:
321 // [...] If T is a non-class type, the type of the prvalue is the
322 // cv-unqualified version of T. Otherwise, the type of the
323 // rvalue is T.
324 //
325 // C99 6.3.2.1p2:
326 // If the lvalue has qualified type, the value has the unqualified
327 // version of the type of the lvalue; otherwise, the value has the
328 // type of the lvalue.
329 if (T.hasQualifiers())
330 T = T.getUnqualifiedType();
331
Ted Kremenek3aea4da2011-03-01 18:41:00 +0000332 CheckArrayAccess(E);
Ted Kremeneka0125d82011-02-16 01:57:07 +0000333
John Wiegley429bb272011-04-08 18:41:53 +0000334 return Owned(ImplicitCastExpr::Create(Context, T, CK_LValueToRValue,
335 E, 0, VK_RValue));
John McCall409fa9a2010-12-06 20:48:59 +0000336}
337
John Wiegley429bb272011-04-08 18:41:53 +0000338ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) {
339 ExprResult Res = DefaultFunctionArrayConversion(E);
340 if (Res.isInvalid())
341 return ExprError();
342 Res = DefaultLvalueConversion(Res.take());
343 if (Res.isInvalid())
344 return ExprError();
345 return move(Res);
Douglas Gregora873dfc2010-02-03 00:27:59 +0000346}
347
348
Chris Lattnere7a2e912008-07-25 21:10:04 +0000349/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump1eb44332009-09-09 15:08:12 +0000350/// operators (C99 6.3). The conversions of array and function types are
Chris Lattnere7a2e912008-07-25 21:10:04 +0000351/// sometimes surpressed. For example, the array->pointer conversion doesn't
352/// apply if the array is an argument to the sizeof or address (&) operators.
353/// In these instances, this routine should *not* be called.
John Wiegley429bb272011-04-08 18:41:53 +0000354ExprResult Sema::UsualUnaryConversions(Expr *E) {
John McCall0ae287a2010-12-01 04:43:34 +0000355 // First, convert to an r-value.
John Wiegley429bb272011-04-08 18:41:53 +0000356 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
357 if (Res.isInvalid())
358 return Owned(E);
359 E = Res.take();
John McCall0ae287a2010-12-01 04:43:34 +0000360
361 QualType Ty = E->getType();
Chris Lattnere7a2e912008-07-25 21:10:04 +0000362 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
John McCall0ae287a2010-12-01 04:43:34 +0000363
364 // Try to perform integral promotions if the object has a theoretically
365 // promotable type.
366 if (Ty->isIntegralOrUnscopedEnumerationType()) {
367 // C99 6.3.1.1p2:
368 //
369 // The following may be used in an expression wherever an int or
370 // unsigned int may be used:
371 // - an object or expression with an integer type whose integer
372 // conversion rank is less than or equal to the rank of int
373 // and unsigned int.
374 // - A bit-field of type _Bool, int, signed int, or unsigned int.
375 //
376 // If an int can represent all values of the original type, the
377 // value is converted to an int; otherwise, it is converted to an
378 // unsigned int. These are called the integer promotions. All
379 // other types are unchanged by the integer promotions.
380
381 QualType PTy = Context.isPromotableBitField(E);
382 if (!PTy.isNull()) {
John Wiegley429bb272011-04-08 18:41:53 +0000383 E = ImpCastExprToType(E, PTy, CK_IntegralCast).take();
384 return Owned(E);
John McCall0ae287a2010-12-01 04:43:34 +0000385 }
386 if (Ty->isPromotableIntegerType()) {
387 QualType PT = Context.getPromotedIntegerType(Ty);
John Wiegley429bb272011-04-08 18:41:53 +0000388 E = ImpCastExprToType(E, PT, CK_IntegralCast).take();
389 return Owned(E);
John McCall0ae287a2010-12-01 04:43:34 +0000390 }
Eli Friedman04e83572009-08-20 04:21:42 +0000391 }
John Wiegley429bb272011-04-08 18:41:53 +0000392 return Owned(E);
Chris Lattnere7a2e912008-07-25 21:10:04 +0000393}
394
Chris Lattner05faf172008-07-25 22:25:12 +0000395/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Mike Stump1eb44332009-09-09 15:08:12 +0000396/// do not have a prototype. Arguments that have type float are promoted to
Chris Lattner05faf172008-07-25 22:25:12 +0000397/// double. All other argument types are converted by UsualUnaryConversions().
John Wiegley429bb272011-04-08 18:41:53 +0000398ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
399 QualType Ty = E->getType();
Chris Lattner05faf172008-07-25 22:25:12 +0000400 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump1eb44332009-09-09 15:08:12 +0000401
John Wiegley429bb272011-04-08 18:41:53 +0000402 ExprResult Res = UsualUnaryConversions(E);
403 if (Res.isInvalid())
404 return Owned(E);
405 E = Res.take();
John McCall40c29132010-12-06 18:36:11 +0000406
Chris Lattner05faf172008-07-25 22:25:12 +0000407 // If this is a 'float' (CVR qualified or typedef) promote to double.
Chris Lattner40378332010-05-16 04:01:30 +0000408 if (Ty->isSpecificBuiltinType(BuiltinType::Float))
John Wiegley429bb272011-04-08 18:41:53 +0000409 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).take();
410
411 return Owned(E);
Chris Lattner05faf172008-07-25 22:25:12 +0000412}
413
Chris Lattner312531a2009-04-12 08:11:20 +0000414/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
415/// will warn if the resulting type is not a POD type, and rejects ObjC
John Wiegley429bb272011-04-08 18:41:53 +0000416/// interfaces passed by value.
417ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
Chris Lattner40378332010-05-16 04:01:30 +0000418 FunctionDecl *FDecl) {
John Wiegley429bb272011-04-08 18:41:53 +0000419 ExprResult ExprRes = DefaultArgumentPromotion(E);
420 if (ExprRes.isInvalid())
421 return ExprError();
422 E = ExprRes.take();
Mike Stump1eb44332009-09-09 15:08:12 +0000423
Chris Lattner40378332010-05-16 04:01:30 +0000424 // __builtin_va_start takes the second argument as a "varargs" argument, but
425 // it doesn't actually do anything with it. It doesn't need to be non-pod
426 // etc.
427 if (FDecl && FDecl->getBuiltinID() == Builtin::BI__builtin_va_start)
John Wiegley429bb272011-04-08 18:41:53 +0000428 return Owned(E);
Chris Lattner40378332010-05-16 04:01:30 +0000429
John Wiegley429bb272011-04-08 18:41:53 +0000430 if (E->getType()->isObjCObjectType() &&
431 DiagRuntimeBehavior(E->getLocStart(), 0,
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +0000432 PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
John Wiegley429bb272011-04-08 18:41:53 +0000433 << E->getType() << CT))
434 return ExprError();
Douglas Gregor75b699a2009-12-12 07:25:49 +0000435
John Wiegley429bb272011-04-08 18:41:53 +0000436 if (!E->getType()->isPODType() &&
437 DiagRuntimeBehavior(E->getLocStart(), 0,
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +0000438 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
John Wiegley429bb272011-04-08 18:41:53 +0000439 << E->getType() << CT))
440 return ExprError();
Chris Lattner312531a2009-04-12 08:11:20 +0000441
John Wiegley429bb272011-04-08 18:41:53 +0000442 return Owned(E);
Anders Carlssondce5e2c2009-01-16 16:48:51 +0000443}
444
Chris Lattnere7a2e912008-07-25 21:10:04 +0000445/// UsualArithmeticConversions - Performs various conversions that are common to
446/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump1eb44332009-09-09 15:08:12 +0000447/// routine returns the first non-arithmetic type found. The client is
Chris Lattnere7a2e912008-07-25 21:10:04 +0000448/// responsible for emitting appropriate error diagnostics.
449/// FIXME: verify the conversion rules for "complex int" are consistent with
450/// GCC.
John Wiegley429bb272011-04-08 18:41:53 +0000451QualType Sema::UsualArithmeticConversions(ExprResult &lhsExpr, ExprResult &rhsExpr,
Chris Lattnere7a2e912008-07-25 21:10:04 +0000452 bool isCompAssign) {
John Wiegley429bb272011-04-08 18:41:53 +0000453 if (!isCompAssign) {
454 lhsExpr = UsualUnaryConversions(lhsExpr.take());
455 if (lhsExpr.isInvalid())
456 return QualType();
457 }
Eli Friedmanab3a8522009-03-28 01:22:36 +0000458
John Wiegley429bb272011-04-08 18:41:53 +0000459 rhsExpr = UsualUnaryConversions(rhsExpr.take());
460 if (rhsExpr.isInvalid())
461 return QualType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000462
Mike Stump1eb44332009-09-09 15:08:12 +0000463 // For conversion purposes, we ignore any qualifiers.
Chris Lattnere7a2e912008-07-25 21:10:04 +0000464 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +0000465 QualType lhs =
John Wiegley429bb272011-04-08 18:41:53 +0000466 Context.getCanonicalType(lhsExpr.get()->getType()).getUnqualifiedType();
Mike Stump1eb44332009-09-09 15:08:12 +0000467 QualType rhs =
John Wiegley429bb272011-04-08 18:41:53 +0000468 Context.getCanonicalType(rhsExpr.get()->getType()).getUnqualifiedType();
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000469
470 // If both types are identical, no conversion is needed.
471 if (lhs == rhs)
472 return lhs;
473
474 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
475 // The caller can deal with this (e.g. pointer + int).
476 if (!lhs->isArithmeticType() || !rhs->isArithmeticType())
477 return lhs;
478
John McCallcf33b242010-11-13 08:17:45 +0000479 // Apply unary and bitfield promotions to the LHS's type.
480 QualType lhs_unpromoted = lhs;
481 if (lhs->isPromotableIntegerType())
482 lhs = Context.getPromotedIntegerType(lhs);
John Wiegley429bb272011-04-08 18:41:53 +0000483 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(lhsExpr.get());
Douglas Gregor2d833e32009-05-02 00:36:19 +0000484 if (!LHSBitfieldPromoteTy.isNull())
485 lhs = LHSBitfieldPromoteTy;
John McCallcf33b242010-11-13 08:17:45 +0000486 if (lhs != lhs_unpromoted && !isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000487 lhsExpr = ImpCastExprToType(lhsExpr.take(), lhs, CK_IntegralCast);
Douglas Gregor2d833e32009-05-02 00:36:19 +0000488
John McCallcf33b242010-11-13 08:17:45 +0000489 // If both types are identical, no conversion is needed.
490 if (lhs == rhs)
491 return lhs;
492
493 // At this point, we have two different arithmetic types.
494
495 // Handle complex types first (C99 6.3.1.8p1).
496 bool LHSComplexFloat = lhs->isComplexType();
497 bool RHSComplexFloat = rhs->isComplexType();
498 if (LHSComplexFloat || RHSComplexFloat) {
499 // if we have an integer operand, the result is the complex type.
500
John McCall2bb5d002010-11-13 09:02:35 +0000501 if (!RHSComplexFloat && !rhs->isRealFloatingType()) {
502 if (rhs->isIntegerType()) {
503 QualType fp = cast<ComplexType>(lhs)->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +0000504 rhsExpr = ImpCastExprToType(rhsExpr.take(), fp, CK_IntegralToFloating);
505 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_FloatingRealToComplex);
John McCall2bb5d002010-11-13 09:02:35 +0000506 } else {
507 assert(rhs->isComplexIntegerType());
John Wiegley429bb272011-04-08 18:41:53 +0000508 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralComplexToFloatingComplex);
John McCall2bb5d002010-11-13 09:02:35 +0000509 }
John McCallcf33b242010-11-13 08:17:45 +0000510 return lhs;
511 }
512
John McCall2bb5d002010-11-13 09:02:35 +0000513 if (!LHSComplexFloat && !lhs->isRealFloatingType()) {
514 if (!isCompAssign) {
515 // int -> float -> _Complex float
516 if (lhs->isIntegerType()) {
517 QualType fp = cast<ComplexType>(rhs)->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +0000518 lhsExpr = ImpCastExprToType(lhsExpr.take(), fp, CK_IntegralToFloating);
519 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_FloatingRealToComplex);
John McCall2bb5d002010-11-13 09:02:35 +0000520 } else {
521 assert(lhs->isComplexIntegerType());
John Wiegley429bb272011-04-08 18:41:53 +0000522 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralComplexToFloatingComplex);
John McCall2bb5d002010-11-13 09:02:35 +0000523 }
524 }
John McCallcf33b242010-11-13 08:17:45 +0000525 return rhs;
526 }
527
528 // This handles complex/complex, complex/float, or float/complex.
529 // When both operands are complex, the shorter operand is converted to the
530 // type of the longer, and that is the type of the result. This corresponds
531 // to what is done when combining two real floating-point operands.
532 // The fun begins when size promotion occur across type domains.
533 // From H&S 6.3.4: When one operand is complex and the other is a real
534 // floating-point type, the less precise type is converted, within it's
535 // real or complex domain, to the precision of the other type. For example,
536 // when combining a "long double" with a "double _Complex", the
537 // "double _Complex" is promoted to "long double _Complex".
538 int order = Context.getFloatingTypeOrder(lhs, rhs);
539
540 // If both are complex, just cast to the more precise type.
541 if (LHSComplexFloat && RHSComplexFloat) {
542 if (order > 0) {
543 // _Complex float -> _Complex double
John Wiegley429bb272011-04-08 18:41:53 +0000544 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_FloatingComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000545 return lhs;
546
547 } else if (order < 0) {
548 // _Complex float -> _Complex double
549 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000550 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_FloatingComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000551 return rhs;
552 }
553 return lhs;
554 }
555
556 // If just the LHS is complex, the RHS needs to be converted,
557 // and the LHS might need to be promoted.
558 if (LHSComplexFloat) {
559 if (order > 0) { // LHS is wider
560 // float -> _Complex double
John McCall2bb5d002010-11-13 09:02:35 +0000561 QualType fp = cast<ComplexType>(lhs)->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +0000562 rhsExpr = ImpCastExprToType(rhsExpr.take(), fp, CK_FloatingCast);
563 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_FloatingRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000564 return lhs;
565 }
566
567 // RHS is at least as wide. Find its corresponding complex type.
568 QualType result = (order == 0 ? lhs : Context.getComplexType(rhs));
569
570 // double -> _Complex double
John Wiegley429bb272011-04-08 18:41:53 +0000571 rhsExpr = ImpCastExprToType(rhsExpr.take(), result, CK_FloatingRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000572
573 // _Complex float -> _Complex double
574 if (!isCompAssign && order < 0)
John Wiegley429bb272011-04-08 18:41:53 +0000575 lhsExpr = ImpCastExprToType(lhsExpr.take(), result, CK_FloatingComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000576
577 return result;
578 }
579
580 // Just the RHS is complex, so the LHS needs to be converted
581 // and the RHS might need to be promoted.
582 assert(RHSComplexFloat);
583
584 if (order < 0) { // RHS is wider
585 // float -> _Complex double
John McCall2bb5d002010-11-13 09:02:35 +0000586 if (!isCompAssign) {
Argyrios Kyrtzidise1889332011-01-18 18:49:33 +0000587 QualType fp = cast<ComplexType>(rhs)->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +0000588 lhsExpr = ImpCastExprToType(lhsExpr.take(), fp, CK_FloatingCast);
589 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_FloatingRealToComplex);
John McCall2bb5d002010-11-13 09:02:35 +0000590 }
John McCallcf33b242010-11-13 08:17:45 +0000591 return rhs;
592 }
593
594 // LHS is at least as wide. Find its corresponding complex type.
595 QualType result = (order == 0 ? rhs : Context.getComplexType(lhs));
596
597 // double -> _Complex double
598 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000599 lhsExpr = ImpCastExprToType(lhsExpr.take(), result, CK_FloatingRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000600
601 // _Complex float -> _Complex double
602 if (order > 0)
John Wiegley429bb272011-04-08 18:41:53 +0000603 rhsExpr = ImpCastExprToType(rhsExpr.take(), result, CK_FloatingComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000604
605 return result;
606 }
607
608 // Now handle "real" floating types (i.e. float, double, long double).
609 bool LHSFloat = lhs->isRealFloatingType();
610 bool RHSFloat = rhs->isRealFloatingType();
611 if (LHSFloat || RHSFloat) {
612 // If we have two real floating types, convert the smaller operand
613 // to the bigger result.
614 if (LHSFloat && RHSFloat) {
615 int order = Context.getFloatingTypeOrder(lhs, rhs);
616 if (order > 0) {
John Wiegley429bb272011-04-08 18:41:53 +0000617 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_FloatingCast);
John McCallcf33b242010-11-13 08:17:45 +0000618 return lhs;
619 }
620
621 assert(order < 0 && "illegal float comparison");
622 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000623 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_FloatingCast);
John McCallcf33b242010-11-13 08:17:45 +0000624 return rhs;
625 }
626
627 // If we have an integer operand, the result is the real floating type.
628 if (LHSFloat) {
629 if (rhs->isIntegerType()) {
630 // Convert rhs to the lhs floating point type.
John Wiegley429bb272011-04-08 18:41:53 +0000631 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralToFloating);
John McCallcf33b242010-11-13 08:17:45 +0000632 return lhs;
633 }
634
635 // Convert both sides to the appropriate complex float.
636 assert(rhs->isComplexIntegerType());
637 QualType result = Context.getComplexType(lhs);
638
639 // _Complex int -> _Complex float
John Wiegley429bb272011-04-08 18:41:53 +0000640 rhsExpr = ImpCastExprToType(rhsExpr.take(), result, CK_IntegralComplexToFloatingComplex);
John McCallcf33b242010-11-13 08:17:45 +0000641
642 // float -> _Complex float
643 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000644 lhsExpr = ImpCastExprToType(lhsExpr.take(), result, CK_FloatingRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000645
646 return result;
647 }
648
649 assert(RHSFloat);
650 if (lhs->isIntegerType()) {
651 // Convert lhs to the rhs floating point type.
652 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000653 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralToFloating);
John McCallcf33b242010-11-13 08:17:45 +0000654 return rhs;
655 }
656
657 // Convert both sides to the appropriate complex float.
658 assert(lhs->isComplexIntegerType());
659 QualType result = Context.getComplexType(rhs);
660
661 // _Complex int -> _Complex float
662 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000663 lhsExpr = ImpCastExprToType(lhsExpr.take(), result, CK_IntegralComplexToFloatingComplex);
John McCallcf33b242010-11-13 08:17:45 +0000664
665 // float -> _Complex float
John Wiegley429bb272011-04-08 18:41:53 +0000666 rhsExpr = ImpCastExprToType(rhsExpr.take(), result, CK_FloatingRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000667
668 return result;
669 }
670
671 // Handle GCC complex int extension.
672 // FIXME: if the operands are (int, _Complex long), we currently
673 // don't promote the complex. Also, signedness?
674 const ComplexType *lhsComplexInt = lhs->getAsComplexIntegerType();
675 const ComplexType *rhsComplexInt = rhs->getAsComplexIntegerType();
676 if (lhsComplexInt && rhsComplexInt) {
677 int order = Context.getIntegerTypeOrder(lhsComplexInt->getElementType(),
678 rhsComplexInt->getElementType());
679 assert(order && "inequal types with equal element ordering");
680 if (order > 0) {
681 // _Complex int -> _Complex long
John Wiegley429bb272011-04-08 18:41:53 +0000682 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000683 return lhs;
684 }
685
686 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000687 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralComplexCast);
John McCallcf33b242010-11-13 08:17:45 +0000688 return rhs;
689 } else if (lhsComplexInt) {
690 // int -> _Complex int
John Wiegley429bb272011-04-08 18:41:53 +0000691 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000692 return lhs;
693 } else if (rhsComplexInt) {
694 // int -> _Complex int
695 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000696 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralRealToComplex);
John McCallcf33b242010-11-13 08:17:45 +0000697 return rhs;
698 }
699
700 // Finally, we have two differing integer types.
701 // The rules for this case are in C99 6.3.1.8
702 int compare = Context.getIntegerTypeOrder(lhs, rhs);
703 bool lhsSigned = lhs->hasSignedIntegerRepresentation(),
704 rhsSigned = rhs->hasSignedIntegerRepresentation();
705 if (lhsSigned == rhsSigned) {
706 // Same signedness; use the higher-ranked type
707 if (compare >= 0) {
John Wiegley429bb272011-04-08 18:41:53 +0000708 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000709 return lhs;
710 } else if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000711 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000712 return rhs;
713 } else if (compare != (lhsSigned ? 1 : -1)) {
714 // The unsigned type has greater than or equal rank to the
715 // signed type, so use the unsigned type
716 if (rhsSigned) {
John Wiegley429bb272011-04-08 18:41:53 +0000717 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000718 return lhs;
719 } else if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000720 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000721 return rhs;
722 } else if (Context.getIntWidth(lhs) != Context.getIntWidth(rhs)) {
723 // The two types are different widths; if we are here, that
724 // means the signed type is larger than the unsigned type, so
725 // use the signed type.
726 if (lhsSigned) {
John Wiegley429bb272011-04-08 18:41:53 +0000727 rhsExpr = ImpCastExprToType(rhsExpr.take(), lhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000728 return lhs;
729 } else if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000730 lhsExpr = ImpCastExprToType(lhsExpr.take(), rhs, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000731 return rhs;
732 } else {
733 // The signed type is higher-ranked than the unsigned type,
734 // but isn't actually any bigger (like unsigned int and long
735 // on most 32-bit systems). Use the unsigned type corresponding
736 // to the signed type.
737 QualType result =
738 Context.getCorrespondingUnsignedType(lhsSigned ? lhs : rhs);
John Wiegley429bb272011-04-08 18:41:53 +0000739 rhsExpr = ImpCastExprToType(rhsExpr.take(), result, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000740 if (!isCompAssign)
John Wiegley429bb272011-04-08 18:41:53 +0000741 lhsExpr = ImpCastExprToType(lhsExpr.take(), result, CK_IntegralCast);
John McCallcf33b242010-11-13 08:17:45 +0000742 return result;
743 }
Douglas Gregoreb8f3062008-11-12 17:17:38 +0000744}
745
Chris Lattnere7a2e912008-07-25 21:10:04 +0000746//===----------------------------------------------------------------------===//
747// Semantic Analysis for various Expression Types
748//===----------------------------------------------------------------------===//
749
750
Steve Narofff69936d2007-09-16 03:34:24 +0000751/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Reid Spencer5f016e22007-07-11 17:01:13 +0000752/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
753/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
754/// multiple tokens. However, the common case is that StringToks points to one
755/// string.
Sebastian Redlcd965b92009-01-18 18:53:16 +0000756///
John McCall60d7b3a2010-08-24 06:29:42 +0000757ExprResult
Sean Hunt6cf75022010-08-30 17:47:05 +0000758Sema::ActOnStringLiteral(const Token *StringToks, unsigned NumStringToks) {
Reid Spencer5f016e22007-07-11 17:01:13 +0000759 assert(NumStringToks && "Must have at least one string!");
760
Chris Lattnerbbee00b2009-01-16 18:51:42 +0000761 StringLiteralParser Literal(StringToks, NumStringToks, PP);
Reid Spencer5f016e22007-07-11 17:01:13 +0000762 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +0000763 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +0000764
765 llvm::SmallVector<SourceLocation, 4> StringTokLocs;
766 for (unsigned i = 0; i != NumStringToks; ++i)
767 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000768
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000769 QualType StrTy = Context.CharTy;
Anders Carlsson96b4adc2011-04-06 18:42:48 +0000770 if (Literal.AnyWide)
771 StrTy = Context.getWCharType();
772 else if (Literal.Pascal)
773 StrTy = Context.UnsignedCharTy;
Douglas Gregor77a52232008-09-12 00:47:35 +0000774
775 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
Chris Lattner7dc480f2010-06-15 18:05:34 +0000776 if (getLangOptions().CPlusPlus || getLangOptions().ConstStrings)
Douglas Gregor77a52232008-09-12 00:47:35 +0000777 StrTy.addConst();
Sebastian Redlcd965b92009-01-18 18:53:16 +0000778
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000779 // Get an array type for the string, according to C99 6.4.5. This includes
780 // the nul terminator character as well as the string length for pascal
781 // strings.
782 StrTy = Context.getConstantArrayType(StrTy,
Chris Lattnerdbb1ecc2009-02-26 23:01:51 +0000783 llvm::APInt(32, Literal.GetNumStringChars()+1),
Chris Lattnera7ad98f2008-02-11 00:02:17 +0000784 ArrayType::Normal, 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000785
Reid Spencer5f016e22007-07-11 17:01:13 +0000786 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Sean Hunt6cf75022010-08-30 17:47:05 +0000787 return Owned(StringLiteral::Create(Context, Literal.GetString(),
788 Literal.GetStringLength(),
Anders Carlsson3e2193c2011-04-14 00:40:03 +0000789 Literal.AnyWide, Literal.Pascal, StrTy,
Sean Hunt6cf75022010-08-30 17:47:05 +0000790 &StringTokLocs[0],
791 StringTokLocs.size()));
Reid Spencer5f016e22007-07-11 17:01:13 +0000792}
793
John McCall469a1eb2011-02-02 13:00:07 +0000794enum CaptureResult {
795 /// No capture is required.
796 CR_NoCapture,
797
798 /// A capture is required.
799 CR_Capture,
800
John McCall6b5a61b2011-02-07 10:33:21 +0000801 /// A by-ref capture is required.
802 CR_CaptureByRef,
803
John McCall469a1eb2011-02-02 13:00:07 +0000804 /// An error occurred when trying to capture the given variable.
805 CR_Error
806};
807
808/// Diagnose an uncapturable value reference.
Chris Lattner639e2d32008-10-20 05:16:36 +0000809///
John McCall469a1eb2011-02-02 13:00:07 +0000810/// \param var - the variable referenced
811/// \param DC - the context which we couldn't capture through
812static CaptureResult
John McCall6b5a61b2011-02-07 10:33:21 +0000813diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
John McCall469a1eb2011-02-02 13:00:07 +0000814 VarDecl *var, DeclContext *DC) {
815 switch (S.ExprEvalContexts.back().Context) {
816 case Sema::Unevaluated:
817 // The argument will never be evaluated, so don't complain.
818 return CR_NoCapture;
Mike Stump1eb44332009-09-09 15:08:12 +0000819
John McCall469a1eb2011-02-02 13:00:07 +0000820 case Sema::PotentiallyEvaluated:
821 case Sema::PotentiallyEvaluatedIfUsed:
822 break;
Chris Lattner639e2d32008-10-20 05:16:36 +0000823
John McCall469a1eb2011-02-02 13:00:07 +0000824 case Sema::PotentiallyPotentiallyEvaluated:
825 // FIXME: delay these!
826 break;
Chris Lattner17f3a6d2009-04-21 22:26:47 +0000827 }
Mike Stump1eb44332009-09-09 15:08:12 +0000828
John McCall469a1eb2011-02-02 13:00:07 +0000829 // Don't diagnose about capture if we're not actually in code right
830 // now; in general, there are more appropriate places that will
831 // diagnose this.
832 if (!S.CurContext->isFunctionOrMethod()) return CR_NoCapture;
833
John McCall4f38f412011-03-22 23:15:50 +0000834 // Certain madnesses can happen with parameter declarations, which
835 // we want to ignore.
836 if (isa<ParmVarDecl>(var)) {
837 // - If the parameter still belongs to the translation unit, then
838 // we're actually just using one parameter in the declaration of
839 // the next. This is useful in e.g. VLAs.
840 if (isa<TranslationUnitDecl>(var->getDeclContext()))
841 return CR_NoCapture;
842
843 // - This particular madness can happen in ill-formed default
844 // arguments; claim it's okay and let downstream code handle it.
845 if (S.CurContext == var->getDeclContext()->getParent())
846 return CR_NoCapture;
847 }
John McCall469a1eb2011-02-02 13:00:07 +0000848
849 DeclarationName functionName;
850 if (FunctionDecl *fn = dyn_cast<FunctionDecl>(var->getDeclContext()))
851 functionName = fn->getDeclName();
852 // FIXME: variable from enclosing block that we couldn't capture from!
853
854 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
855 << var->getIdentifier() << functionName;
856 S.Diag(var->getLocation(), diag::note_local_variable_declared_here)
857 << var->getIdentifier();
858
859 return CR_Error;
Mike Stump1eb44332009-09-09 15:08:12 +0000860}
861
John McCall6b5a61b2011-02-07 10:33:21 +0000862/// There is a well-formed capture at a particular scope level;
863/// propagate it through all the nested blocks.
864static CaptureResult propagateCapture(Sema &S, unsigned validScopeIndex,
865 const BlockDecl::Capture &capture) {
866 VarDecl *var = capture.getVariable();
867
868 // Update all the inner blocks with the capture information.
869 for (unsigned i = validScopeIndex + 1, e = S.FunctionScopes.size();
870 i != e; ++i) {
871 BlockScopeInfo *innerBlock = cast<BlockScopeInfo>(S.FunctionScopes[i]);
872 innerBlock->Captures.push_back(
873 BlockDecl::Capture(capture.getVariable(), capture.isByRef(),
874 /*nested*/ true, capture.getCopyExpr()));
875 innerBlock->CaptureMap[var] = innerBlock->Captures.size(); // +1
876 }
877
878 return capture.isByRef() ? CR_CaptureByRef : CR_Capture;
879}
880
881/// shouldCaptureValueReference - Determine if a reference to the
John McCall469a1eb2011-02-02 13:00:07 +0000882/// given value in the current context requires a variable capture.
883///
884/// This also keeps the captures set in the BlockScopeInfo records
885/// up-to-date.
John McCall6b5a61b2011-02-07 10:33:21 +0000886static CaptureResult shouldCaptureValueReference(Sema &S, SourceLocation loc,
John McCall469a1eb2011-02-02 13:00:07 +0000887 ValueDecl *value) {
888 // Only variables ever require capture.
889 VarDecl *var = dyn_cast<VarDecl>(value);
John McCall76a40212011-02-09 01:13:10 +0000890 if (!var) return CR_NoCapture;
John McCall469a1eb2011-02-02 13:00:07 +0000891
892 // Fast path: variables from the current context never require capture.
893 DeclContext *DC = S.CurContext;
894 if (var->getDeclContext() == DC) return CR_NoCapture;
895
896 // Only variables with local storage require capture.
897 // FIXME: What about 'const' variables in C++?
898 if (!var->hasLocalStorage()) return CR_NoCapture;
899
900 // Otherwise, we need to capture.
901
902 unsigned functionScopesIndex = S.FunctionScopes.size() - 1;
John McCall469a1eb2011-02-02 13:00:07 +0000903 do {
904 // Only blocks (and eventually C++0x closures) can capture; other
905 // scopes don't work.
906 if (!isa<BlockDecl>(DC))
John McCall6b5a61b2011-02-07 10:33:21 +0000907 return diagnoseUncapturableValueReference(S, loc, var, DC);
John McCall469a1eb2011-02-02 13:00:07 +0000908
909 BlockScopeInfo *blockScope =
910 cast<BlockScopeInfo>(S.FunctionScopes[functionScopesIndex]);
911 assert(blockScope->TheDecl == static_cast<BlockDecl*>(DC));
912
John McCall6b5a61b2011-02-07 10:33:21 +0000913 // Check whether we've already captured it in this block. If so,
914 // we're done.
915 if (unsigned indexPlus1 = blockScope->CaptureMap[var])
916 return propagateCapture(S, functionScopesIndex,
917 blockScope->Captures[indexPlus1 - 1]);
John McCall469a1eb2011-02-02 13:00:07 +0000918
919 functionScopesIndex--;
920 DC = cast<BlockDecl>(DC)->getDeclContext();
921 } while (var->getDeclContext() != DC);
922
John McCall6b5a61b2011-02-07 10:33:21 +0000923 // Okay, we descended all the way to the block that defines the variable.
924 // Actually try to capture it.
925 QualType type = var->getType();
926
927 // Prohibit variably-modified types.
928 if (type->isVariablyModifiedType()) {
929 S.Diag(loc, diag::err_ref_vm_type);
930 S.Diag(var->getLocation(), diag::note_declared_at);
931 return CR_Error;
932 }
933
934 // Prohibit arrays, even in __block variables, but not references to
935 // them.
936 if (type->isArrayType()) {
937 S.Diag(loc, diag::err_ref_array_type);
938 S.Diag(var->getLocation(), diag::note_declared_at);
939 return CR_Error;
940 }
941
942 S.MarkDeclarationReferenced(loc, var);
943
944 // The BlocksAttr indicates the variable is bound by-reference.
945 bool byRef = var->hasAttr<BlocksAttr>();
946
947 // Build a copy expression.
948 Expr *copyExpr = 0;
949 if (!byRef && S.getLangOptions().CPlusPlus &&
950 !type->isDependentType() && type->isStructureOrClassType()) {
951 // According to the blocks spec, the capture of a variable from
952 // the stack requires a const copy constructor. This is not true
953 // of the copy/move done to move a __block variable to the heap.
954 type.addConst();
955
956 Expr *declRef = new (S.Context) DeclRefExpr(var, type, VK_LValue, loc);
957 ExprResult result =
958 S.PerformCopyInitialization(
959 InitializedEntity::InitializeBlock(var->getLocation(),
960 type, false),
961 loc, S.Owned(declRef));
962
963 // Build a full-expression copy expression if initialization
964 // succeeded and used a non-trivial constructor. Recover from
965 // errors by pretending that the copy isn't necessary.
966 if (!result.isInvalid() &&
967 !cast<CXXConstructExpr>(result.get())->getConstructor()->isTrivial()) {
968 result = S.MaybeCreateExprWithCleanups(result);
969 copyExpr = result.take();
970 }
971 }
972
973 // We're currently at the declarer; go back to the closure.
974 functionScopesIndex++;
975 BlockScopeInfo *blockScope =
976 cast<BlockScopeInfo>(S.FunctionScopes[functionScopesIndex]);
977
978 // Build a valid capture in this scope.
979 blockScope->Captures.push_back(
980 BlockDecl::Capture(var, byRef, /*nested*/ false, copyExpr));
981 blockScope->CaptureMap[var] = blockScope->Captures.size(); // +1
982
983 // Propagate that to inner captures if necessary.
984 return propagateCapture(S, functionScopesIndex,
985 blockScope->Captures.back());
986}
987
988static ExprResult BuildBlockDeclRefExpr(Sema &S, ValueDecl *vd,
989 const DeclarationNameInfo &NameInfo,
990 bool byRef) {
991 assert(isa<VarDecl>(vd) && "capturing non-variable");
992
993 VarDecl *var = cast<VarDecl>(vd);
994 assert(var->hasLocalStorage() && "capturing non-local");
995 assert(byRef == var->hasAttr<BlocksAttr>() && "byref set wrong");
996
997 QualType exprType = var->getType().getNonReferenceType();
998
999 BlockDeclRefExpr *BDRE;
1000 if (!byRef) {
1001 // The variable will be bound by copy; make it const within the
1002 // closure, but record that this was done in the expression.
1003 bool constAdded = !exprType.isConstQualified();
1004 exprType.addConst();
1005
1006 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue,
1007 NameInfo.getLoc(), false,
1008 constAdded);
1009 } else {
1010 BDRE = new (S.Context) BlockDeclRefExpr(var, exprType, VK_LValue,
1011 NameInfo.getLoc(), true);
1012 }
1013
1014 return S.Owned(BDRE);
John McCall469a1eb2011-02-02 13:00:07 +00001015}
Chris Lattner639e2d32008-10-20 05:16:36 +00001016
John McCall60d7b3a2010-08-24 06:29:42 +00001017ExprResult
John McCallf89e55a2010-11-18 06:31:45 +00001018Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
John McCall76a40212011-02-09 01:13:10 +00001019 SourceLocation Loc,
1020 const CXXScopeSpec *SS) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001021 DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
John McCallf89e55a2010-11-18 06:31:45 +00001022 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
Abramo Bagnara25777432010-08-11 22:01:17 +00001023}
1024
John McCall76a40212011-02-09 01:13:10 +00001025/// BuildDeclRefExpr - Build an expression that references a
1026/// declaration that does not require a closure capture.
John McCall60d7b3a2010-08-24 06:29:42 +00001027ExprResult
John McCall76a40212011-02-09 01:13:10 +00001028Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
Abramo Bagnara25777432010-08-11 22:01:17 +00001029 const DeclarationNameInfo &NameInfo,
1030 const CXXScopeSpec *SS) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001031 MarkDeclarationReferenced(NameInfo.getLoc(), D);
Mike Stump1eb44332009-09-09 15:08:12 +00001032
John McCall7eb0a9e2010-11-24 05:12:34 +00001033 Expr *E = DeclRefExpr::Create(Context,
Douglas Gregor40d96a62011-02-28 21:54:11 +00001034 SS? SS->getWithLocInContext(Context)
1035 : NestedNameSpecifierLoc(),
John McCall7eb0a9e2010-11-24 05:12:34 +00001036 D, NameInfo, Ty, VK);
1037
1038 // Just in case we're building an illegal pointer-to-member.
1039 if (isa<FieldDecl>(D) && cast<FieldDecl>(D)->getBitWidth())
1040 E->setObjectKind(OK_BitField);
1041
1042 return Owned(E);
Douglas Gregor1a49af92009-01-06 05:10:23 +00001043}
1044
John McCalldfa1edb2010-11-23 20:48:44 +00001045static ExprResult
1046BuildFieldReferenceExpr(Sema &S, Expr *BaseExpr, bool IsArrow,
1047 const CXXScopeSpec &SS, FieldDecl *Field,
1048 DeclAccessPair FoundDecl,
1049 const DeclarationNameInfo &MemberNameInfo);
1050
John McCall60d7b3a2010-08-24 06:29:42 +00001051ExprResult
John McCall5808ce42011-02-03 08:15:49 +00001052Sema::BuildAnonymousStructUnionMemberReference(const CXXScopeSpec &SS,
1053 SourceLocation loc,
1054 IndirectFieldDecl *indirectField,
1055 Expr *baseObjectExpr,
1056 SourceLocation opLoc) {
1057 // First, build the expression that refers to the base object.
1058
1059 bool baseObjectIsPointer = false;
1060 Qualifiers baseQuals;
1061
1062 // Case 1: the base of the indirect field is not a field.
1063 VarDecl *baseVariable = indirectField->getVarDecl();
Douglas Gregorf5848322011-02-18 02:44:58 +00001064 CXXScopeSpec EmptySS;
John McCall5808ce42011-02-03 08:15:49 +00001065 if (baseVariable) {
1066 assert(baseVariable->getType()->isRecordType());
1067
1068 // In principle we could have a member access expression that
1069 // accesses an anonymous struct/union that's a static member of
1070 // the base object's class. However, under the current standard,
1071 // static data members cannot be anonymous structs or unions.
1072 // Supporting this is as easy as building a MemberExpr here.
1073 assert(!baseObjectExpr && "anonymous struct/union is static data member?");
1074
1075 DeclarationNameInfo baseNameInfo(DeclarationName(), loc);
1076
1077 ExprResult result =
Douglas Gregorf5848322011-02-18 02:44:58 +00001078 BuildDeclarationNameExpr(EmptySS, baseNameInfo, baseVariable);
John McCall5808ce42011-02-03 08:15:49 +00001079 if (result.isInvalid()) return ExprError();
1080
1081 baseObjectExpr = result.take();
1082 baseObjectIsPointer = false;
1083 baseQuals = baseObjectExpr->getType().getQualifiers();
1084
1085 // Case 2: the base of the indirect field is a field and the user
1086 // wrote a member expression.
1087 } else if (baseObjectExpr) {
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001088 // The caller provided the base object expression. Determine
1089 // whether its a pointer and whether it adds any qualifiers to the
1090 // anonymous struct/union fields we're looking into.
John McCall5808ce42011-02-03 08:15:49 +00001091 QualType objectType = baseObjectExpr->getType();
1092
1093 if (const PointerType *ptr = objectType->getAs<PointerType>()) {
1094 baseObjectIsPointer = true;
1095 objectType = ptr->getPointeeType();
1096 } else {
1097 baseObjectIsPointer = false;
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001098 }
John McCall5808ce42011-02-03 08:15:49 +00001099 baseQuals = objectType.getQualifiers();
1100
1101 // Case 3: the base of the indirect field is a field and we should
1102 // build an implicit member access.
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001103 } else {
1104 // We've found a member of an anonymous struct/union that is
1105 // inside a non-anonymous struct/union, so in a well-formed
1106 // program our base object expression is "this".
John McCall5808ce42011-02-03 08:15:49 +00001107 CXXMethodDecl *method = tryCaptureCXXThis();
1108 if (!method) {
1109 Diag(loc, diag::err_invalid_member_use_in_static_method)
1110 << indirectField->getDeclName();
1111 return ExprError();
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001112 }
1113
John McCall5808ce42011-02-03 08:15:49 +00001114 // Our base object expression is "this".
1115 baseObjectExpr =
1116 new (Context) CXXThisExpr(loc, method->getThisType(Context),
1117 /*isImplicit=*/ true);
1118 baseObjectIsPointer = true;
1119 baseQuals = Qualifiers::fromCVRMask(method->getTypeQualifiers());
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001120 }
1121
1122 // Build the implicit member references to the field of the
1123 // anonymous struct/union.
John McCall5808ce42011-02-03 08:15:49 +00001124 Expr *result = baseObjectExpr;
1125 IndirectFieldDecl::chain_iterator
1126 FI = indirectField->chain_begin(), FEnd = indirectField->chain_end();
John McCalldfa1edb2010-11-23 20:48:44 +00001127
John McCall5808ce42011-02-03 08:15:49 +00001128 // Build the first member access in the chain with full information.
1129 if (!baseVariable) {
1130 FieldDecl *field = cast<FieldDecl>(*FI);
John McCalldfa1edb2010-11-23 20:48:44 +00001131
John McCall5808ce42011-02-03 08:15:49 +00001132 // FIXME: use the real found-decl info!
1133 DeclAccessPair foundDecl = DeclAccessPair::make(field, field->getAccess());
John McCall0953e762009-09-24 19:53:00 +00001134
John McCall5808ce42011-02-03 08:15:49 +00001135 // Make a nameInfo that properly uses the anonymous name.
1136 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
John McCall0953e762009-09-24 19:53:00 +00001137
John McCall5808ce42011-02-03 08:15:49 +00001138 result = BuildFieldReferenceExpr(*this, result, baseObjectIsPointer,
Douglas Gregorf5848322011-02-18 02:44:58 +00001139 EmptySS, field, foundDecl,
John McCall5808ce42011-02-03 08:15:49 +00001140 memberNameInfo).take();
1141 baseObjectIsPointer = false;
John McCall0953e762009-09-24 19:53:00 +00001142
John McCall5808ce42011-02-03 08:15:49 +00001143 // FIXME: check qualified member access
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001144 }
1145
John McCall5808ce42011-02-03 08:15:49 +00001146 // In all cases, we should now skip the first declaration in the chain.
1147 ++FI;
1148
Douglas Gregorf5848322011-02-18 02:44:58 +00001149 while (FI != FEnd) {
1150 FieldDecl *field = cast<FieldDecl>(*FI++);
John McCall5808ce42011-02-03 08:15:49 +00001151
1152 // FIXME: these are somewhat meaningless
1153 DeclarationNameInfo memberNameInfo(field->getDeclName(), loc);
1154 DeclAccessPair foundDecl = DeclAccessPair::make(field, field->getAccess());
John McCall5808ce42011-02-03 08:15:49 +00001155
1156 result = BuildFieldReferenceExpr(*this, result, /*isarrow*/ false,
Douglas Gregorf5848322011-02-18 02:44:58 +00001157 (FI == FEnd? SS : EmptySS), field,
1158 foundDecl, memberNameInfo)
John McCall5808ce42011-02-03 08:15:49 +00001159 .take();
1160 }
1161
1162 return Owned(result);
Douglas Gregorbcbffc42009-01-07 00:43:41 +00001163}
1164
Abramo Bagnara25777432010-08-11 22:01:17 +00001165/// Decomposes the given name into a DeclarationNameInfo, its location, and
John McCall129e2df2009-11-30 22:42:35 +00001166/// possibly a list of template arguments.
1167///
1168/// If this produces template arguments, it is permitted to call
1169/// DecomposeTemplateName.
1170///
1171/// This actually loses a lot of source location information for
1172/// non-standard name kinds; we should consider preserving that in
1173/// some way.
1174static void DecomposeUnqualifiedId(Sema &SemaRef,
1175 const UnqualifiedId &Id,
1176 TemplateArgumentListInfo &Buffer,
Abramo Bagnara25777432010-08-11 22:01:17 +00001177 DeclarationNameInfo &NameInfo,
John McCall129e2df2009-11-30 22:42:35 +00001178 const TemplateArgumentListInfo *&TemplateArgs) {
1179 if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1180 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1181 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1182
1183 ASTTemplateArgsPtr TemplateArgsPtr(SemaRef,
1184 Id.TemplateId->getTemplateArgs(),
1185 Id.TemplateId->NumArgs);
1186 SemaRef.translateTemplateArguments(TemplateArgsPtr, Buffer);
1187 TemplateArgsPtr.release();
1188
John McCall2b5289b2010-08-23 07:28:44 +00001189 TemplateName TName = Id.TemplateId->Template.get();
Abramo Bagnara25777432010-08-11 22:01:17 +00001190 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
1191 NameInfo = SemaRef.Context.getNameForTemplate(TName, TNameLoc);
John McCall129e2df2009-11-30 22:42:35 +00001192 TemplateArgs = &Buffer;
1193 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00001194 NameInfo = SemaRef.GetNameFromUnqualifiedId(Id);
John McCall129e2df2009-11-30 22:42:35 +00001195 TemplateArgs = 0;
1196 }
1197}
1198
John McCallaa81e162009-12-01 22:10:20 +00001199/// Determines if the given class is provably not derived from all of
1200/// the prospective base classes.
1201static bool IsProvablyNotDerivedFrom(Sema &SemaRef,
1202 CXXRecordDecl *Record,
1203 const llvm::SmallPtrSet<CXXRecordDecl*, 4> &Bases) {
John McCallb1b42562009-12-01 22:28:41 +00001204 if (Bases.count(Record->getCanonicalDecl()))
John McCallaa81e162009-12-01 22:10:20 +00001205 return false;
1206
Douglas Gregor952b0172010-02-11 01:04:33 +00001207 RecordDecl *RD = Record->getDefinition();
John McCallb1b42562009-12-01 22:28:41 +00001208 if (!RD) return false;
1209 Record = cast<CXXRecordDecl>(RD);
1210
John McCallaa81e162009-12-01 22:10:20 +00001211 for (CXXRecordDecl::base_class_iterator I = Record->bases_begin(),
1212 E = Record->bases_end(); I != E; ++I) {
1213 CanQualType BaseT = SemaRef.Context.getCanonicalType((*I).getType());
1214 CanQual<RecordType> BaseRT = BaseT->getAs<RecordType>();
1215 if (!BaseRT) return false;
1216
1217 CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl());
John McCallaa81e162009-12-01 22:10:20 +00001218 if (!IsProvablyNotDerivedFrom(SemaRef, BaseRecord, Bases))
1219 return false;
1220 }
1221
1222 return true;
1223}
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001224
John McCallaa81e162009-12-01 22:10:20 +00001225enum IMAKind {
1226 /// The reference is definitely not an instance member access.
1227 IMA_Static,
1228
1229 /// The reference may be an implicit instance member access.
1230 IMA_Mixed,
1231
1232 /// The reference may be to an instance member, but it is invalid if
1233 /// so, because the context is not an instance method.
1234 IMA_Mixed_StaticContext,
1235
1236 /// The reference may be to an instance member, but it is invalid if
1237 /// so, because the context is from an unrelated class.
1238 IMA_Mixed_Unrelated,
1239
1240 /// The reference is definitely an implicit instance member access.
1241 IMA_Instance,
1242
1243 /// The reference may be to an unresolved using declaration.
1244 IMA_Unresolved,
1245
1246 /// The reference may be to an unresolved using declaration and the
1247 /// context is not an instance method.
1248 IMA_Unresolved_StaticContext,
1249
John McCallaa81e162009-12-01 22:10:20 +00001250 /// All possible referrents are instance members and the current
1251 /// context is not an instance method.
1252 IMA_Error_StaticContext,
1253
1254 /// All possible referrents are instance members of an unrelated
1255 /// class.
1256 IMA_Error_Unrelated
1257};
1258
1259/// The given lookup names class member(s) and is not being used for
1260/// an address-of-member expression. Classify the type of access
1261/// according to whether it's possible that this reference names an
1262/// instance member. This is best-effort; it is okay to
1263/// conservatively answer "yes", in which case some errors will simply
1264/// not be caught until template-instantiation.
1265static IMAKind ClassifyImplicitMemberAccess(Sema &SemaRef,
1266 const LookupResult &R) {
John McCall3b4294e2009-12-16 12:17:52 +00001267 assert(!R.empty() && (*R.begin())->isCXXClassMember());
John McCallaa81e162009-12-01 22:10:20 +00001268
John McCallea1471e2010-05-20 01:18:31 +00001269 DeclContext *DC = SemaRef.getFunctionLevelDeclContext();
John McCallaa81e162009-12-01 22:10:20 +00001270 bool isStaticContext =
John McCallea1471e2010-05-20 01:18:31 +00001271 (!isa<CXXMethodDecl>(DC) ||
1272 cast<CXXMethodDecl>(DC)->isStatic());
John McCallaa81e162009-12-01 22:10:20 +00001273
1274 if (R.isUnresolvableResult())
1275 return isStaticContext ? IMA_Unresolved_StaticContext : IMA_Unresolved;
1276
1277 // Collect all the declaring classes of instance members we find.
1278 bool hasNonInstance = false;
Sebastian Redlf9780002010-11-26 16:28:07 +00001279 bool hasField = false;
John McCallaa81e162009-12-01 22:10:20 +00001280 llvm::SmallPtrSet<CXXRecordDecl*, 4> Classes;
1281 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
John McCall161755a2010-04-06 21:38:20 +00001282 NamedDecl *D = *I;
Francois Pichet87c2e122010-11-21 06:08:52 +00001283
John McCall161755a2010-04-06 21:38:20 +00001284 if (D->isCXXInstanceMember()) {
Sebastian Redlf9780002010-11-26 16:28:07 +00001285 if (dyn_cast<FieldDecl>(D))
1286 hasField = true;
1287
John McCallaa81e162009-12-01 22:10:20 +00001288 CXXRecordDecl *R = cast<CXXRecordDecl>(D->getDeclContext());
John McCallaa81e162009-12-01 22:10:20 +00001289 Classes.insert(R->getCanonicalDecl());
1290 }
1291 else
1292 hasNonInstance = true;
1293 }
1294
1295 // If we didn't find any instance members, it can't be an implicit
1296 // member reference.
1297 if (Classes.empty())
1298 return IMA_Static;
1299
1300 // If the current context is not an instance method, it can't be
1301 // an implicit member reference.
Sebastian Redlf9780002010-11-26 16:28:07 +00001302 if (isStaticContext) {
1303 if (hasNonInstance)
1304 return IMA_Mixed_StaticContext;
1305
1306 if (SemaRef.getLangOptions().CPlusPlus0x && hasField) {
1307 // C++0x [expr.prim.general]p10:
1308 // An id-expression that denotes a non-static data member or non-static
1309 // member function of a class can only be used:
1310 // (...)
1311 // - if that id-expression denotes a non-static data member and it appears in an unevaluated operand.
1312 const Sema::ExpressionEvaluationContextRecord& record = SemaRef.ExprEvalContexts.back();
1313 bool isUnevaluatedExpression = record.Context == Sema::Unevaluated;
1314 if (isUnevaluatedExpression)
1315 return IMA_Mixed_StaticContext;
1316 }
1317
1318 return IMA_Error_StaticContext;
1319 }
John McCallaa81e162009-12-01 22:10:20 +00001320
1321 // If we can prove that the current context is unrelated to all the
1322 // declaring classes, it can't be an implicit member reference (in
1323 // which case it's an error if any of those members are selected).
1324 if (IsProvablyNotDerivedFrom(SemaRef,
John McCallea1471e2010-05-20 01:18:31 +00001325 cast<CXXMethodDecl>(DC)->getParent(),
John McCallaa81e162009-12-01 22:10:20 +00001326 Classes))
1327 return (hasNonInstance ? IMA_Mixed_Unrelated : IMA_Error_Unrelated);
1328
1329 return (hasNonInstance ? IMA_Mixed : IMA_Instance);
1330}
1331
1332/// Diagnose a reference to a field with no object available.
1333static void DiagnoseInstanceReference(Sema &SemaRef,
1334 const CXXScopeSpec &SS,
John McCall5808ce42011-02-03 08:15:49 +00001335 NamedDecl *rep,
1336 const DeclarationNameInfo &nameInfo) {
1337 SourceLocation Loc = nameInfo.getLoc();
John McCallaa81e162009-12-01 22:10:20 +00001338 SourceRange Range(Loc);
1339 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
1340
John McCall5808ce42011-02-03 08:15:49 +00001341 if (isa<FieldDecl>(rep) || isa<IndirectFieldDecl>(rep)) {
John McCallaa81e162009-12-01 22:10:20 +00001342 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(SemaRef.CurContext)) {
1343 if (MD->isStatic()) {
1344 // "invalid use of member 'x' in static member function"
1345 SemaRef.Diag(Loc, diag::err_invalid_member_use_in_static_method)
John McCall5808ce42011-02-03 08:15:49 +00001346 << Range << nameInfo.getName();
John McCallaa81e162009-12-01 22:10:20 +00001347 return;
1348 }
1349 }
1350
1351 SemaRef.Diag(Loc, diag::err_invalid_non_static_member_use)
John McCall5808ce42011-02-03 08:15:49 +00001352 << nameInfo.getName() << Range;
John McCallaa81e162009-12-01 22:10:20 +00001353 return;
1354 }
1355
1356 SemaRef.Diag(Loc, diag::err_member_call_without_object) << Range;
John McCall129e2df2009-11-30 22:42:35 +00001357}
1358
John McCall578b69b2009-12-16 08:11:27 +00001359/// Diagnose an empty lookup.
1360///
1361/// \return false if new lookup candidates were found
Nick Lewycky03d98c52010-07-06 19:51:49 +00001362bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
1363 CorrectTypoContext CTC) {
John McCall578b69b2009-12-16 08:11:27 +00001364 DeclarationName Name = R.getLookupName();
1365
John McCall578b69b2009-12-16 08:11:27 +00001366 unsigned diagnostic = diag::err_undeclared_var_use;
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001367 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
John McCall578b69b2009-12-16 08:11:27 +00001368 if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
1369 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001370 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
John McCall578b69b2009-12-16 08:11:27 +00001371 diagnostic = diag::err_undeclared_use;
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001372 diagnostic_suggest = diag::err_undeclared_use_suggest;
1373 }
John McCall578b69b2009-12-16 08:11:27 +00001374
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001375 // If the original lookup was an unqualified lookup, fake an
1376 // unqualified lookup. This is useful when (for example) the
1377 // original lookup would not have found something because it was a
1378 // dependent name.
Nick Lewycky03d98c52010-07-06 19:51:49 +00001379 for (DeclContext *DC = SS.isEmpty() ? CurContext : 0;
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001380 DC; DC = DC->getParent()) {
John McCall578b69b2009-12-16 08:11:27 +00001381 if (isa<CXXRecordDecl>(DC)) {
1382 LookupQualifiedName(R, DC);
1383
1384 if (!R.empty()) {
1385 // Don't give errors about ambiguities in this lookup.
1386 R.suppressDiagnostics();
1387
1388 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
1389 bool isInstance = CurMethod &&
1390 CurMethod->isInstance() &&
1391 DC == CurMethod->getParent();
1392
1393 // Give a code modification hint to insert 'this->'.
1394 // TODO: fixit for inserting 'Base<T>::' in the other cases.
1395 // Actually quite difficult!
Nick Lewycky03d98c52010-07-06 19:51:49 +00001396 if (isInstance) {
Nick Lewycky03d98c52010-07-06 19:51:49 +00001397 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(
1398 CallsUndergoingInstantiation.back()->getCallee());
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001399 CXXMethodDecl *DepMethod = cast_or_null<CXXMethodDecl>(
Nick Lewycky03d98c52010-07-06 19:51:49 +00001400 CurMethod->getInstantiatedFromMemberFunction());
Eli Friedmana7e68452010-08-22 01:00:03 +00001401 if (DepMethod) {
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001402 Diag(R.getNameLoc(), diagnostic) << Name
1403 << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
1404 QualType DepThisType = DepMethod->getThisType(Context);
1405 CXXThisExpr *DepThis = new (Context) CXXThisExpr(
1406 R.getNameLoc(), DepThisType, false);
1407 TemplateArgumentListInfo TList;
1408 if (ULE->hasExplicitTemplateArgs())
1409 ULE->copyTemplateArgumentsInto(TList);
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001410
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001411 CXXScopeSpec SS;
Douglas Gregor4c9be892011-02-28 20:01:57 +00001412 SS.Adopt(ULE->getQualifierLoc());
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001413 CXXDependentScopeMemberExpr *DepExpr =
1414 CXXDependentScopeMemberExpr::Create(
1415 Context, DepThis, DepThisType, true, SourceLocation(),
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001416 SS.getWithLocInContext(Context), NULL,
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001417 R.getLookupNameInfo(), &TList);
1418 CallsUndergoingInstantiation.back()->setCallee(DepExpr);
Eli Friedmana7e68452010-08-22 01:00:03 +00001419 } else {
Nick Lewyckyd9ca4ab2010-08-20 20:54:15 +00001420 // FIXME: we should be able to handle this case too. It is correct
1421 // to add this-> here. This is a workaround for PR7947.
1422 Diag(R.getNameLoc(), diagnostic) << Name;
Eli Friedmana7e68452010-08-22 01:00:03 +00001423 }
Nick Lewycky03d98c52010-07-06 19:51:49 +00001424 } else {
John McCall578b69b2009-12-16 08:11:27 +00001425 Diag(R.getNameLoc(), diagnostic) << Name;
Nick Lewycky03d98c52010-07-06 19:51:49 +00001426 }
John McCall578b69b2009-12-16 08:11:27 +00001427
1428 // Do we really want to note all of these?
1429 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
1430 Diag((*I)->getLocation(), diag::note_dependent_var_use);
1431
1432 // Tell the callee to try to recover.
1433 return false;
1434 }
Douglas Gregore26f0432010-08-09 22:38:14 +00001435
1436 R.clear();
John McCall578b69b2009-12-16 08:11:27 +00001437 }
1438 }
1439
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001440 // We didn't find anything, so try to correct for a typo.
Douglas Gregoraaf87162010-04-14 20:04:41 +00001441 DeclarationName Corrected;
Daniel Dunbardc32cdf2010-06-02 15:46:52 +00001442 if (S && (Corrected = CorrectTypo(R, S, &SS, 0, false, CTC))) {
Douglas Gregoraaf87162010-04-14 20:04:41 +00001443 if (!R.empty()) {
1444 if (isa<ValueDecl>(*R.begin()) || isa<FunctionTemplateDecl>(*R.begin())) {
1445 if (SS.isEmpty())
1446 Diag(R.getNameLoc(), diagnostic_suggest) << Name << R.getLookupName()
1447 << FixItHint::CreateReplacement(R.getNameLoc(),
1448 R.getLookupName().getAsString());
1449 else
1450 Diag(R.getNameLoc(), diag::err_no_member_suggest)
1451 << Name << computeDeclContext(SS, false) << R.getLookupName()
1452 << SS.getRange()
1453 << FixItHint::CreateReplacement(R.getNameLoc(),
1454 R.getLookupName().getAsString());
1455 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
1456 Diag(ND->getLocation(), diag::note_previous_decl)
1457 << ND->getDeclName();
1458
1459 // Tell the callee to try to recover.
1460 return false;
1461 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001462
Douglas Gregoraaf87162010-04-14 20:04:41 +00001463 if (isa<TypeDecl>(*R.begin()) || isa<ObjCInterfaceDecl>(*R.begin())) {
1464 // FIXME: If we ended up with a typo for a type name or
1465 // Objective-C class name, we're in trouble because the parser
1466 // is in the wrong place to recover. Suggest the typo
1467 // correction, but don't make it a fix-it since we're not going
1468 // to recover well anyway.
1469 if (SS.isEmpty())
1470 Diag(R.getNameLoc(), diagnostic_suggest) << Name << R.getLookupName();
1471 else
1472 Diag(R.getNameLoc(), diag::err_no_member_suggest)
1473 << Name << computeDeclContext(SS, false) << R.getLookupName()
1474 << SS.getRange();
1475
1476 // Don't try to recover; it won't work.
1477 return true;
1478 }
1479 } else {
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001480 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
Douglas Gregoraaf87162010-04-14 20:04:41 +00001481 // because we aren't able to recover.
Douglas Gregord203a162010-01-01 00:15:04 +00001482 if (SS.isEmpty())
Douglas Gregoraaf87162010-04-14 20:04:41 +00001483 Diag(R.getNameLoc(), diagnostic_suggest) << Name << Corrected;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001484 else
Douglas Gregord203a162010-01-01 00:15:04 +00001485 Diag(R.getNameLoc(), diag::err_no_member_suggest)
Douglas Gregoraaf87162010-04-14 20:04:41 +00001486 << Name << computeDeclContext(SS, false) << Corrected
1487 << SS.getRange();
Douglas Gregord203a162010-01-01 00:15:04 +00001488 return true;
1489 }
Douglas Gregord203a162010-01-01 00:15:04 +00001490 R.clear();
Douglas Gregorbb092ba2009-12-31 05:20:13 +00001491 }
1492
1493 // Emit a special diagnostic for failed member lookups.
1494 // FIXME: computing the declaration context might fail here (?)
1495 if (!SS.isEmpty()) {
1496 Diag(R.getNameLoc(), diag::err_no_member)
1497 << Name << computeDeclContext(SS, false)
1498 << SS.getRange();
1499 return true;
1500 }
1501
John McCall578b69b2009-12-16 08:11:27 +00001502 // Give up, we can't recover.
1503 Diag(R.getNameLoc(), diagnostic) << Name;
1504 return true;
1505}
1506
Douglas Gregorca45da02010-11-02 20:36:02 +00001507ObjCPropertyDecl *Sema::canSynthesizeProvisionalIvar(IdentifierInfo *II) {
1508 ObjCMethodDecl *CurMeth = getCurMethodDecl();
Fariborz Jahanian69d56242010-07-22 23:33:21 +00001509 ObjCInterfaceDecl *IDecl = CurMeth->getClassInterface();
1510 if (!IDecl)
1511 return 0;
1512 ObjCImplementationDecl *ClassImpDecl = IDecl->getImplementation();
1513 if (!ClassImpDecl)
1514 return 0;
Douglas Gregorca45da02010-11-02 20:36:02 +00001515 ObjCPropertyDecl *property = LookupPropertyDecl(IDecl, II);
Fariborz Jahanian69d56242010-07-22 23:33:21 +00001516 if (!property)
1517 return 0;
1518 if (ObjCPropertyImplDecl *PIDecl = ClassImpDecl->FindPropertyImplDecl(II))
Douglas Gregorca45da02010-11-02 20:36:02 +00001519 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic ||
1520 PIDecl->getPropertyIvarDecl())
Fariborz Jahanian69d56242010-07-22 23:33:21 +00001521 return 0;
1522 return property;
1523}
1524
Douglas Gregorca45da02010-11-02 20:36:02 +00001525bool Sema::canSynthesizeProvisionalIvar(ObjCPropertyDecl *Property) {
1526 ObjCMethodDecl *CurMeth = getCurMethodDecl();
1527 ObjCInterfaceDecl *IDecl = CurMeth->getClassInterface();
1528 if (!IDecl)
1529 return false;
1530 ObjCImplementationDecl *ClassImpDecl = IDecl->getImplementation();
1531 if (!ClassImpDecl)
1532 return false;
1533 if (ObjCPropertyImplDecl *PIDecl
1534 = ClassImpDecl->FindPropertyImplDecl(Property->getIdentifier()))
1535 if (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic ||
1536 PIDecl->getPropertyIvarDecl())
1537 return false;
1538
1539 return true;
1540}
1541
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001542static ObjCIvarDecl *SynthesizeProvisionalIvar(Sema &SemaRef,
Fariborz Jahanian73f666f2010-07-30 16:59:05 +00001543 LookupResult &Lookup,
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001544 IdentifierInfo *II,
1545 SourceLocation NameLoc) {
1546 ObjCMethodDecl *CurMeth = SemaRef.getCurMethodDecl();
Fariborz Jahanian73f666f2010-07-30 16:59:05 +00001547 bool LookForIvars;
1548 if (Lookup.empty())
1549 LookForIvars = true;
1550 else if (CurMeth->isClassMethod())
1551 LookForIvars = false;
1552 else
1553 LookForIvars = (Lookup.isSingleResult() &&
Fariborz Jahaniand0fbadd2011-01-26 00:57:01 +00001554 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod() &&
1555 (Lookup.getAsSingle<VarDecl>() != 0));
Fariborz Jahanian73f666f2010-07-30 16:59:05 +00001556 if (!LookForIvars)
1557 return 0;
1558
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001559 ObjCInterfaceDecl *IDecl = CurMeth->getClassInterface();
1560 if (!IDecl)
1561 return 0;
1562 ObjCImplementationDecl *ClassImpDecl = IDecl->getImplementation();
Fariborz Jahanian84ef4b22010-07-19 16:14:33 +00001563 if (!ClassImpDecl)
1564 return 0;
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001565 bool DynamicImplSeen = false;
1566 ObjCPropertyDecl *property = SemaRef.LookupPropertyDecl(IDecl, II);
1567 if (!property)
1568 return 0;
Fariborz Jahanian43e1b462010-10-19 19:08:23 +00001569 if (ObjCPropertyImplDecl *PIDecl = ClassImpDecl->FindPropertyImplDecl(II)) {
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001570 DynamicImplSeen =
1571 (PIDecl->getPropertyImplementation() == ObjCPropertyImplDecl::Dynamic);
Fariborz Jahanian43e1b462010-10-19 19:08:23 +00001572 // property implementation has a designated ivar. No need to assume a new
1573 // one.
1574 if (!DynamicImplSeen && PIDecl->getPropertyIvarDecl())
1575 return 0;
1576 }
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001577 if (!DynamicImplSeen) {
Fariborz Jahanian84ef4b22010-07-19 16:14:33 +00001578 QualType PropType = SemaRef.Context.getCanonicalType(property->getType());
1579 ObjCIvarDecl *Ivar = ObjCIvarDecl::Create(SemaRef.Context, ClassImpDecl,
Abramo Bagnaraff676cb2011-03-08 08:55:46 +00001580 NameLoc, NameLoc,
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001581 II, PropType, /*Dinfo=*/0,
Fariborz Jahanian75049662010-12-15 23:29:04 +00001582 ObjCIvarDecl::Private,
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001583 (Expr *)0, true);
1584 ClassImpDecl->addDecl(Ivar);
1585 IDecl->makeDeclVisibleInContext(Ivar, false);
1586 property->setPropertyIvarDecl(Ivar);
1587 return Ivar;
1588 }
1589 return 0;
1590}
1591
John McCall60d7b3a2010-08-24 06:29:42 +00001592ExprResult Sema::ActOnIdExpression(Scope *S,
John McCallfb97e752010-08-24 22:52:39 +00001593 CXXScopeSpec &SS,
1594 UnqualifiedId &Id,
1595 bool HasTrailingLParen,
1596 bool isAddressOfOperand) {
John McCallf7a1a742009-11-24 19:00:30 +00001597 assert(!(isAddressOfOperand && HasTrailingLParen) &&
1598 "cannot be direct & operand and have a trailing lparen");
1599
1600 if (SS.isInvalid())
Douglas Gregor4c921ae2009-01-30 01:04:22 +00001601 return ExprError();
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001602
John McCall129e2df2009-11-30 22:42:35 +00001603 TemplateArgumentListInfo TemplateArgsBuffer;
John McCallf7a1a742009-11-24 19:00:30 +00001604
1605 // Decompose the UnqualifiedId into the following data.
Abramo Bagnara25777432010-08-11 22:01:17 +00001606 DeclarationNameInfo NameInfo;
John McCallf7a1a742009-11-24 19:00:30 +00001607 const TemplateArgumentListInfo *TemplateArgs;
Abramo Bagnara25777432010-08-11 22:01:17 +00001608 DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
Douglas Gregor5953d8b2009-03-19 17:26:29 +00001609
Abramo Bagnara25777432010-08-11 22:01:17 +00001610 DeclarationName Name = NameInfo.getName();
Douglas Gregor10c42622008-11-18 15:03:34 +00001611 IdentifierInfo *II = Name.getAsIdentifierInfo();
Abramo Bagnara25777432010-08-11 22:01:17 +00001612 SourceLocation NameLoc = NameInfo.getLoc();
John McCallba135432009-11-21 08:51:07 +00001613
John McCallf7a1a742009-11-24 19:00:30 +00001614 // C++ [temp.dep.expr]p3:
1615 // An id-expression is type-dependent if it contains:
Douglas Gregor48026d22010-01-11 18:40:55 +00001616 // -- an identifier that was declared with a dependent type,
1617 // (note: handled after lookup)
1618 // -- a template-id that is dependent,
1619 // (note: handled in BuildTemplateIdExpr)
1620 // -- a conversion-function-id that specifies a dependent type,
John McCallf7a1a742009-11-24 19:00:30 +00001621 // -- a nested-name-specifier that contains a class-name that
1622 // names a dependent type.
1623 // Determine whether this is a member of an unknown specialization;
1624 // we need to handle these differently.
Eli Friedman647c8b32010-08-06 23:41:47 +00001625 bool DependentID = false;
1626 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
1627 Name.getCXXNameType()->isDependentType()) {
1628 DependentID = true;
1629 } else if (SS.isSet()) {
Chris Lattner337e5502011-02-18 01:27:55 +00001630 if (DeclContext *DC = computeDeclContext(SS, false)) {
Eli Friedman647c8b32010-08-06 23:41:47 +00001631 if (RequireCompleteDeclContext(SS, DC))
1632 return ExprError();
Eli Friedman647c8b32010-08-06 23:41:47 +00001633 } else {
1634 DependentID = true;
1635 }
1636 }
1637
Chris Lattner337e5502011-02-18 01:27:55 +00001638 if (DependentID)
Abramo Bagnara25777432010-08-11 22:01:17 +00001639 return ActOnDependentIdExpression(SS, NameInfo, isAddressOfOperand,
John McCallf7a1a742009-11-24 19:00:30 +00001640 TemplateArgs);
Chris Lattner337e5502011-02-18 01:27:55 +00001641
Fariborz Jahanian69d56242010-07-22 23:33:21 +00001642 bool IvarLookupFollowUp = false;
John McCallf7a1a742009-11-24 19:00:30 +00001643 // Perform the required lookup.
Abramo Bagnara25777432010-08-11 22:01:17 +00001644 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCallf7a1a742009-11-24 19:00:30 +00001645 if (TemplateArgs) {
Douglas Gregord2235f62010-05-20 20:58:56 +00001646 // Lookup the template name again to correctly establish the context in
1647 // which it was found. This is really unfortunate as we already did the
1648 // lookup to determine that it was a template name in the first place. If
1649 // this becomes a performance hit, we can work harder to preserve those
1650 // results until we get here but it's likely not worth it.
Douglas Gregor1fd6d442010-05-21 23:18:07 +00001651 bool MemberOfUnknownSpecialization;
1652 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
1653 MemberOfUnknownSpecialization);
Douglas Gregor2f9f89c2011-02-04 13:35:07 +00001654
1655 if (MemberOfUnknownSpecialization ||
1656 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
1657 return ActOnDependentIdExpression(SS, NameInfo, isAddressOfOperand,
1658 TemplateArgs);
John McCallf7a1a742009-11-24 19:00:30 +00001659 } else {
Fariborz Jahanian69d56242010-07-22 23:33:21 +00001660 IvarLookupFollowUp = (!SS.isSet() && II && getCurMethodDecl());
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001661 LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
Mike Stump1eb44332009-09-09 15:08:12 +00001662
Douglas Gregor2f9f89c2011-02-04 13:35:07 +00001663 // If the result might be in a dependent base class, this is a dependent
1664 // id-expression.
1665 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
1666 return ActOnDependentIdExpression(SS, NameInfo, isAddressOfOperand,
1667 TemplateArgs);
1668
John McCallf7a1a742009-11-24 19:00:30 +00001669 // If this reference is in an Objective-C method, then we need to do
1670 // some special Objective-C lookup, too.
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001671 if (IvarLookupFollowUp) {
John McCall60d7b3a2010-08-24 06:29:42 +00001672 ExprResult E(LookupInObjCMethod(R, S, II, true));
John McCallf7a1a742009-11-24 19:00:30 +00001673 if (E.isInvalid())
1674 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00001675
Chris Lattner337e5502011-02-18 01:27:55 +00001676 if (Expr *Ex = E.takeAs<Expr>())
1677 return Owned(Ex);
1678
1679 // Synthesize ivars lazily.
Fariborz Jahaniane776f882011-01-03 18:08:02 +00001680 if (getLangOptions().ObjCDefaultSynthProperties &&
1681 getLangOptions().ObjCNonFragileABI2) {
Fariborz Jahaniande267602010-11-17 19:41:23 +00001682 if (SynthesizeProvisionalIvar(*this, R, II, NameLoc)) {
1683 if (const ObjCPropertyDecl *Property =
1684 canSynthesizeProvisionalIvar(II)) {
1685 Diag(NameLoc, diag::warn_synthesized_ivar_access) << II;
1686 Diag(Property->getLocation(), diag::note_property_declare);
1687 }
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001688 return ActOnIdExpression(S, SS, Id, HasTrailingLParen,
1689 isAddressOfOperand);
Fariborz Jahaniande267602010-11-17 19:41:23 +00001690 }
Fariborz Jahanianad51e742010-07-17 00:59:30 +00001691 }
Fariborz Jahanianf759b4d2010-08-13 18:09:39 +00001692 // for further use, this must be set to false if in class method.
1693 IvarLookupFollowUp = getCurMethodDecl()->isInstanceMethod();
Steve Naroffe3e9add2008-06-02 23:03:37 +00001694 }
Chris Lattner8a934232008-03-31 00:36:02 +00001695 }
Douglas Gregorc71e28c2009-02-16 19:28:42 +00001696
John McCallf7a1a742009-11-24 19:00:30 +00001697 if (R.isAmbiguous())
1698 return ExprError();
1699
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001700 // Determine whether this name might be a candidate for
1701 // argument-dependent lookup.
John McCallf7a1a742009-11-24 19:00:30 +00001702 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
Douglas Gregor48f3bb92009-02-18 21:56:37 +00001703
John McCallf7a1a742009-11-24 19:00:30 +00001704 if (R.empty() && !ADL) {
Reid Spencer5f016e22007-07-11 17:01:13 +00001705 // Otherwise, this could be an implicitly declared function reference (legal
John McCallf7a1a742009-11-24 19:00:30 +00001706 // in C90, extension in C99, forbidden in C++).
1707 if (HasTrailingLParen && II && !getLangOptions().CPlusPlus) {
1708 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
1709 if (D) R.addDecl(D);
1710 }
1711
1712 // If this name wasn't predeclared and if this is not a function
1713 // call, diagnose the problem.
1714 if (R.empty()) {
Douglas Gregor91f7ac72010-05-18 16:14:23 +00001715 if (DiagnoseEmptyLookup(S, SS, R, CTC_Unknown))
John McCall578b69b2009-12-16 08:11:27 +00001716 return ExprError();
1717
1718 assert(!R.empty() &&
1719 "DiagnoseEmptyLookup returned false but added no results");
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001720
1721 // If we found an Objective-C instance variable, let
1722 // LookupInObjCMethod build the appropriate expression to
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001723 // reference the ivar.
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001724 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
1725 R.clear();
John McCall60d7b3a2010-08-24 06:29:42 +00001726 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
Douglas Gregorf06cdae2010-01-03 18:01:57 +00001727 assert(E.isInvalid() || E.get());
1728 return move(E);
1729 }
Reid Spencer5f016e22007-07-11 17:01:13 +00001730 }
1731 }
Mike Stump1eb44332009-09-09 15:08:12 +00001732
John McCallf7a1a742009-11-24 19:00:30 +00001733 // This is guaranteed from this point on.
1734 assert(!R.empty() || ADL);
1735
John McCallaa81e162009-12-01 22:10:20 +00001736 // Check whether this might be a C++ implicit instance member access.
John McCallfb97e752010-08-24 22:52:39 +00001737 // C++ [class.mfct.non-static]p3:
1738 // When an id-expression that is not part of a class member access
1739 // syntax and not used to form a pointer to member is used in the
1740 // body of a non-static member function of class X, if name lookup
1741 // resolves the name in the id-expression to a non-static non-type
1742 // member of some class C, the id-expression is transformed into a
1743 // class member access expression using (*this) as the
1744 // postfix-expression to the left of the . operator.
John McCall9c72c602010-08-27 09:08:28 +00001745 //
1746 // But we don't actually need to do this for '&' operands if R
1747 // resolved to a function or overloaded function set, because the
1748 // expression is ill-formed if it actually works out to be a
1749 // non-static member function:
1750 //
1751 // C++ [expr.ref]p4:
1752 // Otherwise, if E1.E2 refers to a non-static member function. . .
1753 // [t]he expression can be used only as the left-hand operand of a
1754 // member function call.
1755 //
1756 // There are other safeguards against such uses, but it's important
1757 // to get this right here so that we don't end up making a
1758 // spuriously dependent expression if we're inside a dependent
1759 // instance method.
John McCall3b4294e2009-12-16 12:17:52 +00001760 if (!R.empty() && (*R.begin())->isCXXClassMember()) {
John McCall9c72c602010-08-27 09:08:28 +00001761 bool MightBeImplicitMember;
1762 if (!isAddressOfOperand)
1763 MightBeImplicitMember = true;
1764 else if (!SS.isEmpty())
1765 MightBeImplicitMember = false;
1766 else if (R.isOverloadedResult())
1767 MightBeImplicitMember = false;
Douglas Gregore2248be2010-08-30 16:00:47 +00001768 else if (R.isUnresolvableResult())
1769 MightBeImplicitMember = true;
John McCall9c72c602010-08-27 09:08:28 +00001770 else
Francois Pichet87c2e122010-11-21 06:08:52 +00001771 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
1772 isa<IndirectFieldDecl>(R.getFoundDecl());
John McCall9c72c602010-08-27 09:08:28 +00001773
1774 if (MightBeImplicitMember)
John McCall3b4294e2009-12-16 12:17:52 +00001775 return BuildPossibleImplicitMemberExpr(SS, R, TemplateArgs);
John McCall5b3f9132009-11-22 01:44:31 +00001776 }
1777
John McCallf7a1a742009-11-24 19:00:30 +00001778 if (TemplateArgs)
1779 return BuildTemplateIdExpr(SS, R, ADL, *TemplateArgs);
John McCall5b3f9132009-11-22 01:44:31 +00001780
John McCallf7a1a742009-11-24 19:00:30 +00001781 return BuildDeclarationNameExpr(SS, R, ADL);
1782}
1783
John McCall3b4294e2009-12-16 12:17:52 +00001784/// Builds an expression which might be an implicit member expression.
John McCall60d7b3a2010-08-24 06:29:42 +00001785ExprResult
John McCall3b4294e2009-12-16 12:17:52 +00001786Sema::BuildPossibleImplicitMemberExpr(const CXXScopeSpec &SS,
1787 LookupResult &R,
1788 const TemplateArgumentListInfo *TemplateArgs) {
1789 switch (ClassifyImplicitMemberAccess(*this, R)) {
1790 case IMA_Instance:
1791 return BuildImplicitMemberExpr(SS, R, TemplateArgs, true);
1792
John McCall3b4294e2009-12-16 12:17:52 +00001793 case IMA_Mixed:
1794 case IMA_Mixed_Unrelated:
1795 case IMA_Unresolved:
1796 return BuildImplicitMemberExpr(SS, R, TemplateArgs, false);
1797
1798 case IMA_Static:
1799 case IMA_Mixed_StaticContext:
1800 case IMA_Unresolved_StaticContext:
1801 if (TemplateArgs)
1802 return BuildTemplateIdExpr(SS, R, false, *TemplateArgs);
1803 return BuildDeclarationNameExpr(SS, R, false);
1804
1805 case IMA_Error_StaticContext:
1806 case IMA_Error_Unrelated:
John McCall5808ce42011-02-03 08:15:49 +00001807 DiagnoseInstanceReference(*this, SS, R.getRepresentativeDecl(),
1808 R.getLookupNameInfo());
John McCall3b4294e2009-12-16 12:17:52 +00001809 return ExprError();
1810 }
1811
1812 llvm_unreachable("unexpected instance member access kind");
1813 return ExprError();
1814}
1815
John McCall129e2df2009-11-30 22:42:35 +00001816/// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
1817/// declaration name, generally during template instantiation.
1818/// There's a large number of things which don't need to be done along
1819/// this path.
John McCall60d7b3a2010-08-24 06:29:42 +00001820ExprResult
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00001821Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00001822 const DeclarationNameInfo &NameInfo) {
John McCallf7a1a742009-11-24 19:00:30 +00001823 DeclContext *DC;
Douglas Gregore6ec5c42010-04-28 07:04:26 +00001824 if (!(DC = computeDeclContext(SS, false)) || DC->isDependentContext())
Abramo Bagnara25777432010-08-11 22:01:17 +00001825 return BuildDependentDeclRefExpr(SS, NameInfo, 0);
John McCallf7a1a742009-11-24 19:00:30 +00001826
John McCall77bb1aa2010-05-01 00:40:08 +00001827 if (RequireCompleteDeclContext(SS, DC))
Douglas Gregore6ec5c42010-04-28 07:04:26 +00001828 return ExprError();
1829
Abramo Bagnara25777432010-08-11 22:01:17 +00001830 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCallf7a1a742009-11-24 19:00:30 +00001831 LookupQualifiedName(R, DC);
1832
1833 if (R.isAmbiguous())
1834 return ExprError();
1835
1836 if (R.empty()) {
Abramo Bagnara25777432010-08-11 22:01:17 +00001837 Diag(NameInfo.getLoc(), diag::err_no_member)
1838 << NameInfo.getName() << DC << SS.getRange();
John McCallf7a1a742009-11-24 19:00:30 +00001839 return ExprError();
1840 }
1841
1842 return BuildDeclarationNameExpr(SS, R, /*ADL*/ false);
1843}
1844
1845/// LookupInObjCMethod - The parser has read a name in, and Sema has
1846/// detected that we're currently inside an ObjC method. Perform some
1847/// additional lookup.
1848///
1849/// Ideally, most of this would be done by lookup, but there's
1850/// actually quite a lot of extra work involved.
1851///
1852/// Returns a null sentinel to indicate trivial success.
John McCall60d7b3a2010-08-24 06:29:42 +00001853ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00001854Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
Chris Lattnereb483eb2010-04-11 08:28:14 +00001855 IdentifierInfo *II, bool AllowBuiltinCreation) {
John McCallf7a1a742009-11-24 19:00:30 +00001856 SourceLocation Loc = Lookup.getNameLoc();
Chris Lattneraec43db2010-04-12 05:10:17 +00001857 ObjCMethodDecl *CurMethod = getCurMethodDecl();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00001858
John McCallf7a1a742009-11-24 19:00:30 +00001859 // There are two cases to handle here. 1) scoped lookup could have failed,
1860 // in which case we should look for an ivar. 2) scoped lookup could have
1861 // found a decl, but that decl is outside the current instance method (i.e.
1862 // a global variable). In these two cases, we do a lookup for an ivar with
1863 // this name, if the lookup sucedes, we replace it our current decl.
1864
1865 // If we're in a class method, we don't normally want to look for
1866 // ivars. But if we don't find anything else, and there's an
1867 // ivar, that's an error.
Chris Lattneraec43db2010-04-12 05:10:17 +00001868 bool IsClassMethod = CurMethod->isClassMethod();
John McCallf7a1a742009-11-24 19:00:30 +00001869
1870 bool LookForIvars;
1871 if (Lookup.empty())
1872 LookForIvars = true;
1873 else if (IsClassMethod)
1874 LookForIvars = false;
1875 else
1876 LookForIvars = (Lookup.isSingleResult() &&
1877 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
Fariborz Jahanian412e7982010-02-09 19:31:38 +00001878 ObjCInterfaceDecl *IFace = 0;
John McCallf7a1a742009-11-24 19:00:30 +00001879 if (LookForIvars) {
Chris Lattneraec43db2010-04-12 05:10:17 +00001880 IFace = CurMethod->getClassInterface();
John McCallf7a1a742009-11-24 19:00:30 +00001881 ObjCInterfaceDecl *ClassDeclared;
1882 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
1883 // Diagnose using an ivar in a class method.
1884 if (IsClassMethod)
1885 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
1886 << IV->getDeclName());
1887
1888 // If we're referencing an invalid decl, just return this as a silent
1889 // error node. The error diagnostic was already emitted on the decl.
1890 if (IV->isInvalidDecl())
1891 return ExprError();
1892
1893 // Check if referencing a field with __attribute__((deprecated)).
1894 if (DiagnoseUseOfDecl(IV, Loc))
1895 return ExprError();
1896
1897 // Diagnose the use of an ivar outside of the declaring class.
1898 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
1899 ClassDeclared != IFace)
1900 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
1901
1902 // FIXME: This should use a new expr for a direct reference, don't
1903 // turn this into Self->ivar, just return a BareIVarExpr or something.
1904 IdentifierInfo &II = Context.Idents.get("self");
1905 UnqualifiedId SelfName;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001906 SelfName.setIdentifier(&II, SourceLocation());
John McCallf7a1a742009-11-24 19:00:30 +00001907 CXXScopeSpec SelfScopeSpec;
John McCall60d7b3a2010-08-24 06:29:42 +00001908 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec,
Douglas Gregore45bb6a2010-09-22 16:33:13 +00001909 SelfName, false, false);
1910 if (SelfExpr.isInvalid())
1911 return ExprError();
1912
John Wiegley429bb272011-04-08 18:41:53 +00001913 SelfExpr = DefaultLvalueConversion(SelfExpr.take());
1914 if (SelfExpr.isInvalid())
1915 return ExprError();
John McCall409fa9a2010-12-06 20:48:59 +00001916
John McCallf7a1a742009-11-24 19:00:30 +00001917 MarkDeclarationReferenced(Loc, IV);
Fariborz Jahanianb8f17ab2011-04-12 23:39:33 +00001918 Expr *base = SelfExpr.take();
1919 base = base->IgnoreParenImpCasts();
1920 if (const DeclRefExpr *DE = dyn_cast<DeclRefExpr>(base)) {
1921 const NamedDecl *ND = DE->getDecl();
1922 if (!isa<ImplicitParamDecl>(ND)) {
1923 Diag(Loc, diag::error_implicit_ivar_access)
1924 << IV->getDeclName();
1925 Diag(ND->getLocation(), diag::note_declared_at);
1926 return ExprError();
1927 }
1928 }
John McCallf7a1a742009-11-24 19:00:30 +00001929 return Owned(new (Context)
1930 ObjCIvarRefExpr(IV, IV->getType(), Loc,
John Wiegley429bb272011-04-08 18:41:53 +00001931 SelfExpr.take(), true, true));
John McCallf7a1a742009-11-24 19:00:30 +00001932 }
Chris Lattneraec43db2010-04-12 05:10:17 +00001933 } else if (CurMethod->isInstanceMethod()) {
John McCallf7a1a742009-11-24 19:00:30 +00001934 // We should warn if a local variable hides an ivar.
Chris Lattneraec43db2010-04-12 05:10:17 +00001935 ObjCInterfaceDecl *IFace = CurMethod->getClassInterface();
John McCallf7a1a742009-11-24 19:00:30 +00001936 ObjCInterfaceDecl *ClassDeclared;
1937 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
1938 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
1939 IFace == ClassDeclared)
1940 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
1941 }
1942 }
1943
Fariborz Jahanian48c2d562010-01-12 23:58:59 +00001944 if (Lookup.empty() && II && AllowBuiltinCreation) {
1945 // FIXME. Consolidate this with similar code in LookupName.
1946 if (unsigned BuiltinID = II->getBuiltinID()) {
1947 if (!(getLangOptions().CPlusPlus &&
1948 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) {
1949 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
1950 S, Lookup.isForRedeclaration(),
1951 Lookup.getNameLoc());
1952 if (D) Lookup.addDecl(D);
1953 }
1954 }
1955 }
John McCallf7a1a742009-11-24 19:00:30 +00001956 // Sentinel value saying that we didn't do anything special.
1957 return Owned((Expr*) 0);
Douglas Gregor751f9a42009-06-30 15:47:41 +00001958}
John McCallba135432009-11-21 08:51:07 +00001959
John McCall6bb80172010-03-30 21:47:33 +00001960/// \brief Cast a base object to a member's actual type.
1961///
1962/// Logically this happens in three phases:
1963///
1964/// * First we cast from the base type to the naming class.
1965/// The naming class is the class into which we were looking
1966/// when we found the member; it's the qualifier type if a
1967/// qualifier was provided, and otherwise it's the base type.
1968///
1969/// * Next we cast from the naming class to the declaring class.
1970/// If the member we found was brought into a class's scope by
1971/// a using declaration, this is that class; otherwise it's
1972/// the class declaring the member.
1973///
1974/// * Finally we cast from the declaring class to the "true"
1975/// declaring class of the member. This conversion does not
1976/// obey access control.
John Wiegley429bb272011-04-08 18:41:53 +00001977ExprResult
1978Sema::PerformObjectMemberConversion(Expr *From,
Douglas Gregor5fccd362010-03-03 23:55:11 +00001979 NestedNameSpecifier *Qualifier,
John McCall6bb80172010-03-30 21:47:33 +00001980 NamedDecl *FoundDecl,
Douglas Gregor5fccd362010-03-03 23:55:11 +00001981 NamedDecl *Member) {
1982 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
1983 if (!RD)
John Wiegley429bb272011-04-08 18:41:53 +00001984 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001985
Douglas Gregor5fccd362010-03-03 23:55:11 +00001986 QualType DestRecordType;
1987 QualType DestType;
1988 QualType FromRecordType;
1989 QualType FromType = From->getType();
1990 bool PointerConversions = false;
1991 if (isa<FieldDecl>(Member)) {
1992 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00001993
Douglas Gregor5fccd362010-03-03 23:55:11 +00001994 if (FromType->getAs<PointerType>()) {
1995 DestType = Context.getPointerType(DestRecordType);
1996 FromRecordType = FromType->getPointeeType();
1997 PointerConversions = true;
1998 } else {
1999 DestType = DestRecordType;
2000 FromRecordType = FromType;
Fariborz Jahanian98a541e2009-07-29 18:40:24 +00002001 }
Douglas Gregor5fccd362010-03-03 23:55:11 +00002002 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
2003 if (Method->isStatic())
John Wiegley429bb272011-04-08 18:41:53 +00002004 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002005
Douglas Gregor5fccd362010-03-03 23:55:11 +00002006 DestType = Method->getThisType(Context);
2007 DestRecordType = DestType->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002008
Douglas Gregor5fccd362010-03-03 23:55:11 +00002009 if (FromType->getAs<PointerType>()) {
2010 FromRecordType = FromType->getPointeeType();
2011 PointerConversions = true;
2012 } else {
2013 FromRecordType = FromType;
2014 DestType = DestRecordType;
2015 }
2016 } else {
2017 // No conversion necessary.
John Wiegley429bb272011-04-08 18:41:53 +00002018 return Owned(From);
Douglas Gregor5fccd362010-03-03 23:55:11 +00002019 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002020
Douglas Gregor5fccd362010-03-03 23:55:11 +00002021 if (DestType->isDependentType() || FromType->isDependentType())
John Wiegley429bb272011-04-08 18:41:53 +00002022 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002023
Douglas Gregor5fccd362010-03-03 23:55:11 +00002024 // If the unqualified types are the same, no conversion is necessary.
2025 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
John Wiegley429bb272011-04-08 18:41:53 +00002026 return Owned(From);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002027
John McCall6bb80172010-03-30 21:47:33 +00002028 SourceRange FromRange = From->getSourceRange();
2029 SourceLocation FromLoc = FromRange.getBegin();
2030
John McCall5baba9d2010-08-25 10:28:54 +00002031 ExprValueKind VK = CastCategory(From);
Sebastian Redl906082e2010-07-20 04:20:21 +00002032
Douglas Gregor5fccd362010-03-03 23:55:11 +00002033 // C++ [class.member.lookup]p8:
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002034 // [...] Ambiguities can often be resolved by qualifying a name with its
Douglas Gregor5fccd362010-03-03 23:55:11 +00002035 // class name.
2036 //
2037 // If the member was a qualified name and the qualified referred to a
2038 // specific base subobject type, we'll cast to that intermediate type
2039 // first and then to the object in which the member is declared. That allows
2040 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
2041 //
2042 // class Base { public: int x; };
2043 // class Derived1 : public Base { };
2044 // class Derived2 : public Base { };
2045 // class VeryDerived : public Derived1, public Derived2 { void f(); };
2046 //
2047 // void VeryDerived::f() {
2048 // x = 17; // error: ambiguous base subobjects
2049 // Derived1::x = 17; // okay, pick the Base subobject of Derived1
2050 // }
Douglas Gregor5fccd362010-03-03 23:55:11 +00002051 if (Qualifier) {
John McCall6bb80172010-03-30 21:47:33 +00002052 QualType QType = QualType(Qualifier->getAsType(), 0);
2053 assert(!QType.isNull() && "lookup done with dependent qualifier?");
2054 assert(QType->isRecordType() && "lookup done with non-record type");
2055
2056 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
2057
2058 // In C++98, the qualifier type doesn't actually have to be a base
2059 // type of the object type, in which case we just ignore it.
2060 // Otherwise build the appropriate casts.
2061 if (IsDerivedFrom(FromRecordType, QRecordType)) {
John McCallf871d0c2010-08-07 06:22:56 +00002062 CXXCastPath BasePath;
John McCall6bb80172010-03-30 21:47:33 +00002063 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
Anders Carlssoncee22422010-04-24 19:22:20 +00002064 FromLoc, FromRange, &BasePath))
John Wiegley429bb272011-04-08 18:41:53 +00002065 return ExprError();
John McCall6bb80172010-03-30 21:47:33 +00002066
Douglas Gregor5fccd362010-03-03 23:55:11 +00002067 if (PointerConversions)
John McCall6bb80172010-03-30 21:47:33 +00002068 QType = Context.getPointerType(QType);
John Wiegley429bb272011-04-08 18:41:53 +00002069 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
2070 VK, &BasePath).take();
John McCall6bb80172010-03-30 21:47:33 +00002071
2072 FromType = QType;
2073 FromRecordType = QRecordType;
2074
2075 // If the qualifier type was the same as the destination type,
2076 // we're done.
2077 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
John Wiegley429bb272011-04-08 18:41:53 +00002078 return Owned(From);
Douglas Gregor5fccd362010-03-03 23:55:11 +00002079 }
2080 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002081
John McCall6bb80172010-03-30 21:47:33 +00002082 bool IgnoreAccess = false;
Douglas Gregor5fccd362010-03-03 23:55:11 +00002083
John McCall6bb80172010-03-30 21:47:33 +00002084 // If we actually found the member through a using declaration, cast
2085 // down to the using declaration's type.
2086 //
2087 // Pointer equality is fine here because only one declaration of a
2088 // class ever has member declarations.
2089 if (FoundDecl->getDeclContext() != Member->getDeclContext()) {
2090 assert(isa<UsingShadowDecl>(FoundDecl));
2091 QualType URecordType = Context.getTypeDeclType(
2092 cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
2093
2094 // We only need to do this if the naming-class to declaring-class
2095 // conversion is non-trivial.
2096 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
2097 assert(IsDerivedFrom(FromRecordType, URecordType));
John McCallf871d0c2010-08-07 06:22:56 +00002098 CXXCastPath BasePath;
John McCall6bb80172010-03-30 21:47:33 +00002099 if (CheckDerivedToBaseConversion(FromRecordType, URecordType,
Anders Carlssoncee22422010-04-24 19:22:20 +00002100 FromLoc, FromRange, &BasePath))
John Wiegley429bb272011-04-08 18:41:53 +00002101 return ExprError();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00002102
John McCall6bb80172010-03-30 21:47:33 +00002103 QualType UType = URecordType;
2104 if (PointerConversions)
2105 UType = Context.getPointerType(UType);
John Wiegley429bb272011-04-08 18:41:53 +00002106 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase,
2107 VK, &BasePath).take();
John McCall6bb80172010-03-30 21:47:33 +00002108 FromType = UType;
2109 FromRecordType = URecordType;
2110 }
2111
2112 // We don't do access control for the conversion from the
2113 // declaring class to the true declaring class.
2114 IgnoreAccess = true;
Douglas Gregor5fccd362010-03-03 23:55:11 +00002115 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002116
John McCallf871d0c2010-08-07 06:22:56 +00002117 CXXCastPath BasePath;
Anders Carlssoncee22422010-04-24 19:22:20 +00002118 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
2119 FromLoc, FromRange, &BasePath,
John McCall6bb80172010-03-30 21:47:33 +00002120 IgnoreAccess))
John Wiegley429bb272011-04-08 18:41:53 +00002121 return ExprError();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002122
John Wiegley429bb272011-04-08 18:41:53 +00002123 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
2124 VK, &BasePath);
Fariborz Jahanian98a541e2009-07-29 18:40:24 +00002125}
Douglas Gregor751f9a42009-06-30 15:47:41 +00002126
Douglas Gregor83f6faf2009-08-31 23:41:50 +00002127/// \brief Build a MemberExpr AST node.
Mike Stump1eb44332009-09-09 15:08:12 +00002128static MemberExpr *BuildMemberExpr(ASTContext &C, Expr *Base, bool isArrow,
Eli Friedmanf595cc42009-12-04 06:40:45 +00002129 const CXXScopeSpec &SS, ValueDecl *Member,
John McCall161755a2010-04-06 21:38:20 +00002130 DeclAccessPair FoundDecl,
Abramo Bagnara25777432010-08-11 22:01:17 +00002131 const DeclarationNameInfo &MemberNameInfo,
2132 QualType Ty,
John McCallf89e55a2010-11-18 06:31:45 +00002133 ExprValueKind VK, ExprObjectKind OK,
John McCallf7a1a742009-11-24 19:00:30 +00002134 const TemplateArgumentListInfo *TemplateArgs = 0) {
Douglas Gregor40d96a62011-02-28 21:54:11 +00002135 return MemberExpr::Create(C, Base, isArrow, SS.getWithLocInContext(C),
Abramo Bagnara25777432010-08-11 22:01:17 +00002136 Member, FoundDecl, MemberNameInfo,
John McCallf89e55a2010-11-18 06:31:45 +00002137 TemplateArgs, Ty, VK, OK);
Douglas Gregorbd4c4ae2009-08-26 22:36:53 +00002138}
2139
John McCalldfa1edb2010-11-23 20:48:44 +00002140static ExprResult
2141BuildFieldReferenceExpr(Sema &S, Expr *BaseExpr, bool IsArrow,
2142 const CXXScopeSpec &SS, FieldDecl *Field,
2143 DeclAccessPair FoundDecl,
2144 const DeclarationNameInfo &MemberNameInfo) {
2145 // x.a is an l-value if 'a' has a reference type. Otherwise:
2146 // x.a is an l-value/x-value/pr-value if the base is (and note
2147 // that *x is always an l-value), except that if the base isn't
2148 // an ordinary object then we must have an rvalue.
2149 ExprValueKind VK = VK_LValue;
2150 ExprObjectKind OK = OK_Ordinary;
2151 if (!IsArrow) {
2152 if (BaseExpr->getObjectKind() == OK_Ordinary)
2153 VK = BaseExpr->getValueKind();
2154 else
2155 VK = VK_RValue;
2156 }
2157 if (VK != VK_RValue && Field->isBitField())
2158 OK = OK_BitField;
2159
2160 // Figure out the type of the member; see C99 6.5.2.3p3, C++ [expr.ref]
2161 QualType MemberType = Field->getType();
2162 if (const ReferenceType *Ref = MemberType->getAs<ReferenceType>()) {
2163 MemberType = Ref->getPointeeType();
2164 VK = VK_LValue;
2165 } else {
2166 QualType BaseType = BaseExpr->getType();
2167 if (IsArrow) BaseType = BaseType->getAs<PointerType>()->getPointeeType();
2168
2169 Qualifiers BaseQuals = BaseType.getQualifiers();
2170
2171 // GC attributes are never picked up by members.
2172 BaseQuals.removeObjCGCAttr();
2173
2174 // CVR attributes from the base are picked up by members,
2175 // except that 'mutable' members don't pick up 'const'.
2176 if (Field->isMutable()) BaseQuals.removeConst();
2177
2178 Qualifiers MemberQuals
2179 = S.Context.getCanonicalType(MemberType).getQualifiers();
2180
2181 // TR 18037 does not allow fields to be declared with address spaces.
2182 assert(!MemberQuals.hasAddressSpace());
2183
2184 Qualifiers Combined = BaseQuals + MemberQuals;
2185 if (Combined != MemberQuals)
2186 MemberType = S.Context.getQualifiedType(MemberType, Combined);
2187 }
2188
2189 S.MarkDeclarationReferenced(MemberNameInfo.getLoc(), Field);
John Wiegley429bb272011-04-08 18:41:53 +00002190 ExprResult Base =
2191 S.PerformObjectMemberConversion(BaseExpr, SS.getScopeRep(),
2192 FoundDecl, Field);
2193 if (Base.isInvalid())
John McCalldfa1edb2010-11-23 20:48:44 +00002194 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00002195 return S.Owned(BuildMemberExpr(S.Context, Base.take(), IsArrow, SS,
John McCalldfa1edb2010-11-23 20:48:44 +00002196 Field, FoundDecl, MemberNameInfo,
2197 MemberType, VK, OK));
2198}
2199
John McCallaa81e162009-12-01 22:10:20 +00002200/// Builds an implicit member access expression. The current context
2201/// is known to be an instance method, and the given unqualified lookup
2202/// set is known to contain only instance members, at least one of which
2203/// is from an appropriate type.
John McCall60d7b3a2010-08-24 06:29:42 +00002204ExprResult
John McCallaa81e162009-12-01 22:10:20 +00002205Sema::BuildImplicitMemberExpr(const CXXScopeSpec &SS,
2206 LookupResult &R,
2207 const TemplateArgumentListInfo *TemplateArgs,
2208 bool IsKnownInstance) {
John McCallf7a1a742009-11-24 19:00:30 +00002209 assert(!R.empty() && !R.isAmbiguous());
2210
John McCall5808ce42011-02-03 08:15:49 +00002211 SourceLocation loc = R.getNameLoc();
Sebastian Redlebc07d52009-02-03 20:19:35 +00002212
Douglas Gregorbcbffc42009-01-07 00:43:41 +00002213 // We may have found a field within an anonymous union or struct
2214 // (C++ [class.union]).
John McCallf7a1a742009-11-24 19:00:30 +00002215 // FIXME: template-ids inside anonymous structs?
Francois Pichet87c2e122010-11-21 06:08:52 +00002216 if (IndirectFieldDecl *FD = R.getAsSingle<IndirectFieldDecl>())
John McCall5808ce42011-02-03 08:15:49 +00002217 return BuildAnonymousStructUnionMemberReference(SS, R.getNameLoc(), FD);
Francois Pichet87c2e122010-11-21 06:08:52 +00002218
John McCall5808ce42011-02-03 08:15:49 +00002219 // If this is known to be an instance access, go ahead and build an
2220 // implicit 'this' expression now.
John McCallaa81e162009-12-01 22:10:20 +00002221 // 'this' expression now.
John McCall5808ce42011-02-03 08:15:49 +00002222 CXXMethodDecl *method = tryCaptureCXXThis();
2223 assert(method && "didn't correctly pre-flight capture of 'this'");
2224
2225 QualType thisType = method->getThisType(Context);
2226 Expr *baseExpr = 0; // null signifies implicit access
John McCallaa81e162009-12-01 22:10:20 +00002227 if (IsKnownInstance) {
Douglas Gregor828a1972010-01-07 23:12:05 +00002228 SourceLocation Loc = R.getNameLoc();
2229 if (SS.getRange().isValid())
2230 Loc = SS.getRange().getBegin();
John McCall5808ce42011-02-03 08:15:49 +00002231 baseExpr = new (Context) CXXThisExpr(loc, thisType, /*isImplicit=*/true);
Douglas Gregor88a35142008-12-22 05:46:06 +00002232 }
2233
John McCall5808ce42011-02-03 08:15:49 +00002234 return BuildMemberReferenceExpr(baseExpr, thisType,
John McCallaa81e162009-12-01 22:10:20 +00002235 /*OpLoc*/ SourceLocation(),
2236 /*IsArrow*/ true,
John McCallc2233c52010-01-15 08:34:02 +00002237 SS,
2238 /*FirstQualifierInScope*/ 0,
2239 R, TemplateArgs);
John McCallba135432009-11-21 08:51:07 +00002240}
2241
John McCallf7a1a742009-11-24 19:00:30 +00002242bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
John McCall5b3f9132009-11-22 01:44:31 +00002243 const LookupResult &R,
2244 bool HasTrailingLParen) {
John McCallba135432009-11-21 08:51:07 +00002245 // Only when used directly as the postfix-expression of a call.
2246 if (!HasTrailingLParen)
2247 return false;
2248
2249 // Never if a scope specifier was provided.
John McCallf7a1a742009-11-24 19:00:30 +00002250 if (SS.isSet())
John McCallba135432009-11-21 08:51:07 +00002251 return false;
2252
2253 // Only in C++ or ObjC++.
John McCall5b3f9132009-11-22 01:44:31 +00002254 if (!getLangOptions().CPlusPlus)
John McCallba135432009-11-21 08:51:07 +00002255 return false;
2256
2257 // Turn off ADL when we find certain kinds of declarations during
2258 // normal lookup:
2259 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
2260 NamedDecl *D = *I;
2261
2262 // C++0x [basic.lookup.argdep]p3:
2263 // -- a declaration of a class member
2264 // Since using decls preserve this property, we check this on the
2265 // original decl.
John McCall3b4294e2009-12-16 12:17:52 +00002266 if (D->isCXXClassMember())
John McCallba135432009-11-21 08:51:07 +00002267 return false;
2268
2269 // C++0x [basic.lookup.argdep]p3:
2270 // -- a block-scope function declaration that is not a
2271 // using-declaration
2272 // NOTE: we also trigger this for function templates (in fact, we
2273 // don't check the decl type at all, since all other decl types
2274 // turn off ADL anyway).
2275 if (isa<UsingShadowDecl>(D))
2276 D = cast<UsingShadowDecl>(D)->getTargetDecl();
2277 else if (D->getDeclContext()->isFunctionOrMethod())
2278 return false;
2279
2280 // C++0x [basic.lookup.argdep]p3:
2281 // -- a declaration that is neither a function or a function
2282 // template
2283 // And also for builtin functions.
2284 if (isa<FunctionDecl>(D)) {
2285 FunctionDecl *FDecl = cast<FunctionDecl>(D);
2286
2287 // But also builtin functions.
2288 if (FDecl->getBuiltinID() && FDecl->isImplicit())
2289 return false;
2290 } else if (!isa<FunctionTemplateDecl>(D))
2291 return false;
2292 }
2293
2294 return true;
2295}
2296
2297
John McCallba135432009-11-21 08:51:07 +00002298/// Diagnoses obvious problems with the use of the given declaration
2299/// as an expression. This is only actually called for lookups that
2300/// were not overloaded, and it doesn't promise that the declaration
2301/// will in fact be used.
2302static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
2303 if (isa<TypedefDecl>(D)) {
2304 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
2305 return true;
2306 }
2307
2308 if (isa<ObjCInterfaceDecl>(D)) {
2309 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
2310 return true;
2311 }
2312
2313 if (isa<NamespaceDecl>(D)) {
2314 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
2315 return true;
2316 }
2317
2318 return false;
2319}
2320
John McCall60d7b3a2010-08-24 06:29:42 +00002321ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00002322Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
John McCall5b3f9132009-11-22 01:44:31 +00002323 LookupResult &R,
2324 bool NeedsADL) {
John McCallfead20c2009-12-08 22:45:53 +00002325 // If this is a single, fully-resolved result and we don't need ADL,
2326 // just build an ordinary singleton decl ref.
Douglas Gregor86b8e092010-01-29 17:15:43 +00002327 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>())
Abramo Bagnara25777432010-08-11 22:01:17 +00002328 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(),
2329 R.getFoundDecl());
John McCallba135432009-11-21 08:51:07 +00002330
2331 // We only need to check the declaration if there's exactly one
2332 // result, because in the overloaded case the results can only be
2333 // functions and function templates.
John McCall5b3f9132009-11-22 01:44:31 +00002334 if (R.isSingleResult() &&
2335 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
John McCallba135432009-11-21 08:51:07 +00002336 return ExprError();
2337
John McCallc373d482010-01-27 01:50:18 +00002338 // Otherwise, just build an unresolved lookup expression. Suppress
2339 // any lookup-related diagnostics; we'll hash these out later, when
2340 // we've picked a target.
2341 R.suppressDiagnostics();
2342
John McCallba135432009-11-21 08:51:07 +00002343 UnresolvedLookupExpr *ULE
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00002344 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor4c9be892011-02-28 20:01:57 +00002345 SS.getWithLocInContext(Context),
2346 R.getLookupNameInfo(),
Douglas Gregor5a84dec2010-05-23 18:57:34 +00002347 NeedsADL, R.isOverloadedResult(),
2348 R.begin(), R.end());
John McCallba135432009-11-21 08:51:07 +00002349
2350 return Owned(ULE);
2351}
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002352
John McCallba135432009-11-21 08:51:07 +00002353/// \brief Complete semantic analysis for a reference to the given declaration.
John McCall60d7b3a2010-08-24 06:29:42 +00002354ExprResult
John McCallf7a1a742009-11-24 19:00:30 +00002355Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00002356 const DeclarationNameInfo &NameInfo,
2357 NamedDecl *D) {
John McCallba135432009-11-21 08:51:07 +00002358 assert(D && "Cannot refer to a NULL declaration");
John McCall7453ed42009-11-22 00:44:51 +00002359 assert(!isa<FunctionTemplateDecl>(D) &&
2360 "Cannot refer unambiguously to a function template");
John McCallba135432009-11-21 08:51:07 +00002361
Abramo Bagnara25777432010-08-11 22:01:17 +00002362 SourceLocation Loc = NameInfo.getLoc();
John McCallba135432009-11-21 08:51:07 +00002363 if (CheckDeclInExpr(*this, Loc, D))
2364 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002365
Douglas Gregor9af2f522009-12-01 16:58:18 +00002366 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
2367 // Specifically diagnose references to class templates that are missing
2368 // a template argument list.
2369 Diag(Loc, diag::err_template_decl_ref)
2370 << Template << SS.getRange();
2371 Diag(Template->getLocation(), diag::note_template_decl_here);
2372 return ExprError();
2373 }
2374
2375 // Make sure that we're referring to a value.
2376 ValueDecl *VD = dyn_cast<ValueDecl>(D);
2377 if (!VD) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002378 Diag(Loc, diag::err_ref_non_value)
Douglas Gregor9af2f522009-12-01 16:58:18 +00002379 << D << SS.getRange();
John McCall87cf6702009-12-18 18:35:10 +00002380 Diag(D->getLocation(), diag::note_declared_at);
Douglas Gregor9af2f522009-12-01 16:58:18 +00002381 return ExprError();
2382 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002383
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002384 // Check whether this declaration can be used. Note that we suppress
2385 // this check when we're going to perform argument-dependent lookup
2386 // on this function name, because this might not be the function
2387 // that overload resolution actually selects.
John McCallba135432009-11-21 08:51:07 +00002388 if (DiagnoseUseOfDecl(VD, Loc))
Douglas Gregor48f3bb92009-02-18 21:56:37 +00002389 return ExprError();
2390
Steve Naroffdd972f22008-09-05 22:11:13 +00002391 // Only create DeclRefExpr's for valid Decl's.
2392 if (VD->isInvalidDecl())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002393 return ExprError();
2394
John McCall5808ce42011-02-03 08:15:49 +00002395 // Handle members of anonymous structs and unions. If we got here,
2396 // and the reference is to a class member indirect field, then this
2397 // must be the subject of a pointer-to-member expression.
2398 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
2399 if (!indirectField->isCXXClassMember())
2400 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
2401 indirectField);
Francois Pichet87c2e122010-11-21 06:08:52 +00002402
Chris Lattner639e2d32008-10-20 05:16:36 +00002403 // If the identifier reference is inside a block, and it refers to a value
2404 // that is outside the block, create a BlockDeclRefExpr instead of a
2405 // DeclRefExpr. This ensures the value is treated as a copy-in snapshot when
2406 // the block is formed.
Steve Naroffdd972f22008-09-05 22:11:13 +00002407 //
Chris Lattner639e2d32008-10-20 05:16:36 +00002408 // We do not do this for things like enum constants, global variables, etc,
2409 // as they do not get snapshotted.
2410 //
John McCall6b5a61b2011-02-07 10:33:21 +00002411 switch (shouldCaptureValueReference(*this, NameInfo.getLoc(), VD)) {
John McCall469a1eb2011-02-02 13:00:07 +00002412 case CR_Error:
2413 return ExprError();
Mike Stump0d6fd572010-01-05 02:56:35 +00002414
John McCall469a1eb2011-02-02 13:00:07 +00002415 case CR_Capture:
John McCall6b5a61b2011-02-07 10:33:21 +00002416 assert(!SS.isSet() && "referenced local variable with scope specifier?");
2417 return BuildBlockDeclRefExpr(*this, VD, NameInfo, /*byref*/ false);
2418
2419 case CR_CaptureByRef:
2420 assert(!SS.isSet() && "referenced local variable with scope specifier?");
2421 return BuildBlockDeclRefExpr(*this, VD, NameInfo, /*byref*/ true);
John McCall76a40212011-02-09 01:13:10 +00002422
2423 case CR_NoCapture: {
2424 // If this reference is not in a block or if the referenced
2425 // variable is within the block, create a normal DeclRefExpr.
2426
2427 QualType type = VD->getType();
Daniel Dunbarb20de812011-02-10 18:29:28 +00002428 ExprValueKind valueKind = VK_RValue;
John McCall76a40212011-02-09 01:13:10 +00002429
2430 switch (D->getKind()) {
2431 // Ignore all the non-ValueDecl kinds.
2432#define ABSTRACT_DECL(kind)
2433#define VALUE(type, base)
2434#define DECL(type, base) \
2435 case Decl::type:
2436#include "clang/AST/DeclNodes.inc"
2437 llvm_unreachable("invalid value decl kind");
2438 return ExprError();
2439
2440 // These shouldn't make it here.
2441 case Decl::ObjCAtDefsField:
2442 case Decl::ObjCIvar:
2443 llvm_unreachable("forming non-member reference to ivar?");
2444 return ExprError();
2445
2446 // Enum constants are always r-values and never references.
2447 // Unresolved using declarations are dependent.
2448 case Decl::EnumConstant:
2449 case Decl::UnresolvedUsingValue:
2450 valueKind = VK_RValue;
2451 break;
2452
2453 // Fields and indirect fields that got here must be for
2454 // pointer-to-member expressions; we just call them l-values for
2455 // internal consistency, because this subexpression doesn't really
2456 // exist in the high-level semantics.
2457 case Decl::Field:
2458 case Decl::IndirectField:
2459 assert(getLangOptions().CPlusPlus &&
2460 "building reference to field in C?");
2461
2462 // These can't have reference type in well-formed programs, but
2463 // for internal consistency we do this anyway.
2464 type = type.getNonReferenceType();
2465 valueKind = VK_LValue;
2466 break;
2467
2468 // Non-type template parameters are either l-values or r-values
2469 // depending on the type.
2470 case Decl::NonTypeTemplateParm: {
2471 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
2472 type = reftype->getPointeeType();
2473 valueKind = VK_LValue; // even if the parameter is an r-value reference
2474 break;
2475 }
2476
2477 // For non-references, we need to strip qualifiers just in case
2478 // the template parameter was declared as 'const int' or whatever.
2479 valueKind = VK_RValue;
2480 type = type.getUnqualifiedType();
2481 break;
2482 }
2483
2484 case Decl::Var:
2485 // In C, "extern void blah;" is valid and is an r-value.
2486 if (!getLangOptions().CPlusPlus &&
2487 !type.hasQualifiers() &&
2488 type->isVoidType()) {
2489 valueKind = VK_RValue;
2490 break;
2491 }
2492 // fallthrough
2493
2494 case Decl::ImplicitParam:
2495 case Decl::ParmVar:
2496 // These are always l-values.
2497 valueKind = VK_LValue;
2498 type = type.getNonReferenceType();
2499 break;
2500
2501 case Decl::Function: {
John McCall755d8492011-04-12 00:42:48 +00002502 const FunctionType *fty = type->castAs<FunctionType>();
2503
2504 // If we're referring to a function with an __unknown_anytype
2505 // result type, make the entire expression __unknown_anytype.
2506 if (fty->getResultType() == Context.UnknownAnyTy) {
2507 type = Context.UnknownAnyTy;
2508 valueKind = VK_RValue;
2509 break;
2510 }
2511
John McCall76a40212011-02-09 01:13:10 +00002512 // Functions are l-values in C++.
2513 if (getLangOptions().CPlusPlus) {
2514 valueKind = VK_LValue;
2515 break;
2516 }
2517
2518 // C99 DR 316 says that, if a function type comes from a
2519 // function definition (without a prototype), that type is only
2520 // used for checking compatibility. Therefore, when referencing
2521 // the function, we pretend that we don't have the full function
2522 // type.
John McCall755d8492011-04-12 00:42:48 +00002523 if (!cast<FunctionDecl>(VD)->hasPrototype() &&
2524 isa<FunctionProtoType>(fty))
2525 type = Context.getFunctionNoProtoType(fty->getResultType(),
2526 fty->getExtInfo());
John McCall76a40212011-02-09 01:13:10 +00002527
2528 // Functions are r-values in C.
2529 valueKind = VK_RValue;
2530 break;
2531 }
2532
2533 case Decl::CXXMethod:
John McCall755d8492011-04-12 00:42:48 +00002534 // If we're referring to a method with an __unknown_anytype
2535 // result type, make the entire expression __unknown_anytype.
2536 // This should only be possible with a type written directly.
2537 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(VD->getType()))
2538 if (proto->getResultType() == Context.UnknownAnyTy) {
2539 type = Context.UnknownAnyTy;
2540 valueKind = VK_RValue;
2541 break;
2542 }
2543
John McCall76a40212011-02-09 01:13:10 +00002544 // C++ methods are l-values if static, r-values if non-static.
2545 if (cast<CXXMethodDecl>(VD)->isStatic()) {
2546 valueKind = VK_LValue;
2547 break;
2548 }
2549 // fallthrough
2550
2551 case Decl::CXXConversion:
2552 case Decl::CXXDestructor:
2553 case Decl::CXXConstructor:
2554 valueKind = VK_RValue;
2555 break;
2556 }
2557
2558 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS);
2559 }
2560
John McCall469a1eb2011-02-02 13:00:07 +00002561 }
John McCallf89e55a2010-11-18 06:31:45 +00002562
John McCall6b5a61b2011-02-07 10:33:21 +00002563 llvm_unreachable("unknown capture result");
2564 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002565}
2566
John McCall755d8492011-04-12 00:42:48 +00002567ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
Chris Lattnerd9f69102008-08-10 01:53:14 +00002568 PredefinedExpr::IdentType IT;
Sebastian Redlcd965b92009-01-18 18:53:16 +00002569
Reid Spencer5f016e22007-07-11 17:01:13 +00002570 switch (Kind) {
Chris Lattner1423ea42008-01-12 18:39:25 +00002571 default: assert(0 && "Unknown simple primary expr!");
Chris Lattnerd9f69102008-08-10 01:53:14 +00002572 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
2573 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
2574 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00002575 }
Chris Lattner1423ea42008-01-12 18:39:25 +00002576
Chris Lattnerfa28b302008-01-12 08:14:25 +00002577 // Pre-defined identifiers are of type char[x], where x is the length of the
2578 // string.
Mike Stump1eb44332009-09-09 15:08:12 +00002579
Anders Carlsson3a082d82009-09-08 18:24:21 +00002580 Decl *currentDecl = getCurFunctionOrMethodDecl();
Fariborz Jahanianeb024ac2010-07-23 21:53:24 +00002581 if (!currentDecl && getCurBlock())
2582 currentDecl = getCurBlock()->TheDecl;
Anders Carlsson3a082d82009-09-08 18:24:21 +00002583 if (!currentDecl) {
Chris Lattnerb0da9232008-12-12 05:05:20 +00002584 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson3a082d82009-09-08 18:24:21 +00002585 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerb0da9232008-12-12 05:05:20 +00002586 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002587
Anders Carlsson773f3972009-09-11 01:22:35 +00002588 QualType ResTy;
2589 if (cast<DeclContext>(currentDecl)->isDependentContext()) {
2590 ResTy = Context.DependentTy;
2591 } else {
Anders Carlsson848fa642010-02-11 18:20:28 +00002592 unsigned Length = PredefinedExpr::ComputeName(IT, currentDecl).length();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002593
Anders Carlsson773f3972009-09-11 01:22:35 +00002594 llvm::APInt LengthI(32, Length + 1);
John McCall0953e762009-09-24 19:53:00 +00002595 ResTy = Context.CharTy.withConst();
Anders Carlsson773f3972009-09-11 01:22:35 +00002596 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal, 0);
2597 }
Steve Naroff6ece14c2009-01-21 00:14:39 +00002598 return Owned(new (Context) PredefinedExpr(Loc, ResTy, IT));
Reid Spencer5f016e22007-07-11 17:01:13 +00002599}
2600
John McCall60d7b3a2010-08-24 06:29:42 +00002601ExprResult Sema::ActOnCharacterConstant(const Token &Tok) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002602 llvm::SmallString<16> CharBuffer;
Douglas Gregor453091c2010-03-16 22:30:13 +00002603 bool Invalid = false;
2604 llvm::StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
2605 if (Invalid)
2606 return ExprError();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002607
Benjamin Kramerddeea562010-02-27 13:44:12 +00002608 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
2609 PP);
Reid Spencer5f016e22007-07-11 17:01:13 +00002610 if (Literal.hadError())
Sebastian Redlcd965b92009-01-18 18:53:16 +00002611 return ExprError();
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00002612
Chris Lattnere8337df2009-12-30 21:19:39 +00002613 QualType Ty;
2614 if (!getLangOptions().CPlusPlus)
2615 Ty = Context.IntTy; // 'x' and L'x' -> int in C.
2616 else if (Literal.isWide())
2617 Ty = Context.WCharTy; // L'x' -> wchar_t in C++.
Eli Friedman136b0cd2010-02-03 18:21:45 +00002618 else if (Literal.isMultiChar())
2619 Ty = Context.IntTy; // 'wxyz' -> int in C++.
Chris Lattnere8337df2009-12-30 21:19:39 +00002620 else
2621 Ty = Context.CharTy; // 'x' -> char in C++
Chris Lattnerfc62bfd2008-03-01 08:32:21 +00002622
Sebastian Redle91b3bc2009-01-20 22:23:13 +00002623 return Owned(new (Context) CharacterLiteral(Literal.getValue(),
2624 Literal.isWide(),
Chris Lattnere8337df2009-12-30 21:19:39 +00002625 Ty, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00002626}
2627
John McCall60d7b3a2010-08-24 06:29:42 +00002628ExprResult Sema::ActOnNumericConstant(const Token &Tok) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00002629 // Fast path for a single digit (which is quite common). A single digit
Reid Spencer5f016e22007-07-11 17:01:13 +00002630 // cannot have a trigraph, escaped newline, radix prefix, or type suffix.
2631 if (Tok.getLength() == 1) {
Chris Lattner7216dc92009-01-26 22:36:52 +00002632 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Chris Lattner0c21e842009-01-16 07:10:29 +00002633 unsigned IntSize = Context.Target.getIntWidth();
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00002634 return Owned(IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val-'0'),
Steve Naroff0a473932009-01-20 19:53:53 +00002635 Context.IntTy, Tok.getLocation()));
Reid Spencer5f016e22007-07-11 17:01:13 +00002636 }
Ted Kremenek28396602009-01-13 23:19:12 +00002637
Reid Spencer5f016e22007-07-11 17:01:13 +00002638 llvm::SmallString<512> IntegerBuffer;
Chris Lattner2a299042008-09-30 20:53:45 +00002639 // Add padding so that NumericLiteralParser can overread by one character.
2640 IntegerBuffer.resize(Tok.getLength()+1);
Reid Spencer5f016e22007-07-11 17:01:13 +00002641 const char *ThisTokBegin = &IntegerBuffer[0];
Sebastian Redlcd965b92009-01-18 18:53:16 +00002642
Reid Spencer5f016e22007-07-11 17:01:13 +00002643 // Get the spelling of the token, which eliminates trigraphs, etc.
Douglas Gregor453091c2010-03-16 22:30:13 +00002644 bool Invalid = false;
2645 unsigned ActualLength = PP.getSpelling(Tok, ThisTokBegin, &Invalid);
2646 if (Invalid)
2647 return ExprError();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002648
Mike Stump1eb44332009-09-09 15:08:12 +00002649 NumericLiteralParser Literal(ThisTokBegin, ThisTokBegin+ActualLength,
Reid Spencer5f016e22007-07-11 17:01:13 +00002650 Tok.getLocation(), PP);
2651 if (Literal.hadError)
Sebastian Redlcd965b92009-01-18 18:53:16 +00002652 return ExprError();
2653
Chris Lattner5d661452007-08-26 03:42:43 +00002654 Expr *Res;
Sebastian Redlcd965b92009-01-18 18:53:16 +00002655
Chris Lattner5d661452007-08-26 03:42:43 +00002656 if (Literal.isFloatingLiteral()) {
Chris Lattner525a0502007-09-22 18:29:59 +00002657 QualType Ty;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002658 if (Literal.isFloat)
Chris Lattner525a0502007-09-22 18:29:59 +00002659 Ty = Context.FloatTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002660 else if (!Literal.isLong)
Chris Lattner525a0502007-09-22 18:29:59 +00002661 Ty = Context.DoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002662 else
Chris Lattner9e9b6dc2008-03-08 08:52:55 +00002663 Ty = Context.LongDoubleTy;
Chris Lattnerb7cfe882008-06-30 18:32:54 +00002664
2665 const llvm::fltSemantics &Format = Context.getFloatTypeSemantics(Ty);
2666
John McCall94c939d2009-12-24 09:08:04 +00002667 using llvm::APFloat;
2668 APFloat Val(Format);
2669
2670 APFloat::opStatus result = Literal.GetFloatValue(Val);
John McCall9f2df882009-12-24 11:09:08 +00002671
2672 // Overflow is always an error, but underflow is only an error if
2673 // we underflowed to zero (APFloat reports denormals as underflow).
2674 if ((result & APFloat::opOverflow) ||
2675 ((result & APFloat::opUnderflow) && Val.isZero())) {
John McCall94c939d2009-12-24 09:08:04 +00002676 unsigned diagnostic;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00002677 llvm::SmallString<20> buffer;
John McCall94c939d2009-12-24 09:08:04 +00002678 if (result & APFloat::opOverflow) {
John McCall2a0d7572010-02-26 23:35:57 +00002679 diagnostic = diag::warn_float_overflow;
John McCall94c939d2009-12-24 09:08:04 +00002680 APFloat::getLargest(Format).toString(buffer);
2681 } else {
John McCall2a0d7572010-02-26 23:35:57 +00002682 diagnostic = diag::warn_float_underflow;
John McCall94c939d2009-12-24 09:08:04 +00002683 APFloat::getSmallest(Format).toString(buffer);
2684 }
2685
2686 Diag(Tok.getLocation(), diagnostic)
2687 << Ty
2688 << llvm::StringRef(buffer.data(), buffer.size());
2689 }
2690
2691 bool isExact = (result == APFloat::opOK);
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00002692 Res = FloatingLiteral::Create(Context, Val, isExact, Ty, Tok.getLocation());
Sebastian Redlcd965b92009-01-18 18:53:16 +00002693
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002694 if (Ty == Context.DoubleTy) {
2695 if (getLangOptions().SinglePrecisionConstants) {
John Wiegley429bb272011-04-08 18:41:53 +00002696 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take();
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002697 } else if (getLangOptions().OpenCL && !getOpenCLOptions().cl_khr_fp64) {
2698 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64);
John Wiegley429bb272011-04-08 18:41:53 +00002699 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).take();
Peter Collingbournef4f7cb82011-03-11 19:24:59 +00002700 }
2701 }
Chris Lattner5d661452007-08-26 03:42:43 +00002702 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlcd965b92009-01-18 18:53:16 +00002703 return ExprError();
Chris Lattner5d661452007-08-26 03:42:43 +00002704 } else {
Chris Lattnerf0467b32008-04-02 04:24:33 +00002705 QualType Ty;
Reid Spencer5f016e22007-07-11 17:01:13 +00002706
Neil Boothb9449512007-08-29 22:00:19 +00002707 // long long is a C99 feature.
2708 if (!getLangOptions().C99 && !getLangOptions().CPlusPlus0x &&
Neil Booth79859c32007-08-29 22:13:52 +00002709 Literal.isLongLong)
Neil Boothb9449512007-08-29 22:00:19 +00002710 Diag(Tok.getLocation(), diag::ext_longlong);
2711
Reid Spencer5f016e22007-07-11 17:01:13 +00002712 // Get the value in the widest-possible width.
Chris Lattner98be4942008-03-05 18:54:05 +00002713 llvm::APInt ResultVal(Context.Target.getIntMaxTWidth(), 0);
Sebastian Redlcd965b92009-01-18 18:53:16 +00002714
Reid Spencer5f016e22007-07-11 17:01:13 +00002715 if (Literal.GetIntegerValue(ResultVal)) {
2716 // If this value didn't fit into uintmax_t, warn and force to ull.
2717 Diag(Tok.getLocation(), diag::warn_integer_too_large);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002718 Ty = Context.UnsignedLongLongTy;
2719 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner98be4942008-03-05 18:54:05 +00002720 "long long is not intmax_t?");
Reid Spencer5f016e22007-07-11 17:01:13 +00002721 } else {
2722 // If this value fits into a ULL, try to figure out what else it fits into
2723 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlcd965b92009-01-18 18:53:16 +00002724
Reid Spencer5f016e22007-07-11 17:01:13 +00002725 // Octal, Hexadecimal, and integers with a U suffix are allowed to
2726 // be an unsigned int.
2727 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
2728
2729 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002730 unsigned Width = 0;
Chris Lattner97c51562007-08-23 21:58:08 +00002731 if (!Literal.isLong && !Literal.isLongLong) {
2732 // Are int/unsigned possibilities?
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002733 unsigned IntSize = Context.Target.getIntWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002734
Reid Spencer5f016e22007-07-11 17:01:13 +00002735 // Does it fit in a unsigned int?
2736 if (ResultVal.isIntN(IntSize)) {
2737 // Does it fit in a signed int?
2738 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002739 Ty = Context.IntTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002740 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002741 Ty = Context.UnsignedIntTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002742 Width = IntSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002743 }
Reid Spencer5f016e22007-07-11 17:01:13 +00002744 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002745
Reid Spencer5f016e22007-07-11 17:01:13 +00002746 // Are long/unsigned long possibilities?
Chris Lattnerf0467b32008-04-02 04:24:33 +00002747 if (Ty.isNull() && !Literal.isLongLong) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002748 unsigned LongSize = Context.Target.getLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002749
Reid Spencer5f016e22007-07-11 17:01:13 +00002750 // Does it fit in a unsigned long?
2751 if (ResultVal.isIntN(LongSize)) {
2752 // Does it fit in a signed long?
2753 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002754 Ty = Context.LongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002755 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002756 Ty = Context.UnsignedLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002757 Width = LongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002758 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002759 }
2760
Reid Spencer5f016e22007-07-11 17:01:13 +00002761 // Finally, check long long if needed.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002762 if (Ty.isNull()) {
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002763 unsigned LongLongSize = Context.Target.getLongLongWidth();
Sebastian Redlcd965b92009-01-18 18:53:16 +00002764
Reid Spencer5f016e22007-07-11 17:01:13 +00002765 // Does it fit in a unsigned long long?
2766 if (ResultVal.isIntN(LongLongSize)) {
2767 // Does it fit in a signed long long?
Francois Pichet24323202011-01-11 23:38:13 +00002768 // To be compatible with MSVC, hex integer literals ending with the
2769 // LL or i64 suffix are always signed in Microsoft mode.
Francois Picheta15a5ee2011-01-11 12:23:00 +00002770 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
2771 (getLangOptions().Microsoft && Literal.isLongLong)))
Chris Lattnerf0467b32008-04-02 04:24:33 +00002772 Ty = Context.LongLongTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00002773 else if (AllowUnsigned)
Chris Lattnerf0467b32008-04-02 04:24:33 +00002774 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002775 Width = LongLongSize;
Reid Spencer5f016e22007-07-11 17:01:13 +00002776 }
2777 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002778
Reid Spencer5f016e22007-07-11 17:01:13 +00002779 // If we still couldn't decide a type, we probably have something that
2780 // does not fit in a signed long long, but has no U suffix.
Chris Lattnerf0467b32008-04-02 04:24:33 +00002781 if (Ty.isNull()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002782 Diag(Tok.getLocation(), diag::warn_integer_too_large_for_signed);
Chris Lattnerf0467b32008-04-02 04:24:33 +00002783 Ty = Context.UnsignedLongLongTy;
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002784 Width = Context.Target.getLongLongWidth();
Reid Spencer5f016e22007-07-11 17:01:13 +00002785 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002786
Chris Lattner8cbcb0e2008-05-09 05:59:00 +00002787 if (ResultVal.getBitWidth() != Width)
Jay Foad9f71a8f2010-12-07 08:25:34 +00002788 ResultVal = ResultVal.trunc(Width);
Reid Spencer5f016e22007-07-11 17:01:13 +00002789 }
Argyrios Kyrtzidis9996a7f2010-08-28 09:06:06 +00002790 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
Reid Spencer5f016e22007-07-11 17:01:13 +00002791 }
Sebastian Redlcd965b92009-01-18 18:53:16 +00002792
Chris Lattner5d661452007-08-26 03:42:43 +00002793 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
2794 if (Literal.isImaginary)
Mike Stump1eb44332009-09-09 15:08:12 +00002795 Res = new (Context) ImaginaryLiteral(Res,
Steve Naroff6ece14c2009-01-21 00:14:39 +00002796 Context.getComplexType(Res->getType()));
Sebastian Redlcd965b92009-01-18 18:53:16 +00002797
2798 return Owned(Res);
Reid Spencer5f016e22007-07-11 17:01:13 +00002799}
2800
John McCall60d7b3a2010-08-24 06:29:42 +00002801ExprResult Sema::ActOnParenExpr(SourceLocation L,
John McCall9ae2f072010-08-23 23:25:46 +00002802 SourceLocation R, Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00002803 assert((E != 0) && "ActOnParenExpr() missing expr");
Steve Naroff6ece14c2009-01-21 00:14:39 +00002804 return Owned(new (Context) ParenExpr(L, R, E));
Reid Spencer5f016e22007-07-11 17:01:13 +00002805}
2806
2807/// The UsualUnaryConversions() function is *not* called by this routine.
2808/// See C99 6.3.2.1p[2-4] for more details.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002809bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType exprType,
2810 SourceLocation OpLoc,
2811 SourceRange ExprRange,
2812 UnaryExprOrTypeTrait ExprKind) {
Sebastian Redl28507842009-02-26 14:39:58 +00002813 if (exprType->isDependentType())
2814 return false;
2815
Sebastian Redl5d484e82009-11-23 17:18:46 +00002816 // C++ [expr.sizeof]p2: "When applied to a reference or a reference type,
2817 // the result is the size of the referenced type."
2818 // C++ [expr.alignof]p3: "When alignof is applied to a reference type, the
2819 // result shall be the alignment of the referenced type."
2820 if (const ReferenceType *Ref = exprType->getAs<ReferenceType>())
2821 exprType = Ref->getPointeeType();
2822
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002823 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
2824 // scalar or vector data type argument..."
2825 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
2826 // type (C99 6.2.5p18) or void.
2827 if (ExprKind == UETT_VecStep) {
2828 if (!(exprType->isArithmeticType() || exprType->isVoidType() ||
2829 exprType->isVectorType())) {
2830 Diag(OpLoc, diag::err_vecstep_non_scalar_vector_type)
2831 << exprType << ExprRange;
2832 return true;
2833 }
2834 }
2835
Reid Spencer5f016e22007-07-11 17:01:13 +00002836 // C99 6.5.3.4p1:
John McCall5ab75172009-11-04 07:28:41 +00002837 if (exprType->isFunctionType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00002838 // alignof(function) is allowed as an extension.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002839 if (ExprKind == UETT_SizeOf)
2840 Diag(OpLoc, diag::ext_sizeof_function_type)
2841 << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00002842 return false;
2843 }
Mike Stump1eb44332009-09-09 15:08:12 +00002844
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002845 // Allow sizeof(void)/alignof(void) as an extension. vec_step(void) is not
2846 // an extension, as void is a built-in scalar type (OpenCL 1.1 6.1.1).
Chris Lattner01072922009-01-24 19:46:37 +00002847 if (exprType->isVoidType()) {
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002848 if (ExprKind != UETT_VecStep)
2849 Diag(OpLoc, diag::ext_sizeof_void_type)
2850 << ExprKind << ExprRange;
Chris Lattner01072922009-01-24 19:46:37 +00002851 return false;
2852 }
Mike Stump1eb44332009-09-09 15:08:12 +00002853
Chris Lattner1efaa952009-04-24 00:30:45 +00002854 if (RequireCompleteType(OpLoc, exprType,
Douglas Gregor5cc07df2009-12-15 16:44:32 +00002855 PDiag(diag::err_sizeof_alignof_incomplete_type)
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002856 << ExprKind << ExprRange))
Chris Lattner1efaa952009-04-24 00:30:45 +00002857 return true;
Mike Stump1eb44332009-09-09 15:08:12 +00002858
Chris Lattner1efaa952009-04-24 00:30:45 +00002859 // Reject sizeof(interface) and sizeof(interface<proto>) in 64-bit mode.
John McCallc12c5bb2010-05-15 11:32:37 +00002860 if (LangOpts.ObjCNonFragileABI && exprType->isObjCObjectType()) {
Chris Lattner1efaa952009-04-24 00:30:45 +00002861 Diag(OpLoc, diag::err_sizeof_nonfragile_interface)
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002862 << exprType << (ExprKind == UETT_SizeOf)
2863 << ExprRange;
Chris Lattner5cb10d32009-04-24 22:30:50 +00002864 return true;
Chris Lattnerca790922009-04-21 19:55:16 +00002865 }
Mike Stump1eb44332009-09-09 15:08:12 +00002866
Chris Lattner1efaa952009-04-24 00:30:45 +00002867 return false;
Reid Spencer5f016e22007-07-11 17:01:13 +00002868}
2869
John McCall2a984ca2010-10-12 00:20:44 +00002870static bool CheckAlignOfExpr(Sema &S, Expr *E, SourceLocation OpLoc,
2871 SourceRange ExprRange) {
Chris Lattner31e21e02009-01-24 20:17:12 +00002872 E = E->IgnoreParens();
Sebastian Redl28507842009-02-26 14:39:58 +00002873
Mike Stump1eb44332009-09-09 15:08:12 +00002874 // alignof decl is always ok.
Chris Lattner31e21e02009-01-24 20:17:12 +00002875 if (isa<DeclRefExpr>(E))
2876 return false;
Sebastian Redl28507842009-02-26 14:39:58 +00002877
2878 // Cannot know anything else if the expression is dependent.
2879 if (E->isTypeDependent())
2880 return false;
2881
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002882 if (E->getBitField()) {
John McCall2a984ca2010-10-12 00:20:44 +00002883 S. Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 1 << ExprRange;
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002884 return true;
Chris Lattner31e21e02009-01-24 20:17:12 +00002885 }
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002886
2887 // Alignment of a field access is always okay, so long as it isn't a
2888 // bit-field.
2889 if (MemberExpr *ME = dyn_cast<MemberExpr>(E))
Mike Stump8e1fab22009-07-22 18:58:19 +00002890 if (isa<FieldDecl>(ME->getMemberDecl()))
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002891 return false;
2892
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002893 return S.CheckUnaryExprOrTypeTraitOperand(E->getType(), OpLoc, ExprRange,
2894 UETT_AlignOf);
2895}
2896
2897bool Sema::CheckVecStepExpr(Expr *E, SourceLocation OpLoc,
2898 SourceRange ExprRange) {
2899 E = E->IgnoreParens();
2900
2901 // Cannot know anything else if the expression is dependent.
2902 if (E->isTypeDependent())
2903 return false;
2904
2905 return CheckUnaryExprOrTypeTraitOperand(E->getType(), OpLoc, ExprRange,
2906 UETT_VecStep);
Chris Lattner31e21e02009-01-24 20:17:12 +00002907}
2908
Douglas Gregorba498172009-03-13 21:01:28 +00002909/// \brief Build a sizeof or alignof expression given a type operand.
John McCall60d7b3a2010-08-24 06:29:42 +00002910ExprResult
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002911Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
2912 SourceLocation OpLoc,
2913 UnaryExprOrTypeTrait ExprKind,
2914 SourceRange R) {
John McCalla93c9342009-12-07 02:54:59 +00002915 if (!TInfo)
Douglas Gregorba498172009-03-13 21:01:28 +00002916 return ExprError();
2917
John McCalla93c9342009-12-07 02:54:59 +00002918 QualType T = TInfo->getType();
John McCall5ab75172009-11-04 07:28:41 +00002919
Douglas Gregorba498172009-03-13 21:01:28 +00002920 if (!T->isDependentType() &&
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002921 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
Douglas Gregorba498172009-03-13 21:01:28 +00002922 return ExprError();
2923
2924 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002925 return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, TInfo,
2926 Context.getSizeType(),
2927 OpLoc, R.getEnd()));
Douglas Gregorba498172009-03-13 21:01:28 +00002928}
2929
2930/// \brief Build a sizeof or alignof expression given an expression
2931/// operand.
John McCall60d7b3a2010-08-24 06:29:42 +00002932ExprResult
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002933Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
2934 UnaryExprOrTypeTrait ExprKind,
2935 SourceRange R) {
Douglas Gregorba498172009-03-13 21:01:28 +00002936 // Verify that the operand is valid.
2937 bool isInvalid = false;
2938 if (E->isTypeDependent()) {
2939 // Delay type-checking for type-dependent expressions.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002940 } else if (ExprKind == UETT_AlignOf) {
John McCall2a984ca2010-10-12 00:20:44 +00002941 isInvalid = CheckAlignOfExpr(*this, E, OpLoc, R);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002942 } else if (ExprKind == UETT_VecStep) {
2943 isInvalid = CheckVecStepExpr(E, OpLoc, R);
Douglas Gregor33bbbc52009-05-02 02:18:30 +00002944 } else if (E->getBitField()) { // C99 6.5.3.4p1.
Douglas Gregorba498172009-03-13 21:01:28 +00002945 Diag(OpLoc, diag::err_sizeof_alignof_bitfield) << 0;
2946 isInvalid = true;
John McCall2cd11fe2010-10-12 02:09:17 +00002947 } else if (E->getType()->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00002948 ExprResult PE = CheckPlaceholderExpr(E);
John McCall2cd11fe2010-10-12 02:09:17 +00002949 if (PE.isInvalid()) return ExprError();
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002950 return CreateUnaryExprOrTypeTraitExpr(PE.take(), OpLoc, ExprKind, R);
Douglas Gregorba498172009-03-13 21:01:28 +00002951 } else {
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002952 isInvalid = CheckUnaryExprOrTypeTraitOperand(E->getType(), OpLoc, R,
2953 UETT_SizeOf);
Douglas Gregorba498172009-03-13 21:01:28 +00002954 }
2955
2956 if (isInvalid)
2957 return ExprError();
2958
2959 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002960 return Owned(new (Context) UnaryExprOrTypeTraitExpr(ExprKind, E,
2961 Context.getSizeType(),
2962 OpLoc, R.getEnd()));
Douglas Gregorba498172009-03-13 21:01:28 +00002963}
2964
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002965/// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
2966/// expr and the same for @c alignof and @c __alignof
Sebastian Redl05189992008-11-11 17:56:53 +00002967/// Note that the ArgRange is invalid if isType is false.
John McCall60d7b3a2010-08-24 06:29:42 +00002968ExprResult
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002969Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
2970 UnaryExprOrTypeTrait ExprKind, bool isType,
2971 void *TyOrEx, const SourceRange &ArgRange) {
Reid Spencer5f016e22007-07-11 17:01:13 +00002972 // If error parsing type, ignore.
Sebastian Redl0eb23302009-01-19 00:08:26 +00002973 if (TyOrEx == 0) return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00002974
Sebastian Redl05189992008-11-11 17:56:53 +00002975 if (isType) {
John McCalla93c9342009-12-07 02:54:59 +00002976 TypeSourceInfo *TInfo;
John McCallb3d87482010-08-24 05:47:05 +00002977 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002978 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
Mike Stump1eb44332009-09-09 15:08:12 +00002979 }
Sebastian Redl05189992008-11-11 17:56:53 +00002980
Douglas Gregorba498172009-03-13 21:01:28 +00002981 Expr *ArgEx = (Expr *)TyOrEx;
John McCall60d7b3a2010-08-24 06:29:42 +00002982 ExprResult Result
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00002983 = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind,
2984 ArgEx->getSourceRange());
Douglas Gregorba498172009-03-13 21:01:28 +00002985
Douglas Gregorba498172009-03-13 21:01:28 +00002986 return move(Result);
Reid Spencer5f016e22007-07-11 17:01:13 +00002987}
2988
John Wiegley429bb272011-04-08 18:41:53 +00002989static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
John McCall09431682010-11-18 19:01:18 +00002990 bool isReal) {
John Wiegley429bb272011-04-08 18:41:53 +00002991 if (V.get()->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00002992 return S.Context.DependentTy;
Mike Stump1eb44332009-09-09 15:08:12 +00002993
John McCallf6a16482010-12-04 03:47:34 +00002994 // _Real and _Imag are only l-values for normal l-values.
John Wiegley429bb272011-04-08 18:41:53 +00002995 if (V.get()->getObjectKind() != OK_Ordinary) {
2996 V = S.DefaultLvalueConversion(V.take());
2997 if (V.isInvalid())
2998 return QualType();
2999 }
John McCallf6a16482010-12-04 03:47:34 +00003000
Chris Lattnercc26ed72007-08-26 05:39:26 +00003001 // These operators return the element type of a complex type.
John Wiegley429bb272011-04-08 18:41:53 +00003002 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
Chris Lattnerdbb36972007-08-24 21:16:53 +00003003 return CT->getElementType();
Mike Stump1eb44332009-09-09 15:08:12 +00003004
Chris Lattnercc26ed72007-08-26 05:39:26 +00003005 // Otherwise they pass through real integer and floating point types here.
John Wiegley429bb272011-04-08 18:41:53 +00003006 if (V.get()->getType()->isArithmeticType())
3007 return V.get()->getType();
Mike Stump1eb44332009-09-09 15:08:12 +00003008
John McCall2cd11fe2010-10-12 02:09:17 +00003009 // Test for placeholders.
John McCallfb8721c2011-04-10 19:13:55 +00003010 ExprResult PR = S.CheckPlaceholderExpr(V.get());
John McCall2cd11fe2010-10-12 02:09:17 +00003011 if (PR.isInvalid()) return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00003012 if (PR.get() != V.get()) {
3013 V = move(PR);
John McCall09431682010-11-18 19:01:18 +00003014 return CheckRealImagOperand(S, V, Loc, isReal);
John McCall2cd11fe2010-10-12 02:09:17 +00003015 }
3016
Chris Lattnercc26ed72007-08-26 05:39:26 +00003017 // Reject anything else.
John Wiegley429bb272011-04-08 18:41:53 +00003018 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
Chris Lattnerba27e2a2009-02-17 08:12:06 +00003019 << (isReal ? "__real" : "__imag");
Chris Lattnercc26ed72007-08-26 05:39:26 +00003020 return QualType();
Chris Lattnerdbb36972007-08-24 21:16:53 +00003021}
3022
3023
Reid Spencer5f016e22007-07-11 17:01:13 +00003024
John McCall60d7b3a2010-08-24 06:29:42 +00003025ExprResult
Sebastian Redl0eb23302009-01-19 00:08:26 +00003026Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
John McCall9ae2f072010-08-23 23:25:46 +00003027 tok::TokenKind Kind, Expr *Input) {
John McCall2de56d12010-08-25 11:45:40 +00003028 UnaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00003029 switch (Kind) {
3030 default: assert(0 && "Unknown unary op!");
John McCall2de56d12010-08-25 11:45:40 +00003031 case tok::plusplus: Opc = UO_PostInc; break;
3032 case tok::minusminus: Opc = UO_PostDec; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00003033 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00003034
John McCall9ae2f072010-08-23 23:25:46 +00003035 return BuildUnaryOp(S, OpLoc, Opc, Input);
Reid Spencer5f016e22007-07-11 17:01:13 +00003036}
3037
John McCall09431682010-11-18 19:01:18 +00003038/// Expressions of certain arbitrary types are forbidden by C from
3039/// having l-value type. These are:
3040/// - 'void', but not qualified void
3041/// - function types
3042///
3043/// The exact rule here is C99 6.3.2.1:
3044/// An lvalue is an expression with an object type or an incomplete
3045/// type other than void.
3046static bool IsCForbiddenLValueType(ASTContext &C, QualType T) {
3047 return ((T->isVoidType() && !T.hasQualifiers()) ||
3048 T->isFunctionType());
3049}
3050
John McCall60d7b3a2010-08-24 06:29:42 +00003051ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003052Sema::ActOnArraySubscriptExpr(Scope *S, Expr *Base, SourceLocation LLoc,
3053 Expr *Idx, SourceLocation RLoc) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00003054 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00003055 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00003056 if (Result.isInvalid()) return ExprError();
3057 Base = Result.take();
Nate Begeman2ef13e52009-08-10 23:49:36 +00003058
John McCall9ae2f072010-08-23 23:25:46 +00003059 Expr *LHSExp = Base, *RHSExp = Idx;
Mike Stump1eb44332009-09-09 15:08:12 +00003060
Douglas Gregor337c6b92008-11-19 17:17:41 +00003061 if (getLangOptions().CPlusPlus &&
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003062 (LHSExp->isTypeDependent() || RHSExp->isTypeDependent())) {
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003063 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
John McCallf89e55a2010-11-18 06:31:45 +00003064 Context.DependentTy,
3065 VK_LValue, OK_Ordinary,
3066 RLoc));
Douglas Gregor3384c9c2009-05-19 00:01:19 +00003067 }
3068
Mike Stump1eb44332009-09-09 15:08:12 +00003069 if (getLangOptions().CPlusPlus &&
Sebastian Redl0eb23302009-01-19 00:08:26 +00003070 (LHSExp->getType()->isRecordType() ||
Eli Friedman03f332a2008-12-15 22:34:21 +00003071 LHSExp->getType()->isEnumeralType() ||
3072 RHSExp->getType()->isRecordType() ||
3073 RHSExp->getType()->isEnumeralType())) {
John McCall9ae2f072010-08-23 23:25:46 +00003074 return CreateOverloadedArraySubscriptExpr(LLoc, RLoc, Base, Idx);
Douglas Gregor337c6b92008-11-19 17:17:41 +00003075 }
3076
John McCall9ae2f072010-08-23 23:25:46 +00003077 return CreateBuiltinArraySubscriptExpr(Base, LLoc, Idx, RLoc);
Sebastian Redlf322ed62009-10-29 20:17:01 +00003078}
3079
3080
John McCall60d7b3a2010-08-24 06:29:42 +00003081ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003082Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
3083 Expr *Idx, SourceLocation RLoc) {
3084 Expr *LHSExp = Base;
3085 Expr *RHSExp = Idx;
Sebastian Redlf322ed62009-10-29 20:17:01 +00003086
Chris Lattner12d9ff62007-07-16 00:14:47 +00003087 // Perform default conversions.
John Wiegley429bb272011-04-08 18:41:53 +00003088 if (!LHSExp->getType()->getAs<VectorType>()) {
3089 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
3090 if (Result.isInvalid())
3091 return ExprError();
3092 LHSExp = Result.take();
3093 }
3094 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
3095 if (Result.isInvalid())
3096 return ExprError();
3097 RHSExp = Result.take();
Sebastian Redl0eb23302009-01-19 00:08:26 +00003098
Chris Lattner12d9ff62007-07-16 00:14:47 +00003099 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
John McCallf89e55a2010-11-18 06:31:45 +00003100 ExprValueKind VK = VK_LValue;
3101 ExprObjectKind OK = OK_Ordinary;
Reid Spencer5f016e22007-07-11 17:01:13 +00003102
Reid Spencer5f016e22007-07-11 17:01:13 +00003103 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattner73d0d4f2007-08-30 17:45:32 +00003104 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stumpeed9cac2009-02-19 03:04:26 +00003105 // in the subscript position. As a result, we need to derive the array base
Reid Spencer5f016e22007-07-11 17:01:13 +00003106 // and index from the expression types.
Chris Lattner12d9ff62007-07-16 00:14:47 +00003107 Expr *BaseExpr, *IndexExpr;
3108 QualType ResultType;
Sebastian Redl28507842009-02-26 14:39:58 +00003109 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
3110 BaseExpr = LHSExp;
3111 IndexExpr = RHSExp;
3112 ResultType = Context.DependentTy;
Ted Kremenek6217b802009-07-29 21:53:49 +00003113 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner12d9ff62007-07-16 00:14:47 +00003114 BaseExpr = LHSExp;
3115 IndexExpr = RHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00003116 ResultType = PTy->getPointeeType();
Ted Kremenek6217b802009-07-29 21:53:49 +00003117 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
Chris Lattner7a2e0472007-07-16 00:23:25 +00003118 // Handle the uncommon case of "123[Ptr]".
Chris Lattner12d9ff62007-07-16 00:14:47 +00003119 BaseExpr = RHSExp;
3120 IndexExpr = LHSExp;
Chris Lattner12d9ff62007-07-16 00:14:47 +00003121 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00003122 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00003123 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003124 BaseExpr = LHSExp;
3125 IndexExpr = RHSExp;
3126 ResultType = PTy->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00003127 } else if (const ObjCObjectPointerType *PTy =
John McCall183700f2009-09-21 23:43:11 +00003128 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff14108da2009-07-10 23:34:53 +00003129 // Handle the uncommon case of "123[Ptr]".
3130 BaseExpr = RHSExp;
3131 IndexExpr = LHSExp;
3132 ResultType = PTy->getPointeeType();
John McCall183700f2009-09-21 23:43:11 +00003133 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattnerc8629632007-07-31 19:29:30 +00003134 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner12d9ff62007-07-16 00:14:47 +00003135 IndexExpr = RHSExp;
John McCallf89e55a2010-11-18 06:31:45 +00003136 VK = LHSExp->getValueKind();
3137 if (VK != VK_RValue)
3138 OK = OK_VectorComponent;
Nate Begeman334a8022009-01-18 00:45:31 +00003139
Chris Lattner12d9ff62007-07-16 00:14:47 +00003140 // FIXME: need to deal with const...
3141 ResultType = VTy->getElementType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003142 } else if (LHSTy->isArrayType()) {
3143 // If we see an array that wasn't promoted by
Douglas Gregora873dfc2010-02-03 00:27:59 +00003144 // DefaultFunctionArrayLvalueConversion, it must be an array that
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003145 // wasn't promoted because of the C90 rule that doesn't
3146 // allow promoting non-lvalue arrays. Warn, then
3147 // force the promotion here.
3148 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
3149 LHSExp->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003150 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
3151 CK_ArrayToPointerDecay).take();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003152 LHSTy = LHSExp->getType();
3153
3154 BaseExpr = LHSExp;
3155 IndexExpr = RHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00003156 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003157 } else if (RHSTy->isArrayType()) {
3158 // Same as previous, except for 123[f().a] case
3159 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
3160 RHSExp->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00003161 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
3162 CK_ArrayToPointerDecay).take();
Eli Friedman7c32f8e2009-04-25 23:46:54 +00003163 RHSTy = RHSExp->getType();
3164
3165 BaseExpr = RHSExp;
3166 IndexExpr = LHSExp;
Ted Kremenek6217b802009-07-29 21:53:49 +00003167 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Reid Spencer5f016e22007-07-11 17:01:13 +00003168 } else {
Chris Lattner338395d2009-04-25 22:50:55 +00003169 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
3170 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redl0eb23302009-01-19 00:08:26 +00003171 }
Reid Spencer5f016e22007-07-11 17:01:13 +00003172 // C99 6.5.2.1p1
Douglas Gregorf6094622010-07-23 15:58:24 +00003173 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner338395d2009-04-25 22:50:55 +00003174 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
3175 << IndexExpr->getSourceRange());
Reid Spencer5f016e22007-07-11 17:01:13 +00003176
Daniel Dunbar7e88a602009-09-17 06:31:17 +00003177 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinig0f9a5b52009-09-14 20:14:57 +00003178 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
3179 && !IndexExpr->isTypeDependent())
Sam Weinig76e2b712009-09-14 01:58:58 +00003180 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
3181
Douglas Gregore7450f52009-03-24 19:52:54 +00003182 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump1eb44332009-09-09 15:08:12 +00003183 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
3184 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregore7450f52009-03-24 19:52:54 +00003185 // incomplete types are not object types.
3186 if (ResultType->isFunctionType()) {
3187 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
3188 << ResultType << BaseExpr->getSourceRange();
3189 return ExprError();
3190 }
Mike Stump1eb44332009-09-09 15:08:12 +00003191
Abramo Bagnara46358452010-09-13 06:50:07 +00003192 if (ResultType->isVoidType() && !getLangOptions().CPlusPlus) {
3193 // GNU extension: subscripting on pointer to void
3194 Diag(LLoc, diag::ext_gnu_void_ptr)
3195 << BaseExpr->getSourceRange();
John McCall09431682010-11-18 19:01:18 +00003196
3197 // C forbids expressions of unqualified void type from being l-values.
3198 // See IsCForbiddenLValueType.
3199 if (!ResultType.hasQualifiers()) VK = VK_RValue;
Abramo Bagnara46358452010-09-13 06:50:07 +00003200 } else if (!ResultType->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00003201 RequireCompleteType(LLoc, ResultType,
Anders Carlssonb7906612009-08-26 23:45:07 +00003202 PDiag(diag::err_subscript_incomplete_type)
3203 << BaseExpr->getSourceRange()))
Douglas Gregore7450f52009-03-24 19:52:54 +00003204 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00003205
Chris Lattner1efaa952009-04-24 00:30:45 +00003206 // Diagnose bad cases where we step over interface counts.
John McCallc12c5bb2010-05-15 11:32:37 +00003207 if (ResultType->isObjCObjectType() && LangOpts.ObjCNonFragileABI) {
Chris Lattner1efaa952009-04-24 00:30:45 +00003208 Diag(LLoc, diag::err_subscript_nonfragile_interface)
3209 << ResultType << BaseExpr->getSourceRange();
3210 return ExprError();
3211 }
Mike Stump1eb44332009-09-09 15:08:12 +00003212
John McCall09431682010-11-18 19:01:18 +00003213 assert(VK == VK_RValue || LangOpts.CPlusPlus ||
3214 !IsCForbiddenLValueType(Context, ResultType));
3215
Mike Stumpeed9cac2009-02-19 03:04:26 +00003216 return Owned(new (Context) ArraySubscriptExpr(LHSExp, RHSExp,
John McCallf89e55a2010-11-18 06:31:45 +00003217 ResultType, VK, OK, RLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00003218}
3219
John McCall09431682010-11-18 19:01:18 +00003220/// Check an ext-vector component access expression.
3221///
3222/// VK should be set in advance to the value kind of the base
3223/// expression.
3224static QualType
3225CheckExtVectorComponent(Sema &S, QualType baseType, ExprValueKind &VK,
3226 SourceLocation OpLoc, const IdentifierInfo *CompName,
Anders Carlsson8f28f992009-08-26 18:25:21 +00003227 SourceLocation CompLoc) {
Daniel Dunbar2ad32892009-10-18 02:09:38 +00003228 // FIXME: Share logic with ExtVectorElementExpr::containsDuplicateElements,
3229 // see FIXME there.
3230 //
3231 // FIXME: This logic can be greatly simplified by splitting it along
3232 // halving/not halving and reworking the component checking.
John McCall183700f2009-09-21 23:43:11 +00003233 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>();
Nate Begeman8a997642008-05-09 06:41:27 +00003234
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003235 // The vector accessor can't exceed the number of elements.
Daniel Dunbare013d682009-10-18 20:26:12 +00003236 const char *compStr = CompName->getNameStart();
Nate Begeman353417a2009-01-18 01:47:54 +00003237
Mike Stumpeed9cac2009-02-19 03:04:26 +00003238 // This flag determines whether or not the component is one of the four
Nate Begeman353417a2009-01-18 01:47:54 +00003239 // special names that indicate a subset of exactly half the elements are
3240 // to be selected.
3241 bool HalvingSwizzle = false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00003242
Nate Begeman353417a2009-01-18 01:47:54 +00003243 // This flag determines whether or not CompName has an 's' char prefix,
3244 // indicating that it is a string of hex values to be used as vector indices.
Nate Begeman131f4652009-06-25 21:06:09 +00003245 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
Nate Begeman8a997642008-05-09 06:41:27 +00003246
John McCall09431682010-11-18 19:01:18 +00003247 bool HasRepeated = false;
3248 bool HasIndex[16] = {};
3249
3250 int Idx;
3251
Nate Begeman8a997642008-05-09 06:41:27 +00003252 // Check that we've found one of the special components, or that the component
3253 // names must come from the same set.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003254 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
Nate Begeman353417a2009-01-18 01:47:54 +00003255 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
3256 HalvingSwizzle = true;
John McCall09431682010-11-18 19:01:18 +00003257 } else if (!HexSwizzle &&
3258 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
3259 do {
3260 if (HasIndex[Idx]) HasRepeated = true;
3261 HasIndex[Idx] = true;
Chris Lattner88dca042007-08-02 22:33:49 +00003262 compStr++;
John McCall09431682010-11-18 19:01:18 +00003263 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
3264 } else {
3265 if (HexSwizzle) compStr++;
3266 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
3267 if (HasIndex[Idx]) HasRepeated = true;
3268 HasIndex[Idx] = true;
Chris Lattner88dca042007-08-02 22:33:49 +00003269 compStr++;
John McCall09431682010-11-18 19:01:18 +00003270 }
Chris Lattner88dca042007-08-02 22:33:49 +00003271 }
Nate Begeman353417a2009-01-18 01:47:54 +00003272
Mike Stumpeed9cac2009-02-19 03:04:26 +00003273 if (!HalvingSwizzle && *compStr) {
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003274 // We didn't get to the end of the string. This means the component names
3275 // didn't come from the same set *or* we encountered an illegal name.
John McCall09431682010-11-18 19:01:18 +00003276 S.Diag(OpLoc, diag::err_ext_vector_component_name_illegal)
Benjamin Kramer476d8b82010-08-11 14:47:12 +00003277 << llvm::StringRef(compStr, 1) << SourceRange(CompLoc);
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003278 return QualType();
3279 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00003280
Nate Begeman353417a2009-01-18 01:47:54 +00003281 // Ensure no component accessor exceeds the width of the vector type it
3282 // operates on.
3283 if (!HalvingSwizzle) {
Daniel Dunbare013d682009-10-18 20:26:12 +00003284 compStr = CompName->getNameStart();
Nate Begeman353417a2009-01-18 01:47:54 +00003285
3286 if (HexSwizzle)
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003287 compStr++;
Nate Begeman353417a2009-01-18 01:47:54 +00003288
3289 while (*compStr) {
3290 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
John McCall09431682010-11-18 19:01:18 +00003291 S.Diag(OpLoc, diag::err_ext_vector_component_exceeds_length)
Nate Begeman353417a2009-01-18 01:47:54 +00003292 << baseType << SourceRange(CompLoc);
3293 return QualType();
3294 }
3295 }
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003296 }
Nate Begeman8a997642008-05-09 06:41:27 +00003297
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003298 // The component accessor looks fine - now we need to compute the actual type.
Mike Stumpeed9cac2009-02-19 03:04:26 +00003299 // The vector type is implied by the component accessor. For example,
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003300 // vec4.b is a float, vec4.xy is a vec2, vec4.rgb is a vec3, etc.
Nate Begeman353417a2009-01-18 01:47:54 +00003301 // vec4.s0 is a float, vec4.s23 is a vec3, etc.
Nate Begeman8a997642008-05-09 06:41:27 +00003302 // vec4.hi, vec4.lo, vec4.e, and vec4.o all return vec2.
Nate Begeman0479a0b2009-12-15 18:13:04 +00003303 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
Anders Carlsson8f28f992009-08-26 18:25:21 +00003304 : CompName->getLength();
Nate Begeman353417a2009-01-18 01:47:54 +00003305 if (HexSwizzle)
3306 CompSize--;
3307
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003308 if (CompSize == 1)
3309 return vecType->getElementType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00003310
John McCall09431682010-11-18 19:01:18 +00003311 if (HasRepeated) VK = VK_RValue;
3312
3313 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
Mike Stumpeed9cac2009-02-19 03:04:26 +00003314 // Now look up the TypeDefDecl from the vector type. Without this,
Nate Begeman213541a2008-04-18 23:10:10 +00003315 // diagostics look bad. We want extended vector types to appear built-in.
John McCall09431682010-11-18 19:01:18 +00003316 for (unsigned i = 0, E = S.ExtVectorDecls.size(); i != E; ++i) {
3317 if (S.ExtVectorDecls[i]->getUnderlyingType() == VT)
3318 return S.Context.getTypedefType(S.ExtVectorDecls[i]);
Steve Naroffbea0b342007-07-29 16:33:31 +00003319 }
3320 return VT; // should never get here (a typedef type should always be found).
Steve Naroffe1b31fe2007-07-27 22:15:19 +00003321}
3322
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003323static Decl *FindGetterSetterNameDeclFromProtocolList(const ObjCProtocolDecl*PDecl,
Anders Carlsson8f28f992009-08-26 18:25:21 +00003324 IdentifierInfo *Member,
Douglas Gregor6ab35242009-04-09 21:40:53 +00003325 const Selector &Sel,
3326 ASTContext &Context) {
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003327 if (Member)
3328 if (ObjCPropertyDecl *PD = PDecl->FindPropertyDeclaration(Member))
3329 return PD;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003330 if (ObjCMethodDecl *OMD = PDecl->getInstanceMethod(Sel))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003331 return OMD;
Mike Stump1eb44332009-09-09 15:08:12 +00003332
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003333 for (ObjCProtocolDecl::protocol_iterator I = PDecl->protocol_begin(),
3334 E = PDecl->protocol_end(); I != E; ++I) {
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003335 if (Decl *D = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
3336 Context))
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003337 return D;
3338 }
3339 return 0;
3340}
3341
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003342static Decl *FindGetterSetterNameDecl(const ObjCObjectPointerType *QIdTy,
3343 IdentifierInfo *Member,
3344 const Selector &Sel,
3345 ASTContext &Context) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003346 // Check protocols on qualified interfaces.
3347 Decl *GDecl = 0;
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003348 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003349 E = QIdTy->qual_end(); I != E; ++I) {
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003350 if (Member)
3351 if (ObjCPropertyDecl *PD = (*I)->FindPropertyDeclaration(Member)) {
3352 GDecl = PD;
3353 break;
3354 }
3355 // Also must look for a getter or setter name which uses property syntax.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00003356 if (ObjCMethodDecl *OMD = (*I)->getInstanceMethod(Sel)) {
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003357 GDecl = OMD;
3358 break;
3359 }
3360 }
3361 if (!GDecl) {
Steve Naroffd1b3c2d2009-06-17 22:40:22 +00003362 for (ObjCObjectPointerType::qual_iterator I = QIdTy->qual_begin(),
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003363 E = QIdTy->qual_end(); I != E; ++I) {
3364 // Search in the protocol-qualifier list of current protocol.
Fariborz Jahanianf2ad2c92010-10-11 21:29:12 +00003365 GDecl = FindGetterSetterNameDeclFromProtocolList(*I, Member, Sel,
3366 Context);
Fariborz Jahanian2ce1be02009-03-19 18:15:34 +00003367 if (GDecl)
3368 return GDecl;
3369 }
3370 }
3371 return GDecl;
3372}
Chris Lattner76a642f2009-02-15 22:43:40 +00003373
John McCall60d7b3a2010-08-24 06:29:42 +00003374ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003375Sema::ActOnDependentMemberExpr(Expr *BaseExpr, QualType BaseType,
John McCallaa81e162009-12-01 22:10:20 +00003376 bool IsArrow, SourceLocation OpLoc,
John McCall129e2df2009-11-30 22:42:35 +00003377 const CXXScopeSpec &SS,
3378 NamedDecl *FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +00003379 const DeclarationNameInfo &NameInfo,
John McCall129e2df2009-11-30 22:42:35 +00003380 const TemplateArgumentListInfo *TemplateArgs) {
John McCall129e2df2009-11-30 22:42:35 +00003381 // Even in dependent contexts, try to diagnose base expressions with
3382 // obviously wrong types, e.g.:
3383 //
3384 // T* t;
3385 // t.f;
3386 //
3387 // In Obj-C++, however, the above expression is valid, since it could be
3388 // accessing the 'f' property if T is an Obj-C interface. The extra check
3389 // allows this, while still reporting an error if T is a struct pointer.
3390 if (!IsArrow) {
John McCallaa81e162009-12-01 22:10:20 +00003391 const PointerType *PT = BaseType->getAs<PointerType>();
John McCall129e2df2009-11-30 22:42:35 +00003392 if (PT && (!getLangOptions().ObjC1 ||
3393 PT->getPointeeType()->isRecordType())) {
John McCallaa81e162009-12-01 22:10:20 +00003394 assert(BaseExpr && "cannot happen with implicit member accesses");
Abramo Bagnara25777432010-08-11 22:01:17 +00003395 Diag(NameInfo.getLoc(), diag::err_typecheck_member_reference_struct_union)
John McCallaa81e162009-12-01 22:10:20 +00003396 << BaseType << BaseExpr->getSourceRange();
John McCall129e2df2009-11-30 22:42:35 +00003397 return ExprError();
3398 }
3399 }
3400
Abramo Bagnara25777432010-08-11 22:01:17 +00003401 assert(BaseType->isDependentType() ||
3402 NameInfo.getName().isDependentName() ||
Douglas Gregor01e56ae2010-04-12 20:54:26 +00003403 isDependentScopeSpecifier(SS));
John McCall129e2df2009-11-30 22:42:35 +00003404
3405 // Get the type being accessed in BaseType. If this is an arrow, the BaseExpr
3406 // must have pointer type, and the accessed type is the pointee.
John McCallaa81e162009-12-01 22:10:20 +00003407 return Owned(CXXDependentScopeMemberExpr::Create(Context, BaseExpr, BaseType,
John McCall129e2df2009-11-30 22:42:35 +00003408 IsArrow, OpLoc,
Douglas Gregor7c3179c2011-02-28 18:50:33 +00003409 SS.getWithLocInContext(Context),
John McCall129e2df2009-11-30 22:42:35 +00003410 FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +00003411 NameInfo, TemplateArgs));
John McCall129e2df2009-11-30 22:42:35 +00003412}
3413
3414/// We know that the given qualified member reference points only to
3415/// declarations which do not belong to the static type of the base
3416/// expression. Diagnose the problem.
3417static void DiagnoseQualifiedMemberReference(Sema &SemaRef,
3418 Expr *BaseExpr,
3419 QualType BaseType,
John McCall2f841ba2009-12-02 03:53:29 +00003420 const CXXScopeSpec &SS,
John McCall5808ce42011-02-03 08:15:49 +00003421 NamedDecl *rep,
3422 const DeclarationNameInfo &nameInfo) {
John McCall2f841ba2009-12-02 03:53:29 +00003423 // If this is an implicit member access, use a different set of
3424 // diagnostics.
3425 if (!BaseExpr)
John McCall5808ce42011-02-03 08:15:49 +00003426 return DiagnoseInstanceReference(SemaRef, SS, rep, nameInfo);
John McCall129e2df2009-11-30 22:42:35 +00003427
John McCall5808ce42011-02-03 08:15:49 +00003428 SemaRef.Diag(nameInfo.getLoc(), diag::err_qualified_member_of_unrelated)
3429 << SS.getRange() << rep << BaseType;
John McCall129e2df2009-11-30 22:42:35 +00003430}
3431
3432// Check whether the declarations we found through a nested-name
3433// specifier in a member expression are actually members of the base
3434// type. The restriction here is:
3435//
3436// C++ [expr.ref]p2:
3437// ... In these cases, the id-expression shall name a
3438// member of the class or of one of its base classes.
3439//
3440// So it's perfectly legitimate for the nested-name specifier to name
3441// an unrelated class, and for us to find an overload set including
3442// decls from classes which are not superclasses, as long as the decl
3443// we actually pick through overload resolution is from a superclass.
3444bool Sema::CheckQualifiedMemberReference(Expr *BaseExpr,
3445 QualType BaseType,
John McCall2f841ba2009-12-02 03:53:29 +00003446 const CXXScopeSpec &SS,
John McCall129e2df2009-11-30 22:42:35 +00003447 const LookupResult &R) {
John McCallaa81e162009-12-01 22:10:20 +00003448 const RecordType *BaseRT = BaseType->getAs<RecordType>();
3449 if (!BaseRT) {
3450 // We can't check this yet because the base type is still
3451 // dependent.
3452 assert(BaseType->isDependentType());
3453 return false;
3454 }
3455 CXXRecordDecl *BaseRecord = cast<CXXRecordDecl>(BaseRT->getDecl());
John McCall129e2df2009-11-30 22:42:35 +00003456
3457 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
John McCallaa81e162009-12-01 22:10:20 +00003458 // If this is an implicit member reference and we find a
3459 // non-instance member, it's not an error.
John McCall161755a2010-04-06 21:38:20 +00003460 if (!BaseExpr && !(*I)->isCXXInstanceMember())
John McCallaa81e162009-12-01 22:10:20 +00003461 return false;
John McCall129e2df2009-11-30 22:42:35 +00003462
John McCallaa81e162009-12-01 22:10:20 +00003463 // Note that we use the DC of the decl, not the underlying decl.
Eli Friedman02463762010-07-27 20:51:02 +00003464 DeclContext *DC = (*I)->getDeclContext();
3465 while (DC->isTransparentContext())
3466 DC = DC->getParent();
John McCallaa81e162009-12-01 22:10:20 +00003467
Douglas Gregor9d4bb942010-07-28 22:27:52 +00003468 if (!DC->isRecord())
3469 continue;
3470
John McCallaa81e162009-12-01 22:10:20 +00003471 llvm::SmallPtrSet<CXXRecordDecl*,4> MemberRecord;
Eli Friedman02463762010-07-27 20:51:02 +00003472 MemberRecord.insert(cast<CXXRecordDecl>(DC)->getCanonicalDecl());
John McCallaa81e162009-12-01 22:10:20 +00003473
3474 if (!IsProvablyNotDerivedFrom(*this, BaseRecord, MemberRecord))
3475 return false;
3476 }
3477
John McCall5808ce42011-02-03 08:15:49 +00003478 DiagnoseQualifiedMemberReference(*this, BaseExpr, BaseType, SS,
3479 R.getRepresentativeDecl(),
3480 R.getLookupNameInfo());
John McCallaa81e162009-12-01 22:10:20 +00003481 return true;
3482}
3483
3484static bool
3485LookupMemberExprInRecord(Sema &SemaRef, LookupResult &R,
3486 SourceRange BaseRange, const RecordType *RTy,
John McCallad00b772010-06-16 08:42:20 +00003487 SourceLocation OpLoc, CXXScopeSpec &SS,
3488 bool HasTemplateArgs) {
John McCallaa81e162009-12-01 22:10:20 +00003489 RecordDecl *RDecl = RTy->getDecl();
3490 if (SemaRef.RequireCompleteType(OpLoc, QualType(RTy, 0),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00003491 SemaRef.PDiag(diag::err_typecheck_incomplete_tag)
John McCallaa81e162009-12-01 22:10:20 +00003492 << BaseRange))
3493 return true;
3494
John McCallad00b772010-06-16 08:42:20 +00003495 if (HasTemplateArgs) {
3496 // LookupTemplateName doesn't expect these both to exist simultaneously.
3497 QualType ObjectType = SS.isSet() ? QualType() : QualType(RTy, 0);
3498
3499 bool MOUS;
3500 SemaRef.LookupTemplateName(R, 0, SS, ObjectType, false, MOUS);
3501 return false;
3502 }
3503
John McCallaa81e162009-12-01 22:10:20 +00003504 DeclContext *DC = RDecl;
3505 if (SS.isSet()) {
3506 // If the member name was a qualified-id, look into the
3507 // nested-name-specifier.
3508 DC = SemaRef.computeDeclContext(SS, false);
3509
John McCall77bb1aa2010-05-01 00:40:08 +00003510 if (SemaRef.RequireCompleteDeclContext(SS, DC)) {
John McCall2f841ba2009-12-02 03:53:29 +00003511 SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag)
3512 << SS.getRange() << DC;
3513 return true;
3514 }
3515
John McCallaa81e162009-12-01 22:10:20 +00003516 assert(DC && "Cannot handle non-computable dependent contexts in lookup");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003517
John McCallaa81e162009-12-01 22:10:20 +00003518 if (!isa<TypeDecl>(DC)) {
3519 SemaRef.Diag(R.getNameLoc(), diag::err_qualified_member_nonclass)
3520 << DC << SS.getRange();
3521 return true;
John McCall129e2df2009-11-30 22:42:35 +00003522 }
3523 }
3524
John McCallaa81e162009-12-01 22:10:20 +00003525 // The record definition is complete, now look up the member.
3526 SemaRef.LookupQualifiedName(R, DC);
John McCall129e2df2009-11-30 22:42:35 +00003527
Douglas Gregor2dcc0112009-12-31 07:42:17 +00003528 if (!R.empty())
3529 return false;
3530
3531 // We didn't find anything with the given name, so try to correct
3532 // for typos.
3533 DeclarationName Name = R.getLookupName();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00003534 if (SemaRef.CorrectTypo(R, 0, &SS, DC, false, Sema::CTC_MemberLookup) &&
Douglas Gregoraaf87162010-04-14 20:04:41 +00003535 !R.empty() &&
Douglas Gregor2dcc0112009-12-31 07:42:17 +00003536 (isa<ValueDecl>(*R.begin()) || isa<FunctionTemplateDecl>(*R.begin()))) {
3537 SemaRef.Diag(R.getNameLoc(), diag::err_no_member_suggest)
3538 << Name << DC << R.getLookupName() << SS.getRange()
Douglas Gregor849b2432010-03-31 17:46:05 +00003539 << FixItHint::CreateReplacement(R.getNameLoc(),
3540 R.getLookupName().getAsString());
Douglas Gregor67dd1d42010-01-07 00:17:44 +00003541 if (NamedDecl *ND = R.getAsSingle<NamedDecl>())
3542 SemaRef.Diag(ND->getLocation(), diag::note_previous_decl)
3543 << ND->getDeclName();
Douglas Gregor2dcc0112009-12-31 07:42:17 +00003544 return false;
3545 } else {
3546 R.clear();
Douglas Gregor12eb5d62010-06-29 19:27:42 +00003547 R.setLookupName(Name);
Douglas Gregor2dcc0112009-12-31 07:42:17 +00003548 }
3549
John McCall129e2df2009-11-30 22:42:35 +00003550 return false;
3551}
3552
John McCall60d7b3a2010-08-24 06:29:42 +00003553ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003554Sema::BuildMemberReferenceExpr(Expr *Base, QualType BaseType,
John McCall129e2df2009-11-30 22:42:35 +00003555 SourceLocation OpLoc, bool IsArrow,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003556 CXXScopeSpec &SS,
John McCall129e2df2009-11-30 22:42:35 +00003557 NamedDecl *FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +00003558 const DeclarationNameInfo &NameInfo,
John McCall129e2df2009-11-30 22:42:35 +00003559 const TemplateArgumentListInfo *TemplateArgs) {
John McCall2f841ba2009-12-02 03:53:29 +00003560 if (BaseType->isDependentType() ||
3561 (SS.isSet() && isDependentScopeSpecifier(SS)))
John McCall9ae2f072010-08-23 23:25:46 +00003562 return ActOnDependentMemberExpr(Base, BaseType,
John McCall129e2df2009-11-30 22:42:35 +00003563 IsArrow, OpLoc,
3564 SS, FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +00003565 NameInfo, TemplateArgs);
John McCall129e2df2009-11-30 22:42:35 +00003566
Abramo Bagnara25777432010-08-11 22:01:17 +00003567 LookupResult R(*this, NameInfo, LookupMemberName);
John McCall129e2df2009-11-30 22:42:35 +00003568
John McCallaa81e162009-12-01 22:10:20 +00003569 // Implicit member accesses.
3570 if (!Base) {
3571 QualType RecordTy = BaseType;
3572 if (IsArrow) RecordTy = RecordTy->getAs<PointerType>()->getPointeeType();
3573 if (LookupMemberExprInRecord(*this, R, SourceRange(),
3574 RecordTy->getAs<RecordType>(),
John McCallad00b772010-06-16 08:42:20 +00003575 OpLoc, SS, TemplateArgs != 0))
John McCallaa81e162009-12-01 22:10:20 +00003576 return ExprError();
3577
3578 // Explicit member accesses.
3579 } else {
John Wiegley429bb272011-04-08 18:41:53 +00003580 ExprResult BaseResult = Owned(Base);
John McCall60d7b3a2010-08-24 06:29:42 +00003581 ExprResult Result =
John Wiegley429bb272011-04-08 18:41:53 +00003582 LookupMemberExpr(R, BaseResult, IsArrow, OpLoc,
John McCalld226f652010-08-21 09:40:31 +00003583 SS, /*ObjCImpDecl*/ 0, TemplateArgs != 0);
John McCallaa81e162009-12-01 22:10:20 +00003584
John Wiegley429bb272011-04-08 18:41:53 +00003585 if (BaseResult.isInvalid())
3586 return ExprError();
3587 Base = BaseResult.take();
3588
John McCallaa81e162009-12-01 22:10:20 +00003589 if (Result.isInvalid()) {
3590 Owned(Base);
3591 return ExprError();
3592 }
3593
3594 if (Result.get())
3595 return move(Result);
Sebastian Redlf3e63372010-05-07 09:25:11 +00003596
3597 // LookupMemberExpr can modify Base, and thus change BaseType
3598 BaseType = Base->getType();
John McCall129e2df2009-11-30 22:42:35 +00003599 }
3600
John McCall9ae2f072010-08-23 23:25:46 +00003601 return BuildMemberReferenceExpr(Base, BaseType,
John McCallc2233c52010-01-15 08:34:02 +00003602 OpLoc, IsArrow, SS, FirstQualifierInScope,
3603 R, TemplateArgs);
John McCall129e2df2009-11-30 22:42:35 +00003604}
3605
John McCall60d7b3a2010-08-24 06:29:42 +00003606ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00003607Sema::BuildMemberReferenceExpr(Expr *BaseExpr, QualType BaseExprType,
John McCallaa81e162009-12-01 22:10:20 +00003608 SourceLocation OpLoc, bool IsArrow,
3609 const CXXScopeSpec &SS,
John McCallc2233c52010-01-15 08:34:02 +00003610 NamedDecl *FirstQualifierInScope,
John McCall129e2df2009-11-30 22:42:35 +00003611 LookupResult &R,
Douglas Gregor06a9f362010-05-01 20:49:11 +00003612 const TemplateArgumentListInfo *TemplateArgs,
3613 bool SuppressQualifierCheck) {
John McCallaa81e162009-12-01 22:10:20 +00003614 QualType BaseType = BaseExprType;
John McCall129e2df2009-11-30 22:42:35 +00003615 if (IsArrow) {
3616 assert(BaseType->isPointerType());
3617 BaseType = BaseType->getAs<PointerType>()->getPointeeType();
3618 }
John McCall161755a2010-04-06 21:38:20 +00003619 R.setBaseObjectType(BaseType);
John McCall129e2df2009-11-30 22:42:35 +00003620
Abramo Bagnara25777432010-08-11 22:01:17 +00003621 const DeclarationNameInfo &MemberNameInfo = R.getLookupNameInfo();
3622 DeclarationName MemberName = MemberNameInfo.getName();
3623 SourceLocation MemberLoc = MemberNameInfo.getLoc();
John McCall129e2df2009-11-30 22:42:35 +00003624
3625 if (R.isAmbiguous())
Douglas Gregorfe85ced2009-08-06 03:17:00 +00003626 return ExprError();
3627
John McCall129e2df2009-11-30 22:42:35 +00003628 if (R.empty()) {
3629 // Rederive where we looked up.
3630 DeclContext *DC = (SS.isSet()
3631 ? computeDeclContext(SS, false)
3632 : BaseType->getAs<RecordType>()->getDecl());
Nate Begeman2ef13e52009-08-10 23:49:36 +00003633
John McCall129e2df2009-11-30 22:42:35 +00003634 Diag(R.getNameLoc(), diag::err_no_member)
John McCallaa81e162009-12-01 22:10:20 +00003635 << MemberName << DC
3636 << (BaseExpr ? BaseExpr->getSourceRange() : SourceRange());
John McCall129e2df2009-11-30 22:42:35 +00003637 return ExprError();
3638 }
3639
John McCallc2233c52010-01-15 08:34:02 +00003640 // Diagnose lookups that find only declarations from a non-base
3641 // type. This is possible for either qualified lookups (which may
3642 // have been qualified with an unrelated type) or implicit member
3643 // expressions (which were found with unqualified lookup and thus
3644 // may have come from an enclosing scope). Note that it's okay for
3645 // lookup to find declarations from a non-base type as long as those
3646 // aren't the ones picked by overload resolution.
3647 if ((SS.isSet() || !BaseExpr ||
3648 (isa<CXXThisExpr>(BaseExpr) &&
3649 cast<CXXThisExpr>(BaseExpr)->isImplicit())) &&
Douglas Gregor06a9f362010-05-01 20:49:11 +00003650 !SuppressQualifierCheck &&
John McCallc2233c52010-01-15 08:34:02 +00003651 CheckQualifiedMemberReference(BaseExpr, BaseType, SS, R))
John McCall129e2df2009-11-30 22:42:35 +00003652 return ExprError();
3653
3654 // Construct an unresolved result if we in fact got an unresolved
3655 // result.
3656 if (R.isOverloadedResult() || R.isUnresolvableResult()) {
John McCallc373d482010-01-27 01:50:18 +00003657 // Suppress any lookup-related diagnostics; we'll do these when we
3658 // pick a member.
3659 R.suppressDiagnostics();
3660
John McCall129e2df2009-11-30 22:42:35 +00003661 UnresolvedMemberExpr *MemExpr
Douglas Gregorbebbe0d2010-12-15 01:34:56 +00003662 = UnresolvedMemberExpr::Create(Context, R.isUnresolvableResult(),
John McCallaa81e162009-12-01 22:10:20 +00003663 BaseExpr, BaseExprType,
3664 IsArrow, OpLoc,
Douglas Gregor4c9be892011-02-28 20:01:57 +00003665 SS.getWithLocInContext(Context),
Abramo Bagnara25777432010-08-11 22:01:17 +00003666 MemberNameInfo,
Douglas Gregor5a84dec2010-05-23 18:57:34 +00003667 TemplateArgs, R.begin(), R.end());
John McCall129e2df2009-11-30 22:42:35 +00003668
3669 return Owned(MemExpr);
3670 }
3671
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00003672 assert(R.isSingleResult());
John McCall161755a2010-04-06 21:38:20 +00003673 DeclAccessPair FoundDecl = R.begin().getPair();
John McCall129e2df2009-11-30 22:42:35 +00003674 NamedDecl *MemberDecl = R.getFoundDecl();
3675
3676 // FIXME: diagnose the presence of template arguments now.
3677
3678 // If the decl being referenced had an error, return an error for this
3679 // sub-expr without emitting another error, in order to avoid cascading
3680 // error cases.
3681 if (MemberDecl->isInvalidDecl())
3682 return ExprError();
3683
John McCallaa81e162009-12-01 22:10:20 +00003684 // Handle the implicit-member-access case.
3685 if (!BaseExpr) {
3686 // If this is not an instance member, convert to a non-member access.
John McCall161755a2010-04-06 21:38:20 +00003687 if (!MemberDecl->isCXXInstanceMember())
Abramo Bagnara25777432010-08-11 22:01:17 +00003688 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), MemberDecl);
John McCallaa81e162009-12-01 22:10:20 +00003689
Douglas Gregor828a1972010-01-07 23:12:05 +00003690 SourceLocation Loc = R.getNameLoc();
3691 if (SS.getRange().isValid())
3692 Loc = SS.getRange().getBegin();
3693 BaseExpr = new (Context) CXXThisExpr(Loc, BaseExprType,/*isImplicit=*/true);
John McCallaa81e162009-12-01 22:10:20 +00003694 }
3695
John McCall129e2df2009-11-30 22:42:35 +00003696 bool ShouldCheckUse = true;
3697 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MemberDecl)) {
3698 // Don't diagnose the use of a virtual member function unless it's
3699 // explicitly qualified.
3700 if (MD->isVirtual() && !SS.isSet())
3701 ShouldCheckUse = false;
3702 }
3703
3704 // Check the use of this member.
3705 if (ShouldCheckUse && DiagnoseUseOfDecl(MemberDecl, MemberLoc)) {
3706 Owned(BaseExpr);
3707 return ExprError();
3708 }
3709
John McCallf6a16482010-12-04 03:47:34 +00003710 // Perform a property load on the base regardless of whether we
3711 // actually need it for the declaration.
John Wiegley429bb272011-04-08 18:41:53 +00003712 if (BaseExpr->getObjectKind() == OK_ObjCProperty) {
3713 ExprResult Result = ConvertPropertyForRValue(BaseExpr);
3714 if (Result.isInvalid())
3715 return ExprError();
3716 BaseExpr = Result.take();
3717 }
John McCallf6a16482010-12-04 03:47:34 +00003718
John McCalldfa1edb2010-11-23 20:48:44 +00003719 if (FieldDecl *FD = dyn_cast<FieldDecl>(MemberDecl))
3720 return BuildFieldReferenceExpr(*this, BaseExpr, IsArrow,
3721 SS, FD, FoundDecl, MemberNameInfo);
John McCall129e2df2009-11-30 22:42:35 +00003722
Francois Pichet87c2e122010-11-21 06:08:52 +00003723 if (IndirectFieldDecl *FD = dyn_cast<IndirectFieldDecl>(MemberDecl))
3724 // We may have found a field within an anonymous union or struct
3725 // (C++ [class.union]).
John McCall5808ce42011-02-03 08:15:49 +00003726 return BuildAnonymousStructUnionMemberReference(SS, MemberLoc, FD,
John McCallf6a16482010-12-04 03:47:34 +00003727 BaseExpr, OpLoc);
Francois Pichet87c2e122010-11-21 06:08:52 +00003728
John McCall129e2df2009-11-30 22:42:35 +00003729 if (VarDecl *Var = dyn_cast<VarDecl>(MemberDecl)) {
3730 MarkDeclarationReferenced(MemberLoc, Var);
3731 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00003732 Var, FoundDecl, MemberNameInfo,
John McCallf89e55a2010-11-18 06:31:45 +00003733 Var->getType().getNonReferenceType(),
John McCall09431682010-11-18 19:01:18 +00003734 VK_LValue, OK_Ordinary));
John McCall129e2df2009-11-30 22:42:35 +00003735 }
3736
John McCallf89e55a2010-11-18 06:31:45 +00003737 if (CXXMethodDecl *MemberFn = dyn_cast<CXXMethodDecl>(MemberDecl)) {
John McCall129e2df2009-11-30 22:42:35 +00003738 MarkDeclarationReferenced(MemberLoc, MemberDecl);
3739 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00003740 MemberFn, FoundDecl, MemberNameInfo,
John McCallf89e55a2010-11-18 06:31:45 +00003741 MemberFn->getType(),
3742 MemberFn->isInstance() ? VK_RValue : VK_LValue,
3743 OK_Ordinary));
John McCall129e2df2009-11-30 22:42:35 +00003744 }
John McCallf89e55a2010-11-18 06:31:45 +00003745 assert(!isa<FunctionDecl>(MemberDecl) && "member function not C++ method?");
John McCall129e2df2009-11-30 22:42:35 +00003746
3747 if (EnumConstantDecl *Enum = dyn_cast<EnumConstantDecl>(MemberDecl)) {
3748 MarkDeclarationReferenced(MemberLoc, MemberDecl);
3749 return Owned(BuildMemberExpr(Context, BaseExpr, IsArrow, SS,
Abramo Bagnara25777432010-08-11 22:01:17 +00003750 Enum, FoundDecl, MemberNameInfo,
John McCallf89e55a2010-11-18 06:31:45 +00003751 Enum->getType(), VK_RValue, OK_Ordinary));
John McCall129e2df2009-11-30 22:42:35 +00003752 }
3753
3754 Owned(BaseExpr);
3755
Douglas Gregorb0fd4832010-04-25 20:55:08 +00003756 // We found something that we didn't expect. Complain.
John McCall129e2df2009-11-30 22:42:35 +00003757 if (isa<TypeDecl>(MemberDecl))
Abramo Bagnara25777432010-08-11 22:01:17 +00003758 Diag(MemberLoc, diag::err_typecheck_member_reference_type)
Douglas Gregorb0fd4832010-04-25 20:55:08 +00003759 << MemberName << BaseType << int(IsArrow);
3760 else
3761 Diag(MemberLoc, diag::err_typecheck_member_reference_unknown)
3762 << MemberName << BaseType << int(IsArrow);
John McCall129e2df2009-11-30 22:42:35 +00003763
Douglas Gregorb0fd4832010-04-25 20:55:08 +00003764 Diag(MemberDecl->getLocation(), diag::note_member_declared_here)
3765 << MemberName;
Douglas Gregor2b147f02010-04-25 21:15:30 +00003766 R.suppressDiagnostics();
Douglas Gregorb0fd4832010-04-25 20:55:08 +00003767 return ExprError();
John McCall129e2df2009-11-30 22:42:35 +00003768}
3769
John McCall028d3972010-12-15 16:46:44 +00003770/// Given that normal member access failed on the given expression,
3771/// and given that the expression's type involves builtin-id or
3772/// builtin-Class, decide whether substituting in the redefinition
3773/// types would be profitable. The redefinition type is whatever
3774/// this translation unit tried to typedef to id/Class; we store
3775/// it to the side and then re-use it in places like this.
John Wiegley429bb272011-04-08 18:41:53 +00003776static bool ShouldTryAgainWithRedefinitionType(Sema &S, ExprResult &base) {
John McCall028d3972010-12-15 16:46:44 +00003777 const ObjCObjectPointerType *opty
John Wiegley429bb272011-04-08 18:41:53 +00003778 = base.get()->getType()->getAs<ObjCObjectPointerType>();
John McCall028d3972010-12-15 16:46:44 +00003779 if (!opty) return false;
3780
3781 const ObjCObjectType *ty = opty->getObjectType();
3782
3783 QualType redef;
3784 if (ty->isObjCId()) {
3785 redef = S.Context.ObjCIdRedefinitionType;
3786 } else if (ty->isObjCClass()) {
3787 redef = S.Context.ObjCClassRedefinitionType;
3788 } else {
3789 return false;
3790 }
3791
3792 // Do the substitution as long as the redefinition type isn't just a
3793 // possibly-qualified pointer to builtin-id or builtin-Class again.
3794 opty = redef->getAs<ObjCObjectPointerType>();
3795 if (opty && !opty->getObjectType()->getInterface() != 0)
3796 return false;
3797
John Wiegley429bb272011-04-08 18:41:53 +00003798 base = S.ImpCastExprToType(base.take(), redef, CK_BitCast);
John McCall028d3972010-12-15 16:46:44 +00003799 return true;
3800}
3801
John McCall129e2df2009-11-30 22:42:35 +00003802/// Look up the given member of the given non-type-dependent
3803/// expression. This can return in one of two ways:
3804/// * If it returns a sentinel null-but-valid result, the caller will
3805/// assume that lookup was performed and the results written into
3806/// the provided structure. It will take over from there.
3807/// * Otherwise, the returned expression will be produced in place of
3808/// an ordinary member expression.
3809///
3810/// The ObjCImpDecl bit is a gross hack that will need to be properly
3811/// fixed for ObjC++.
John McCall60d7b3a2010-08-24 06:29:42 +00003812ExprResult
John Wiegley429bb272011-04-08 18:41:53 +00003813Sema::LookupMemberExpr(LookupResult &R, ExprResult &BaseExpr,
John McCall812c1542009-12-07 22:46:59 +00003814 bool &IsArrow, SourceLocation OpLoc,
Jeffrey Yasskin9ab14542010-04-08 16:38:48 +00003815 CXXScopeSpec &SS,
John McCalld226f652010-08-21 09:40:31 +00003816 Decl *ObjCImpDecl, bool HasTemplateArgs) {
John Wiegley429bb272011-04-08 18:41:53 +00003817 assert(BaseExpr.get() && "no base expression");
Mike Stump1eb44332009-09-09 15:08:12 +00003818
Steve Naroff3cc4af82007-12-16 21:42:28 +00003819 // Perform default conversions.
John Wiegley429bb272011-04-08 18:41:53 +00003820 BaseExpr = DefaultFunctionArrayConversion(BaseExpr.take());
Sebastian Redl0eb23302009-01-19 00:08:26 +00003821
John Wiegley429bb272011-04-08 18:41:53 +00003822 if (IsArrow) {
3823 BaseExpr = DefaultLvalueConversion(BaseExpr.take());
3824 if (BaseExpr.isInvalid())
3825 return ExprError();
3826 }
3827
3828 QualType BaseType = BaseExpr.get()->getType();
John McCall129e2df2009-11-30 22:42:35 +00003829 assert(!BaseType->isDependentType());
3830
3831 DeclarationName MemberName = R.getLookupName();
3832 SourceLocation MemberLoc = R.getNameLoc();
Douglas Gregor3f0b5fd2009-11-06 06:30:47 +00003833
John McCall028d3972010-12-15 16:46:44 +00003834 // For later type-checking purposes, turn arrow accesses into dot
3835 // accesses. The only access type we support that doesn't follow
3836 // the C equivalence "a->b === (*a).b" is ObjC property accesses,
3837 // and those never use arrows, so this is unaffected.
3838 if (IsArrow) {
3839 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3840 BaseType = Ptr->getPointeeType();
3841 else if (const ObjCObjectPointerType *Ptr
3842 = BaseType->getAs<ObjCObjectPointerType>())
3843 BaseType = Ptr->getPointeeType();
3844 else if (BaseType->isRecordType()) {
3845 // Recover from arrow accesses to records, e.g.:
3846 // struct MyRecord foo;
3847 // foo->bar
3848 // This is actually well-formed in C++ if MyRecord has an
3849 // overloaded operator->, but that should have been dealt with
3850 // by now.
3851 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
John Wiegley429bb272011-04-08 18:41:53 +00003852 << BaseType << int(IsArrow) << BaseExpr.get()->getSourceRange()
John McCall028d3972010-12-15 16:46:44 +00003853 << FixItHint::CreateReplacement(OpLoc, ".");
3854 IsArrow = false;
3855 } else {
3856 Diag(MemberLoc, diag::err_typecheck_member_reference_arrow)
John Wiegley429bb272011-04-08 18:41:53 +00003857 << BaseType << BaseExpr.get()->getSourceRange();
John McCall028d3972010-12-15 16:46:44 +00003858 return ExprError();
Douglas Gregor3f0b5fd2009-11-06 06:30:47 +00003859 }
3860 }
3861
John McCall028d3972010-12-15 16:46:44 +00003862 // Handle field access to simple records.
3863 if (const RecordType *RTy = BaseType->getAs<RecordType>()) {
John Wiegley429bb272011-04-08 18:41:53 +00003864 if (LookupMemberExprInRecord(*this, R, BaseExpr.get()->getSourceRange(),
John McCall028d3972010-12-15 16:46:44 +00003865 RTy, OpLoc, SS, HasTemplateArgs))
3866 return ExprError();
3867
3868 // Returning valid-but-null is how we indicate to the caller that
3869 // the lookup result was filled in.
3870 return Owned((Expr*) 0);
David Chisnall0f436562009-08-17 16:35:33 +00003871 }
John McCall129e2df2009-11-30 22:42:35 +00003872
John McCall028d3972010-12-15 16:46:44 +00003873 // Handle ivar access to Objective-C objects.
3874 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>()) {
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00003875 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
John McCall028d3972010-12-15 16:46:44 +00003876
3877 // There are three cases for the base type:
3878 // - builtin id (qualified or unqualified)
3879 // - builtin Class (qualified or unqualified)
3880 // - an interface
3881 ObjCInterfaceDecl *IDecl = OTy->getInterface();
3882 if (!IDecl) {
3883 // There's an implicit 'isa' ivar on all objects.
3884 // But we only actually find it this way on objects of type 'id',
3885 // apparently.
3886 if (OTy->isObjCId() && Member->isStr("isa"))
John Wiegley429bb272011-04-08 18:41:53 +00003887 return Owned(new (Context) ObjCIsaExpr(BaseExpr.take(), IsArrow, MemberLoc,
John McCall028d3972010-12-15 16:46:44 +00003888 Context.getObjCClassType()));
3889
3890 if (ShouldTryAgainWithRedefinitionType(*this, BaseExpr))
3891 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
3892 ObjCImpDecl, HasTemplateArgs);
3893 goto fail;
3894 }
3895
3896 ObjCInterfaceDecl *ClassDeclared;
3897 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
3898
3899 if (!IV) {
3900 // Attempt to correct for typos in ivar names.
3901 LookupResult Res(*this, R.getLookupName(), R.getNameLoc(),
3902 LookupMemberName);
3903 if (CorrectTypo(Res, 0, 0, IDecl, false,
3904 IsArrow ? CTC_ObjCIvarLookup
3905 : CTC_ObjCPropertyLookup) &&
3906 (IV = Res.getAsSingle<ObjCIvarDecl>())) {
3907 Diag(R.getNameLoc(),
3908 diag::err_typecheck_member_reference_ivar_suggest)
3909 << IDecl->getDeclName() << MemberName << IV->getDeclName()
3910 << FixItHint::CreateReplacement(R.getNameLoc(),
3911 IV->getNameAsString());
3912 Diag(IV->getLocation(), diag::note_previous_decl)
3913 << IV->getDeclName();
3914 } else {
3915 Res.clear();
3916 Res.setLookupName(Member);
3917
3918 Diag(MemberLoc, diag::err_typecheck_member_reference_ivar)
3919 << IDecl->getDeclName() << MemberName
John Wiegley429bb272011-04-08 18:41:53 +00003920 << BaseExpr.get()->getSourceRange();
John McCall028d3972010-12-15 16:46:44 +00003921 return ExprError();
3922 }
3923 }
3924
3925 // If the decl being referenced had an error, return an error for this
3926 // sub-expr without emitting another error, in order to avoid cascading
3927 // error cases.
3928 if (IV->isInvalidDecl())
3929 return ExprError();
3930
3931 // Check whether we can reference this field.
3932 if (DiagnoseUseOfDecl(IV, MemberLoc))
3933 return ExprError();
3934 if (IV->getAccessControl() != ObjCIvarDecl::Public &&
3935 IV->getAccessControl() != ObjCIvarDecl::Package) {
3936 ObjCInterfaceDecl *ClassOfMethodDecl = 0;
3937 if (ObjCMethodDecl *MD = getCurMethodDecl())
3938 ClassOfMethodDecl = MD->getClassInterface();
3939 else if (ObjCImpDecl && getCurFunctionDecl()) {
3940 // Case of a c-function declared inside an objc implementation.
3941 // FIXME: For a c-style function nested inside an objc implementation
3942 // class, there is no implementation context available, so we pass
3943 // down the context as argument to this routine. Ideally, this context
3944 // need be passed down in the AST node and somehow calculated from the
3945 // AST for a function decl.
3946 if (ObjCImplementationDecl *IMPD =
3947 dyn_cast<ObjCImplementationDecl>(ObjCImpDecl))
3948 ClassOfMethodDecl = IMPD->getClassInterface();
3949 else if (ObjCCategoryImplDecl* CatImplClass =
3950 dyn_cast<ObjCCategoryImplDecl>(ObjCImpDecl))
3951 ClassOfMethodDecl = CatImplClass->getClassInterface();
3952 }
3953
3954 if (IV->getAccessControl() == ObjCIvarDecl::Private) {
3955 if (ClassDeclared != IDecl ||
3956 ClassOfMethodDecl != ClassDeclared)
3957 Diag(MemberLoc, diag::error_private_ivar_access)
3958 << IV->getDeclName();
3959 } else if (!IDecl->isSuperClassOf(ClassOfMethodDecl))
3960 // @protected
3961 Diag(MemberLoc, diag::error_protected_ivar_access)
3962 << IV->getDeclName();
3963 }
3964
3965 return Owned(new (Context) ObjCIvarRefExpr(IV, IV->getType(),
John Wiegley429bb272011-04-08 18:41:53 +00003966 MemberLoc, BaseExpr.take(),
John McCall028d3972010-12-15 16:46:44 +00003967 IsArrow));
3968 }
3969
3970 // Objective-C property access.
3971 const ObjCObjectPointerType *OPT;
3972 if (!IsArrow && (OPT = BaseType->getAs<ObjCObjectPointerType>())) {
3973 // This actually uses the base as an r-value.
John Wiegley429bb272011-04-08 18:41:53 +00003974 BaseExpr = DefaultLvalueConversion(BaseExpr.take());
3975 if (BaseExpr.isInvalid())
3976 return ExprError();
3977
3978 assert(Context.hasSameUnqualifiedType(BaseType, BaseExpr.get()->getType()));
John McCall028d3972010-12-15 16:46:44 +00003979
3980 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
3981
3982 const ObjCObjectType *OT = OPT->getObjectType();
3983
3984 // id, with and without qualifiers.
3985 if (OT->isObjCId()) {
3986 // Check protocols on qualified interfaces.
3987 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
3988 if (Decl *PMDecl = FindGetterSetterNameDecl(OPT, Member, Sel, Context)) {
3989 if (ObjCPropertyDecl *PD = dyn_cast<ObjCPropertyDecl>(PMDecl)) {
3990 // Check the use of this declaration
3991 if (DiagnoseUseOfDecl(PD, MemberLoc))
3992 return ExprError();
3993
3994 return Owned(new (Context) ObjCPropertyRefExpr(PD, PD->getType(),
3995 VK_LValue,
3996 OK_ObjCProperty,
3997 MemberLoc,
John Wiegley429bb272011-04-08 18:41:53 +00003998 BaseExpr.take()));
John McCall028d3972010-12-15 16:46:44 +00003999 }
4000
4001 if (ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(PMDecl)) {
4002 // Check the use of this method.
4003 if (DiagnoseUseOfDecl(OMD, MemberLoc))
4004 return ExprError();
4005 Selector SetterSel =
4006 SelectorTable::constructSetterName(PP.getIdentifierTable(),
4007 PP.getSelectorTable(), Member);
4008 ObjCMethodDecl *SMD = 0;
4009 if (Decl *SDecl = FindGetterSetterNameDecl(OPT, /*Property id*/0,
4010 SetterSel, Context))
4011 SMD = dyn_cast<ObjCMethodDecl>(SDecl);
4012 QualType PType = OMD->getSendResultType();
4013
4014 ExprValueKind VK = VK_LValue;
4015 if (!getLangOptions().CPlusPlus &&
4016 IsCForbiddenLValueType(Context, PType))
4017 VK = VK_RValue;
4018 ExprObjectKind OK = (VK == VK_RValue ? OK_Ordinary : OK_ObjCProperty);
4019
4020 return Owned(new (Context) ObjCPropertyRefExpr(OMD, SMD, PType,
4021 VK, OK,
John Wiegley429bb272011-04-08 18:41:53 +00004022 MemberLoc, BaseExpr.take()));
John McCall028d3972010-12-15 16:46:44 +00004023 }
4024 }
Fariborz Jahanian4eb7f692011-03-15 17:27:48 +00004025 // Use of id.member can only be for a property reference. Do not
4026 // use the 'id' redefinition in this case.
4027 if (IsArrow && ShouldTryAgainWithRedefinitionType(*this, BaseExpr))
John McCall028d3972010-12-15 16:46:44 +00004028 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4029 ObjCImpDecl, HasTemplateArgs);
4030
4031 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
4032 << MemberName << BaseType);
4033 }
4034
4035 // 'Class', unqualified only.
4036 if (OT->isObjCClass()) {
4037 // Only works in a method declaration (??!).
4038 ObjCMethodDecl *MD = getCurMethodDecl();
4039 if (!MD) {
4040 if (ShouldTryAgainWithRedefinitionType(*this, BaseExpr))
4041 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4042 ObjCImpDecl, HasTemplateArgs);
4043
4044 goto fail;
4045 }
4046
4047 // Also must look for a getter name which uses property syntax.
4048 Selector Sel = PP.getSelectorTable().getNullarySelector(Member);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004049 ObjCInterfaceDecl *IFace = MD->getClassInterface();
4050 ObjCMethodDecl *Getter;
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004051 if ((Getter = IFace->lookupClassMethod(Sel))) {
4052 // Check the use of this method.
4053 if (DiagnoseUseOfDecl(Getter, MemberLoc))
4054 return ExprError();
John McCall028d3972010-12-15 16:46:44 +00004055 } else
Fariborz Jahanian74b27562010-12-03 23:37:08 +00004056 Getter = IFace->lookupPrivateMethod(Sel, false);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004057 // If we found a getter then this may be a valid dot-reference, we
4058 // will look for the matching setter, in case it is needed.
4059 Selector SetterSel =
John McCall028d3972010-12-15 16:46:44 +00004060 SelectorTable::constructSetterName(PP.getIdentifierTable(),
4061 PP.getSelectorTable(), Member);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004062 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel);
4063 if (!Setter) {
4064 // If this reference is in an @implementation, also check for 'private'
4065 // methods.
Fariborz Jahanian74b27562010-12-03 23:37:08 +00004066 Setter = IFace->lookupPrivateMethod(SetterSel, false);
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004067 }
4068 // Look through local category implementations associated with the class.
4069 if (!Setter)
4070 Setter = IFace->getCategoryClassMethod(SetterSel);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004071
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004072 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc))
4073 return ExprError();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004074
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004075 if (Getter || Setter) {
4076 QualType PType;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004077
John McCall09431682010-11-18 19:01:18 +00004078 ExprValueKind VK = VK_LValue;
4079 if (Getter) {
Douglas Gregor5291c3c2010-07-13 08:18:22 +00004080 PType = Getter->getSendResultType();
John McCall09431682010-11-18 19:01:18 +00004081 if (!getLangOptions().CPlusPlus &&
4082 IsCForbiddenLValueType(Context, PType))
4083 VK = VK_RValue;
4084 } else {
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004085 // Get the expression type from Setter's incoming parameter.
4086 PType = (*(Setter->param_end() -1))->getType();
John McCall09431682010-11-18 19:01:18 +00004087 }
4088 ExprObjectKind OK = (VK == VK_RValue ? OK_Ordinary : OK_ObjCProperty);
4089
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004090 // FIXME: we must check that the setter has property type.
John McCall12f78a62010-12-02 01:19:52 +00004091 return Owned(new (Context) ObjCPropertyRefExpr(Getter, Setter,
4092 PType, VK, OK,
John Wiegley429bb272011-04-08 18:41:53 +00004093 MemberLoc, BaseExpr.take()));
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004094 }
John McCall028d3972010-12-15 16:46:44 +00004095
4096 if (ShouldTryAgainWithRedefinitionType(*this, BaseExpr))
4097 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4098 ObjCImpDecl, HasTemplateArgs);
4099
Fariborz Jahanianb2ef1be2009-09-22 16:48:37 +00004100 return ExprError(Diag(MemberLoc, diag::err_property_not_found)
John McCall028d3972010-12-15 16:46:44 +00004101 << MemberName << BaseType);
Steve Naroff14108da2009-07-10 23:34:53 +00004102 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00004103
John McCall028d3972010-12-15 16:46:44 +00004104 // Normal property access.
John Wiegley429bb272011-04-08 18:41:53 +00004105 return HandleExprPropertyRefExpr(OPT, BaseExpr.get(), MemberName, MemberLoc,
John McCall028d3972010-12-15 16:46:44 +00004106 SourceLocation(), QualType(), false);
Steve Naroff14108da2009-07-10 23:34:53 +00004107 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00004108
Chris Lattnerfb173ec2008-07-21 04:28:12 +00004109 // Handle 'field access' to vectors, such as 'V.xx'.
Chris Lattner73525de2009-02-16 21:11:58 +00004110 if (BaseType->isExtVectorType()) {
John McCall5e3c67b2010-12-15 04:42:30 +00004111 // FIXME: this expr should store IsArrow.
Anders Carlsson8f28f992009-08-26 18:25:21 +00004112 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
John Wiegley429bb272011-04-08 18:41:53 +00004113 ExprValueKind VK = (IsArrow ? VK_LValue : BaseExpr.get()->getValueKind());
John McCall09431682010-11-18 19:01:18 +00004114 QualType ret = CheckExtVectorComponent(*this, BaseType, VK, OpLoc,
4115 Member, MemberLoc);
Chris Lattnerfb173ec2008-07-21 04:28:12 +00004116 if (ret.isNull())
Sebastian Redl0eb23302009-01-19 00:08:26 +00004117 return ExprError();
John McCall09431682010-11-18 19:01:18 +00004118
John Wiegley429bb272011-04-08 18:41:53 +00004119 return Owned(new (Context) ExtVectorElementExpr(ret, VK, BaseExpr.take(),
John McCall09431682010-11-18 19:01:18 +00004120 *Member, MemberLoc));
Chris Lattnerfb173ec2008-07-21 04:28:12 +00004121 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004122
John McCall028d3972010-12-15 16:46:44 +00004123 // Adjust builtin-sel to the appropriate redefinition type if that's
4124 // not just a pointer to builtin-sel again.
4125 if (IsArrow &&
4126 BaseType->isSpecificBuiltinType(BuiltinType::ObjCSel) &&
4127 !Context.ObjCSelRedefinitionType->isObjCSelType()) {
John Wiegley429bb272011-04-08 18:41:53 +00004128 BaseExpr = ImpCastExprToType(BaseExpr.take(), Context.ObjCSelRedefinitionType,
4129 CK_BitCast);
John McCall028d3972010-12-15 16:46:44 +00004130 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4131 ObjCImpDecl, HasTemplateArgs);
4132 }
4133
4134 // Failure cases.
4135 fail:
4136
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004137 // Recover from dot accesses to pointers, e.g.:
4138 // type *foo;
4139 // foo.bar
4140 // This is actually well-formed in two cases:
4141 // - 'type' is an Objective C type
4142 // - 'bar' is a pseudo-destructor name which happens to refer to
4143 // the appropriate pointer type
John McCall028d3972010-12-15 16:46:44 +00004144 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004145 if (!IsArrow && Ptr->getPointeeType()->isRecordType() &&
4146 MemberName.getNameKind() != DeclarationName::CXXDestructorName) {
John McCall028d3972010-12-15 16:46:44 +00004147 Diag(OpLoc, diag::err_typecheck_member_reference_suggestion)
John Wiegley429bb272011-04-08 18:41:53 +00004148 << BaseType << int(IsArrow) << BaseExpr.get()->getSourceRange()
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004149 << FixItHint::CreateReplacement(OpLoc, "->");
John McCall028d3972010-12-15 16:46:44 +00004150
4151 // Recurse as an -> access.
4152 IsArrow = true;
4153 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4154 ObjCImpDecl, HasTemplateArgs);
4155 }
John McCall028d3972010-12-15 16:46:44 +00004156 }
4157
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004158 // If the user is trying to apply -> or . to a function name, it's probably
4159 // because they forgot parentheses to call that function.
4160 bool TryCall = false;
4161 bool Overloaded = false;
4162 UnresolvedSet<8> AllOverloads;
John Wiegley429bb272011-04-08 18:41:53 +00004163 if (const OverloadExpr *Overloads = dyn_cast<OverloadExpr>(BaseExpr.get())) {
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004164 AllOverloads.append(Overloads->decls_begin(), Overloads->decls_end());
4165 TryCall = true;
4166 Overloaded = true;
John Wiegley429bb272011-04-08 18:41:53 +00004167 } else if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(BaseExpr.get())) {
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004168 if (FunctionDecl* Fun = dyn_cast<FunctionDecl>(DeclRef->getDecl())) {
4169 AllOverloads.addDecl(Fun);
4170 TryCall = true;
4171 }
4172 }
John McCall028d3972010-12-15 16:46:44 +00004173
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004174 if (TryCall) {
4175 // Plunder the overload set for something that would make the member
4176 // expression valid.
4177 UnresolvedSet<4> ViableOverloads;
4178 bool HasViableZeroArgOverload = false;
4179 for (OverloadExpr::decls_iterator it = AllOverloads.begin(),
4180 DeclsEnd = AllOverloads.end(); it != DeclsEnd; ++it) {
Matt Beaumont-Gayfbe59942011-03-05 02:42:30 +00004181 // Our overload set may include TemplateDecls, which we'll ignore for the
4182 // purposes of determining whether we can issue a '()' fixit.
4183 if (const FunctionDecl *OverloadDecl = dyn_cast<FunctionDecl>(*it)) {
4184 QualType ResultTy = OverloadDecl->getResultType();
4185 if ((!IsArrow && ResultTy->isRecordType()) ||
4186 (IsArrow && ResultTy->isPointerType() &&
4187 ResultTy->getPointeeType()->isRecordType())) {
4188 ViableOverloads.addDecl(*it);
4189 if (OverloadDecl->getMinRequiredArguments() == 0) {
4190 HasViableZeroArgOverload = true;
4191 }
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004192 }
John McCall028d3972010-12-15 16:46:44 +00004193 }
4194 }
4195
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004196 if (!HasViableZeroArgOverload || ViableOverloads.size() != 1) {
John Wiegley429bb272011-04-08 18:41:53 +00004197 Diag(BaseExpr.get()->getExprLoc(), diag::err_member_reference_needs_call)
Matt Beaumont-Gayfbe59942011-03-05 02:42:30 +00004198 << (AllOverloads.size() > 1) << 0
John Wiegley429bb272011-04-08 18:41:53 +00004199 << BaseExpr.get()->getSourceRange();
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004200 int ViableOverloadCount = ViableOverloads.size();
4201 int I;
4202 for (I = 0; I < ViableOverloadCount; ++I) {
4203 // FIXME: Magic number for max shown overloads stolen from
4204 // OverloadCandidateSet::NoteCandidates.
4205 if (I >= 4 && Diags.getShowOverloads() == Diagnostic::Ovl_Best) {
4206 break;
4207 }
4208 Diag(ViableOverloads[I].getDecl()->getSourceRange().getBegin(),
4209 diag::note_member_ref_possible_intended_overload);
4210 }
4211 if (I != ViableOverloadCount) {
John Wiegley429bb272011-04-08 18:41:53 +00004212 Diag(BaseExpr.get()->getExprLoc(), diag::note_ovl_too_many_candidates)
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004213 << int(ViableOverloadCount - I);
4214 }
4215 return ExprError();
4216 }
4217 } else {
4218 // We don't have an expression that's convenient to get a Decl from, but we
4219 // can at least check if the type is "function of 0 arguments which returns
4220 // an acceptable type".
4221 const FunctionType *Fun = NULL;
4222 if (const PointerType *Ptr = BaseType->getAs<PointerType>()) {
4223 if ((Fun = Ptr->getPointeeType()->getAs<FunctionType>())) {
4224 TryCall = true;
4225 }
4226 } else if ((Fun = BaseType->getAs<FunctionType>())) {
4227 TryCall = true;
4228 }
John McCall028d3972010-12-15 16:46:44 +00004229
4230 if (TryCall) {
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004231 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Fun)) {
4232 if (FPT->getNumArgs() == 0) {
4233 QualType ResultTy = Fun->getResultType();
4234 TryCall = (!IsArrow && ResultTy->isRecordType()) ||
4235 (IsArrow && ResultTy->isPointerType() &&
4236 ResultTy->getPointeeType()->isRecordType());
4237 }
Matt Beaumont-Gay26ae5dd2011-02-17 02:54:17 +00004238 }
John McCall028d3972010-12-15 16:46:44 +00004239 }
4240 }
4241
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004242 if (TryCall) {
4243 // At this point, we know BaseExpr looks like it's potentially callable with
4244 // 0 arguments, and that it returns something of a reasonable type, so we
4245 // can emit a fixit and carry on pretending that BaseExpr was actually a
4246 // CallExpr.
4247 SourceLocation ParenInsertionLoc =
John Wiegley429bb272011-04-08 18:41:53 +00004248 PP.getLocForEndOfToken(BaseExpr.get()->getLocEnd());
4249 Diag(BaseExpr.get()->getExprLoc(), diag::err_member_reference_needs_call)
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004250 << int(Overloaded) << 1
John Wiegley429bb272011-04-08 18:41:53 +00004251 << BaseExpr.get()->getSourceRange()
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004252 << FixItHint::CreateInsertion(ParenInsertionLoc, "()");
John Wiegley429bb272011-04-08 18:41:53 +00004253 ExprResult NewBase = ActOnCallExpr(0, BaseExpr.take(), ParenInsertionLoc,
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004254 MultiExprArg(*this, 0, 0),
4255 ParenInsertionLoc);
4256 if (NewBase.isInvalid())
4257 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00004258 BaseExpr = NewBase;
4259 BaseExpr = DefaultFunctionArrayConversion(BaseExpr.take());
Matt Beaumont-Gay65b34d72011-02-22 23:52:53 +00004260 return LookupMemberExpr(R, BaseExpr, IsArrow, OpLoc, SS,
4261 ObjCImpDecl, HasTemplateArgs);
4262 }
4263
Douglas Gregor214f31a2009-03-27 06:00:30 +00004264 Diag(MemberLoc, diag::err_typecheck_member_reference_struct_union)
John Wiegley429bb272011-04-08 18:41:53 +00004265 << BaseType << BaseExpr.get()->getSourceRange();
Douglas Gregor214f31a2009-03-27 06:00:30 +00004266
Douglas Gregor214f31a2009-03-27 06:00:30 +00004267 return ExprError();
Reid Spencer5f016e22007-07-11 17:01:13 +00004268}
4269
John McCall129e2df2009-11-30 22:42:35 +00004270/// The main callback when the parser finds something like
4271/// expression . [nested-name-specifier] identifier
4272/// expression -> [nested-name-specifier] identifier
4273/// where 'identifier' encompasses a fairly broad spectrum of
4274/// possibilities, including destructor and operator references.
4275///
4276/// \param OpKind either tok::arrow or tok::period
4277/// \param HasTrailingLParen whether the next token is '(', which
4278/// is used to diagnose mis-uses of special members that can
4279/// only be called
4280/// \param ObjCImpDecl the current ObjC @implementation decl;
4281/// this is an ugly hack around the fact that ObjC @implementations
4282/// aren't properly put in the context chain
John McCall60d7b3a2010-08-24 06:29:42 +00004283ExprResult Sema::ActOnMemberAccessExpr(Scope *S, Expr *Base,
John McCall5e3c67b2010-12-15 04:42:30 +00004284 SourceLocation OpLoc,
4285 tok::TokenKind OpKind,
4286 CXXScopeSpec &SS,
4287 UnqualifiedId &Id,
4288 Decl *ObjCImpDecl,
4289 bool HasTrailingLParen) {
John McCall129e2df2009-11-30 22:42:35 +00004290 if (SS.isSet() && SS.isInvalid())
4291 return ExprError();
4292
Francois Pichetdbee3412011-01-18 05:04:39 +00004293 // Warn about the explicit constructor calls Microsoft extension.
4294 if (getLangOptions().Microsoft &&
4295 Id.getKind() == UnqualifiedId::IK_ConstructorName)
4296 Diag(Id.getSourceRange().getBegin(),
4297 diag::ext_ms_explicit_constructor_call);
4298
John McCall129e2df2009-11-30 22:42:35 +00004299 TemplateArgumentListInfo TemplateArgsBuffer;
4300
4301 // Decompose the name into its component parts.
Abramo Bagnara25777432010-08-11 22:01:17 +00004302 DeclarationNameInfo NameInfo;
John McCall129e2df2009-11-30 22:42:35 +00004303 const TemplateArgumentListInfo *TemplateArgs;
4304 DecomposeUnqualifiedId(*this, Id, TemplateArgsBuffer,
Abramo Bagnara25777432010-08-11 22:01:17 +00004305 NameInfo, TemplateArgs);
John McCall129e2df2009-11-30 22:42:35 +00004306
Abramo Bagnara25777432010-08-11 22:01:17 +00004307 DeclarationName Name = NameInfo.getName();
John McCall129e2df2009-11-30 22:42:35 +00004308 bool IsArrow = (OpKind == tok::arrow);
4309
4310 NamedDecl *FirstQualifierInScope
4311 = (!SS.isSet() ? 0 : FindFirstQualifierInScope(S,
4312 static_cast<NestedNameSpecifier*>(SS.getScopeRep())));
4313
4314 // This is a postfix expression, so get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00004315 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Base);
John McCall9ae2f072010-08-23 23:25:46 +00004316 if (Result.isInvalid()) return ExprError();
4317 Base = Result.take();
John McCall129e2df2009-11-30 22:42:35 +00004318
Douglas Gregor01e56ae2010-04-12 20:54:26 +00004319 if (Base->getType()->isDependentType() || Name.isDependentName() ||
4320 isDependentScopeSpecifier(SS)) {
John McCall9ae2f072010-08-23 23:25:46 +00004321 Result = ActOnDependentMemberExpr(Base, Base->getType(),
John McCall129e2df2009-11-30 22:42:35 +00004322 IsArrow, OpLoc,
4323 SS, FirstQualifierInScope,
Abramo Bagnara25777432010-08-11 22:01:17 +00004324 NameInfo, TemplateArgs);
John McCall129e2df2009-11-30 22:42:35 +00004325 } else {
Abramo Bagnara25777432010-08-11 22:01:17 +00004326 LookupResult R(*this, NameInfo, LookupMemberName);
John Wiegley429bb272011-04-08 18:41:53 +00004327 ExprResult BaseResult = Owned(Base);
4328 Result = LookupMemberExpr(R, BaseResult, IsArrow, OpLoc,
John McCallad00b772010-06-16 08:42:20 +00004329 SS, ObjCImpDecl, TemplateArgs != 0);
John Wiegley429bb272011-04-08 18:41:53 +00004330 if (BaseResult.isInvalid())
4331 return ExprError();
4332 Base = BaseResult.take();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00004333
John McCallad00b772010-06-16 08:42:20 +00004334 if (Result.isInvalid()) {
4335 Owned(Base);
4336 return ExprError();
4337 }
John McCall129e2df2009-11-30 22:42:35 +00004338
John McCallad00b772010-06-16 08:42:20 +00004339 if (Result.get()) {
4340 // The only way a reference to a destructor can be used is to
4341 // immediately call it, which falls into this case. If the
4342 // next token is not a '(', produce a diagnostic and build the
4343 // call now.
4344 if (!HasTrailingLParen &&
4345 Id.getKind() == UnqualifiedId::IK_DestructorName)
John McCall9ae2f072010-08-23 23:25:46 +00004346 return DiagnoseDtorReference(NameInfo.getLoc(), Result.get());
John McCall129e2df2009-11-30 22:42:35 +00004347
John McCallad00b772010-06-16 08:42:20 +00004348 return move(Result);
John McCall129e2df2009-11-30 22:42:35 +00004349 }
4350
John McCall9ae2f072010-08-23 23:25:46 +00004351 Result = BuildMemberReferenceExpr(Base, Base->getType(),
John McCallc2233c52010-01-15 08:34:02 +00004352 OpLoc, IsArrow, SS, FirstQualifierInScope,
4353 R, TemplateArgs);
John McCall129e2df2009-11-30 22:42:35 +00004354 }
4355
4356 return move(Result);
Anders Carlsson8f28f992009-08-26 18:25:21 +00004357}
4358
John McCall60d7b3a2010-08-24 06:29:42 +00004359ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
Nico Weber08e41a62010-11-29 18:19:25 +00004360 FunctionDecl *FD,
4361 ParmVarDecl *Param) {
Anders Carlsson56c5e332009-08-25 03:49:14 +00004362 if (Param->hasUnparsedDefaultArg()) {
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004363 Diag(CallLoc,
Nico Weber15d5c832010-11-30 04:44:33 +00004364 diag::err_use_of_default_argument_to_function_declared_later) <<
Anders Carlsson56c5e332009-08-25 03:49:14 +00004365 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump1eb44332009-09-09 15:08:12 +00004366 Diag(UnparsedDefaultArgLocs[Param],
Nico Weber15d5c832010-11-30 04:44:33 +00004367 diag::note_default_argument_declared_here);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004368 return ExprError();
4369 }
4370
4371 if (Param->hasUninstantiatedDefaultArg()) {
4372 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
Anders Carlsson56c5e332009-08-25 03:49:14 +00004373
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004374 // Instantiate the expression.
4375 MultiLevelTemplateArgumentList ArgList
4376 = getTemplateInstantiationArgs(FD, 0, /*RelativeToPrimary=*/true);
Anders Carlsson25cae7f2009-09-05 05:14:19 +00004377
Nico Weber08e41a62010-11-29 18:19:25 +00004378 std::pair<const TemplateArgument *, unsigned> Innermost
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004379 = ArgList.getInnermost();
4380 InstantiatingTemplate Inst(*this, CallLoc, Param, Innermost.first,
4381 Innermost.second);
Anders Carlsson56c5e332009-08-25 03:49:14 +00004382
Nico Weber08e41a62010-11-29 18:19:25 +00004383 ExprResult Result;
4384 {
4385 // C++ [dcl.fct.default]p5:
4386 // The names in the [default argument] expression are bound, and
4387 // the semantic constraints are checked, at the point where the
4388 // default argument expression appears.
Nico Weber15d5c832010-11-30 04:44:33 +00004389 ContextRAII SavedContext(*this, FD);
Nico Weber08e41a62010-11-29 18:19:25 +00004390 Result = SubstExpr(UninstExpr, ArgList);
4391 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004392 if (Result.isInvalid())
4393 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00004394
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004395 // Check the expression as an initializer for the parameter.
4396 InitializedEntity Entity
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00004397 = InitializedEntity::InitializeParameter(Context, Param);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004398 InitializationKind Kind
4399 = InitializationKind::CreateCopy(Param->getLocation(),
4400 /*FIXME:EqualLoc*/UninstExpr->getSourceRange().getBegin());
4401 Expr *ResultE = Result.takeAs<Expr>();
Douglas Gregor65222e82009-12-23 18:19:08 +00004402
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004403 InitializationSequence InitSeq(*this, Entity, Kind, &ResultE, 1);
4404 Result = InitSeq.Perform(*this, Entity, Kind,
4405 MultiExprArg(*this, &ResultE, 1));
4406 if (Result.isInvalid())
4407 return ExprError();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004408
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004409 // Build the default argument expression.
4410 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param,
4411 Result.takeAs<Expr>()));
Anders Carlsson56c5e332009-08-25 03:49:14 +00004412 }
4413
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004414 // If the default expression creates temporaries, we need to
4415 // push them to the current stack of expression temporaries so they'll
4416 // be properly destroyed.
4417 // FIXME: We should really be rebuilding the default argument with new
4418 // bound temporaries; see the comment in PR5810.
Douglas Gregor5833b0b2010-09-14 22:55:20 +00004419 for (unsigned i = 0, e = Param->getNumDefaultArgTemporaries(); i != e; ++i) {
4420 CXXTemporary *Temporary = Param->getDefaultArgTemporary(i);
4421 MarkDeclarationReferenced(Param->getDefaultArg()->getLocStart(),
4422 const_cast<CXXDestructorDecl*>(Temporary->getDestructor()));
4423 ExprTemporaries.push_back(Temporary);
4424 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004425
4426 // We already type-checked the argument, so we know it works.
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00004427 // Just mark all of the declarations in this potentially-evaluated expression
4428 // as being "referenced".
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00004429 MarkDeclarationsReferencedInExpr(Param->getDefaultArg());
Douglas Gregor036aed12009-12-23 23:03:06 +00004430 return Owned(CXXDefaultArgExpr::Create(Context, CallLoc, Param));
Anders Carlsson56c5e332009-08-25 03:49:14 +00004431}
4432
Douglas Gregor88a35142008-12-22 05:46:06 +00004433/// ConvertArgumentsForCall - Converts the arguments specified in
4434/// Args/NumArgs to the parameter types of the function FDecl with
4435/// function prototype Proto. Call is the call expression itself, and
4436/// Fn is the function expression. For a C++ member function, this
4437/// routine does not attempt to convert the object argument. Returns
4438/// true if the call is ill-formed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004439bool
4440Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor88a35142008-12-22 05:46:06 +00004441 FunctionDecl *FDecl,
Douglas Gregor72564e72009-02-26 23:50:07 +00004442 const FunctionProtoType *Proto,
Douglas Gregor88a35142008-12-22 05:46:06 +00004443 Expr **Args, unsigned NumArgs,
4444 SourceLocation RParenLoc) {
John McCall8e10f3b2011-02-26 05:39:39 +00004445 // Bail out early if calling a builtin with custom typechecking.
4446 // We don't need to do this in the
4447 if (FDecl)
4448 if (unsigned ID = FDecl->getBuiltinID())
4449 if (Context.BuiltinInfo.hasCustomTypechecking(ID))
4450 return false;
4451
Mike Stumpeed9cac2009-02-19 03:04:26 +00004452 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor88a35142008-12-22 05:46:06 +00004453 // assignment, to the types of the corresponding parameter, ...
4454 unsigned NumArgsInProto = Proto->getNumArgs();
Douglas Gregor3fd56d72009-01-23 21:30:56 +00004455 bool Invalid = false;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004456
Douglas Gregor88a35142008-12-22 05:46:06 +00004457 // If too few arguments are available (and we don't have default
4458 // arguments for the remaining parameters), don't make the call.
4459 if (NumArgs < NumArgsInProto) {
4460 if (!FDecl || NumArgs < FDecl->getMinRequiredArguments())
4461 return Diag(RParenLoc, diag::err_typecheck_call_too_few_args)
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00004462 << Fn->getType()->isBlockPointerType()
Eric Christopherd77b9a22010-04-16 04:48:22 +00004463 << NumArgsInProto << NumArgs << Fn->getSourceRange();
Ted Kremenek8189cde2009-02-07 01:47:29 +00004464 Call->setNumArgs(Context, NumArgsInProto);
Douglas Gregor88a35142008-12-22 05:46:06 +00004465 }
4466
4467 // If too many are passed and not variadic, error on the extras and drop
4468 // them.
4469 if (NumArgs > NumArgsInProto) {
4470 if (!Proto->isVariadic()) {
4471 Diag(Args[NumArgsInProto]->getLocStart(),
4472 diag::err_typecheck_call_too_many_args)
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00004473 << Fn->getType()->isBlockPointerType()
Eric Christopherccfa9632010-04-16 04:56:46 +00004474 << NumArgsInProto << NumArgs << Fn->getSourceRange()
Douglas Gregor88a35142008-12-22 05:46:06 +00004475 << SourceRange(Args[NumArgsInProto]->getLocStart(),
4476 Args[NumArgs-1]->getLocEnd());
Ted Kremenek5862f0e2011-04-04 17:22:27 +00004477
4478 // Emit the location of the prototype.
4479 if (FDecl && !FDecl->getBuiltinID())
4480 Diag(FDecl->getLocStart(),
4481 diag::note_typecheck_call_too_many_args)
4482 << FDecl;
4483
Douglas Gregor88a35142008-12-22 05:46:06 +00004484 // This deletes the extra arguments.
Ted Kremenek8189cde2009-02-07 01:47:29 +00004485 Call->setNumArgs(Context, NumArgsInProto);
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004486 return true;
Douglas Gregor88a35142008-12-22 05:46:06 +00004487 }
Douglas Gregor88a35142008-12-22 05:46:06 +00004488 }
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004489 llvm::SmallVector<Expr *, 8> AllArgs;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004490 VariadicCallType CallType =
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00004491 Proto->isVariadic() ? VariadicFunction : VariadicDoesNotApply;
4492 if (Fn->getType()->isBlockPointerType())
4493 CallType = VariadicBlock; // Block
4494 else if (isa<MemberExpr>(Fn))
4495 CallType = VariadicMethod;
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004496 Invalid = GatherArgumentsForCall(Call->getSourceRange().getBegin(), FDecl,
Fariborz Jahanian2fe168f2009-11-24 21:37:28 +00004497 Proto, 0, Args, NumArgs, AllArgs, CallType);
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004498 if (Invalid)
4499 return true;
4500 unsigned TotalNumArgs = AllArgs.size();
4501 for (unsigned i = 0; i < TotalNumArgs; ++i)
4502 Call->setArg(i, AllArgs[i]);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004503
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004504 return false;
4505}
Mike Stumpeed9cac2009-02-19 03:04:26 +00004506
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004507bool Sema::GatherArgumentsForCall(SourceLocation CallLoc,
4508 FunctionDecl *FDecl,
4509 const FunctionProtoType *Proto,
4510 unsigned FirstProtoArg,
4511 Expr **Args, unsigned NumArgs,
4512 llvm::SmallVector<Expr *, 8> &AllArgs,
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00004513 VariadicCallType CallType) {
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004514 unsigned NumArgsInProto = Proto->getNumArgs();
4515 unsigned NumArgsToCheck = NumArgs;
4516 bool Invalid = false;
4517 if (NumArgs != NumArgsInProto)
4518 // Use default arguments for missing arguments
4519 NumArgsToCheck = NumArgsInProto;
4520 unsigned ArgIx = 0;
Douglas Gregor88a35142008-12-22 05:46:06 +00004521 // Continue to check argument types (even if we have too few/many args).
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004522 for (unsigned i = FirstProtoArg; i != NumArgsToCheck; i++) {
Douglas Gregor88a35142008-12-22 05:46:06 +00004523 QualType ProtoArgType = Proto->getArgType(i);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004524
Douglas Gregor88a35142008-12-22 05:46:06 +00004525 Expr *Arg;
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004526 if (ArgIx < NumArgs) {
4527 Arg = Args[ArgIx++];
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004528
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00004529 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
4530 ProtoArgType,
Anders Carlssonb7906612009-08-26 23:45:07 +00004531 PDiag(diag::err_call_incomplete_argument)
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004532 << Arg->getSourceRange()))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00004533 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004534
Douglas Gregora188ff22009-12-22 16:09:06 +00004535 // Pass the argument
4536 ParmVarDecl *Param = 0;
4537 if (FDecl && i < FDecl->getNumParams())
4538 Param = FDecl->getParamDecl(i);
Douglas Gregoraa037312009-12-22 07:24:36 +00004539
Douglas Gregora188ff22009-12-22 16:09:06 +00004540 InitializedEntity Entity =
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00004541 Param? InitializedEntity::InitializeParameter(Context, Param)
4542 : InitializedEntity::InitializeParameter(Context, ProtoArgType);
John McCall60d7b3a2010-08-24 06:29:42 +00004543 ExprResult ArgE = PerformCopyInitialization(Entity,
John McCallf6a16482010-12-04 03:47:34 +00004544 SourceLocation(),
4545 Owned(Arg));
Douglas Gregora188ff22009-12-22 16:09:06 +00004546 if (ArgE.isInvalid())
4547 return true;
4548
4549 Arg = ArgE.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00004550 } else {
Anders Carlssoned961f92009-08-25 02:29:20 +00004551 ParmVarDecl *Param = FDecl->getParamDecl(i);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004552
John McCall60d7b3a2010-08-24 06:29:42 +00004553 ExprResult ArgExpr =
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004554 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
Anders Carlsson56c5e332009-08-25 03:49:14 +00004555 if (ArgExpr.isInvalid())
4556 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004557
Anders Carlsson56c5e332009-08-25 03:49:14 +00004558 Arg = ArgExpr.takeAs<Expr>();
Anders Carlsson5e300d12009-06-12 16:51:40 +00004559 }
Fariborz Jahanian048f52a2009-11-24 18:29:37 +00004560 AllArgs.push_back(Arg);
Douglas Gregor88a35142008-12-22 05:46:06 +00004561 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004562
Douglas Gregor88a35142008-12-22 05:46:06 +00004563 // If this is a variadic call, handle args passed through "...".
Fariborz Jahanian4cd1c702009-11-24 19:27:49 +00004564 if (CallType != VariadicDoesNotApply) {
John McCall755d8492011-04-12 00:42:48 +00004565
4566 // Assume that extern "C" functions with variadic arguments that
4567 // return __unknown_anytype aren't *really* variadic.
4568 if (Proto->getResultType() == Context.UnknownAnyTy &&
4569 FDecl && FDecl->isExternC()) {
4570 for (unsigned i = ArgIx; i != NumArgs; ++i) {
4571 ExprResult arg;
4572 if (isa<ExplicitCastExpr>(Args[i]->IgnoreParens()))
4573 arg = DefaultFunctionArrayLvalueConversion(Args[i]);
4574 else
4575 arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl);
4576 Invalid |= arg.isInvalid();
4577 AllArgs.push_back(arg.take());
4578 }
4579
4580 // Otherwise do argument promotion, (C99 6.5.2.2p7).
4581 } else {
4582 for (unsigned i = ArgIx; i != NumArgs; ++i) {
4583 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType, FDecl);
4584 Invalid |= Arg.isInvalid();
4585 AllArgs.push_back(Arg.take());
4586 }
Douglas Gregor88a35142008-12-22 05:46:06 +00004587 }
4588 }
Douglas Gregor3fd56d72009-01-23 21:30:56 +00004589 return Invalid;
Douglas Gregor88a35142008-12-22 05:46:06 +00004590}
4591
John McCall755d8492011-04-12 00:42:48 +00004592/// Given a function expression of unknown-any type, try to rebuild it
4593/// to have a function type.
4594static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
4595
Steve Narofff69936d2007-09-16 03:34:24 +00004596/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Reid Spencer5f016e22007-07-11 17:01:13 +00004597/// This provides the location of the left/right parens and a list of comma
4598/// locations.
John McCall60d7b3a2010-08-24 06:29:42 +00004599ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00004600Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
Peter Collingbournee08ce652011-02-09 21:07:24 +00004601 MultiExprArg args, SourceLocation RParenLoc,
4602 Expr *ExecConfig) {
Sebastian Redl0eb23302009-01-19 00:08:26 +00004603 unsigned NumArgs = args.size();
Nate Begeman2ef13e52009-08-10 23:49:36 +00004604
4605 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCall60d7b3a2010-08-24 06:29:42 +00004606 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
John McCall9ae2f072010-08-23 23:25:46 +00004607 if (Result.isInvalid()) return ExprError();
4608 Fn = Result.take();
Mike Stump1eb44332009-09-09 15:08:12 +00004609
John McCall9ae2f072010-08-23 23:25:46 +00004610 Expr **Args = args.release();
Mike Stump1eb44332009-09-09 15:08:12 +00004611
Douglas Gregor88a35142008-12-22 05:46:06 +00004612 if (getLangOptions().CPlusPlus) {
Douglas Gregora71d8192009-09-04 17:36:40 +00004613 // If this is a pseudo-destructor expression, build the call immediately.
4614 if (isa<CXXPseudoDestructorExpr>(Fn)) {
4615 if (NumArgs > 0) {
4616 // Pseudo-destructor calls should not have any arguments.
4617 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
Douglas Gregor849b2432010-03-31 17:46:05 +00004618 << FixItHint::CreateRemoval(
Douglas Gregora71d8192009-09-04 17:36:40 +00004619 SourceRange(Args[0]->getLocStart(),
4620 Args[NumArgs-1]->getLocEnd()));
Mike Stump1eb44332009-09-09 15:08:12 +00004621
Douglas Gregora71d8192009-09-04 17:36:40 +00004622 NumArgs = 0;
4623 }
Mike Stump1eb44332009-09-09 15:08:12 +00004624
Douglas Gregora71d8192009-09-04 17:36:40 +00004625 return Owned(new (Context) CallExpr(Context, Fn, 0, 0, Context.VoidTy,
John McCallf89e55a2010-11-18 06:31:45 +00004626 VK_RValue, RParenLoc));
Douglas Gregora71d8192009-09-04 17:36:40 +00004627 }
Mike Stump1eb44332009-09-09 15:08:12 +00004628
Douglas Gregor17330012009-02-04 15:01:18 +00004629 // Determine whether this is a dependent call inside a C++ template,
Mike Stumpeed9cac2009-02-19 03:04:26 +00004630 // in which case we won't do any semantic analysis now.
Mike Stump390b4cc2009-05-16 07:39:55 +00004631 // FIXME: Will need to cache the results of name lookup (including ADL) in
4632 // Fn.
Douglas Gregor17330012009-02-04 15:01:18 +00004633 bool Dependent = false;
4634 if (Fn->isTypeDependent())
4635 Dependent = true;
4636 else if (Expr::hasAnyTypeDependentArguments(Args, NumArgs))
4637 Dependent = true;
4638
Peter Collingbournee08ce652011-02-09 21:07:24 +00004639 if (Dependent) {
4640 if (ExecConfig) {
4641 return Owned(new (Context) CUDAKernelCallExpr(
4642 Context, Fn, cast<CallExpr>(ExecConfig), Args, NumArgs,
4643 Context.DependentTy, VK_RValue, RParenLoc));
4644 } else {
4645 return Owned(new (Context) CallExpr(Context, Fn, Args, NumArgs,
4646 Context.DependentTy, VK_RValue,
4647 RParenLoc));
4648 }
4649 }
Douglas Gregor17330012009-02-04 15:01:18 +00004650
4651 // Determine whether this is a call to an object (C++ [over.call.object]).
4652 if (Fn->getType()->isRecordType())
4653 return Owned(BuildCallToObjectOfClassType(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00004654 RParenLoc));
Douglas Gregor17330012009-02-04 15:01:18 +00004655
John McCall755d8492011-04-12 00:42:48 +00004656 if (Fn->getType() == Context.UnknownAnyTy) {
4657 ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
4658 if (result.isInvalid()) return ExprError();
4659 Fn = result.take();
4660 }
4661
John McCall129e2df2009-11-30 22:42:35 +00004662 Expr *NakedFn = Fn->IgnoreParens();
4663
4664 // Determine whether this is a call to an unresolved member function.
4665 if (UnresolvedMemberExpr *MemE = dyn_cast<UnresolvedMemberExpr>(NakedFn)) {
4666 // If lookup was unresolved but not dependent (i.e. didn't find
4667 // an unresolved using declaration), it has to be an overloaded
4668 // function set, which means it must contain either multiple
4669 // declarations (all methods or method templates) or a single
4670 // method template.
4671 assert((MemE->getNumDecls() > 1) ||
Douglas Gregor2b147f02010-04-25 21:15:30 +00004672 isa<FunctionTemplateDecl>(
4673 (*MemE->decls_begin())->getUnderlyingDecl()));
Douglas Gregor958aeb02009-12-01 03:34:29 +00004674 (void)MemE;
John McCall129e2df2009-11-30 22:42:35 +00004675
John McCallaa81e162009-12-01 22:10:20 +00004676 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00004677 RParenLoc);
John McCall129e2df2009-11-30 22:42:35 +00004678 }
4679
Douglas Gregorfa047642009-02-04 00:32:51 +00004680 // Determine whether this is a call to a member function.
John McCall129e2df2009-11-30 22:42:35 +00004681 if (MemberExpr *MemExpr = dyn_cast<MemberExpr>(NakedFn)) {
Douglas Gregore53060f2009-06-25 22:08:12 +00004682 NamedDecl *MemDecl = MemExpr->getMemberDecl();
John McCall129e2df2009-11-30 22:42:35 +00004683 if (isa<CXXMethodDecl>(MemDecl))
John McCallaa81e162009-12-01 22:10:20 +00004684 return BuildCallToMemberFunction(S, Fn, LParenLoc, Args, NumArgs,
Douglas Gregora1a04782010-09-09 16:33:13 +00004685 RParenLoc);
Douglas Gregore53060f2009-06-25 22:08:12 +00004686 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004687
Anders Carlsson83ccfc32009-10-03 17:40:22 +00004688 // Determine whether this is a call to a pointer-to-member function.
John McCall129e2df2009-11-30 22:42:35 +00004689 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(NakedFn)) {
John McCall2de56d12010-08-25 11:45:40 +00004690 if (BO->getOpcode() == BO_PtrMemD ||
4691 BO->getOpcode() == BO_PtrMemI) {
Douglas Gregor5f970ee2010-05-04 18:18:31 +00004692 if (const FunctionProtoType *FPT
4693 = BO->getType()->getAs<FunctionProtoType>()) {
Douglas Gregor5291c3c2010-07-13 08:18:22 +00004694 QualType ResultTy = FPT->getCallResultType(Context);
John McCallf89e55a2010-11-18 06:31:45 +00004695 ExprValueKind VK = Expr::getValueKindForType(FPT->getResultType());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004696
Douglas Gregorfdc13a02011-02-04 12:57:49 +00004697 // Check that the object type isn't more qualified than the
4698 // member function we're calling.
4699 Qualifiers FuncQuals = Qualifiers::fromCVRMask(FPT->getTypeQuals());
4700 Qualifiers ObjectQuals
4701 = BO->getOpcode() == BO_PtrMemD
4702 ? BO->getLHS()->getType().getQualifiers()
4703 : BO->getLHS()->getType()->getAs<PointerType>()
4704 ->getPointeeType().getQualifiers();
4705
4706 Qualifiers Difference = ObjectQuals - FuncQuals;
4707 Difference.removeObjCGCAttr();
4708 Difference.removeAddressSpace();
4709 if (Difference) {
4710 std::string QualsString = Difference.getAsString();
4711 Diag(LParenLoc, diag::err_pointer_to_member_call_drops_quals)
4712 << BO->getType().getUnqualifiedType()
4713 << QualsString
4714 << (QualsString.find(' ') == std::string::npos? 1 : 2);
4715 }
4716
John McCall9ae2f072010-08-23 23:25:46 +00004717 CXXMemberCallExpr *TheCall
Abramo Bagnara6c572f12010-12-03 21:39:42 +00004718 = new (Context) CXXMemberCallExpr(Context, Fn, Args,
John McCallf89e55a2010-11-18 06:31:45 +00004719 NumArgs, ResultTy, VK,
John McCall9ae2f072010-08-23 23:25:46 +00004720 RParenLoc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004721
4722 if (CheckCallReturnType(FPT->getResultType(),
4723 BO->getRHS()->getSourceRange().getBegin(),
John McCall9ae2f072010-08-23 23:25:46 +00004724 TheCall, 0))
Fariborz Jahanian5de24502009-10-28 16:49:46 +00004725 return ExprError();
Anders Carlsson8d6d90d2009-10-15 00:41:48 +00004726
John McCall9ae2f072010-08-23 23:25:46 +00004727 if (ConvertArgumentsForCall(TheCall, BO, 0, FPT, Args, NumArgs,
Fariborz Jahanian5de24502009-10-28 16:49:46 +00004728 RParenLoc))
4729 return ExprError();
Anders Carlsson83ccfc32009-10-03 17:40:22 +00004730
John McCall9ae2f072010-08-23 23:25:46 +00004731 return MaybeBindToTemporary(TheCall);
Fariborz Jahanian5de24502009-10-28 16:49:46 +00004732 }
Anders Carlsson83ccfc32009-10-03 17:40:22 +00004733 }
4734 }
Douglas Gregor88a35142008-12-22 05:46:06 +00004735 }
4736
Douglas Gregorfa047642009-02-04 00:32:51 +00004737 // If we're directly calling a function, get the appropriate declaration.
Mike Stump1eb44332009-09-09 15:08:12 +00004738 // Also, in C++, keep track of whether we should perform argument-dependent
Douglas Gregor6db8ed42009-06-30 23:57:56 +00004739 // lookup and whether there were any explicitly-specified template arguments.
Mike Stumpeed9cac2009-02-19 03:04:26 +00004740
Eli Friedmanefa42f72009-12-26 03:35:45 +00004741 Expr *NakedFn = Fn->IgnoreParens();
Douglas Gregoref9b1492010-11-09 20:03:54 +00004742 if (isa<UnresolvedLookupExpr>(NakedFn)) {
4743 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(NakedFn);
4744 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, Args, NumArgs,
Peter Collingbournee08ce652011-02-09 21:07:24 +00004745 RParenLoc, ExecConfig);
Douglas Gregoref9b1492010-11-09 20:03:54 +00004746 }
4747
John McCall3b4294e2009-12-16 12:17:52 +00004748 NamedDecl *NDecl = 0;
Douglas Gregord8f0ade2010-10-25 20:48:33 +00004749 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn))
4750 if (UnOp->getOpcode() == UO_AddrOf)
4751 NakedFn = UnOp->getSubExpr()->IgnoreParens();
4752
John McCall3b4294e2009-12-16 12:17:52 +00004753 if (isa<DeclRefExpr>(NakedFn))
4754 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
4755
Peter Collingbournee08ce652011-02-09 21:07:24 +00004756 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, Args, NumArgs, RParenLoc,
4757 ExecConfig);
4758}
4759
4760ExprResult
4761Sema::ActOnCUDAExecConfigExpr(Scope *S, SourceLocation LLLLoc,
4762 MultiExprArg execConfig, SourceLocation GGGLoc) {
4763 FunctionDecl *ConfigDecl = Context.getcudaConfigureCallDecl();
4764 if (!ConfigDecl)
4765 return ExprError(Diag(LLLLoc, diag::err_undeclared_var_use)
4766 << "cudaConfigureCall");
4767 QualType ConfigQTy = ConfigDecl->getType();
4768
4769 DeclRefExpr *ConfigDR = new (Context) DeclRefExpr(
4770 ConfigDecl, ConfigQTy, VK_LValue, LLLLoc);
4771
4772 return ActOnCallExpr(S, ConfigDR, LLLLoc, execConfig, GGGLoc, 0);
John McCallaa81e162009-12-01 22:10:20 +00004773}
4774
John McCall3b4294e2009-12-16 12:17:52 +00004775/// BuildResolvedCallExpr - Build a call to a resolved expression,
4776/// i.e. an expression not of \p OverloadTy. The expression should
John McCallaa81e162009-12-01 22:10:20 +00004777/// unary-convert to an expression of function-pointer or
4778/// block-pointer type.
4779///
4780/// \param NDecl the declaration being called, if available
John McCall60d7b3a2010-08-24 06:29:42 +00004781ExprResult
John McCallaa81e162009-12-01 22:10:20 +00004782Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
4783 SourceLocation LParenLoc,
4784 Expr **Args, unsigned NumArgs,
Peter Collingbournee08ce652011-02-09 21:07:24 +00004785 SourceLocation RParenLoc,
4786 Expr *Config) {
John McCallaa81e162009-12-01 22:10:20 +00004787 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
4788
Chris Lattner04421082008-04-08 04:40:51 +00004789 // Promote the function operand.
John Wiegley429bb272011-04-08 18:41:53 +00004790 ExprResult Result = UsualUnaryConversions(Fn);
4791 if (Result.isInvalid())
4792 return ExprError();
4793 Fn = Result.take();
Chris Lattner04421082008-04-08 04:40:51 +00004794
Chris Lattner925e60d2007-12-28 05:29:59 +00004795 // Make the call expr early, before semantic checks. This guarantees cleanup
4796 // of arguments and function on error.
Peter Collingbournee08ce652011-02-09 21:07:24 +00004797 CallExpr *TheCall;
4798 if (Config) {
4799 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
4800 cast<CallExpr>(Config),
4801 Args, NumArgs,
4802 Context.BoolTy,
4803 VK_RValue,
4804 RParenLoc);
4805 } else {
4806 TheCall = new (Context) CallExpr(Context, Fn,
4807 Args, NumArgs,
4808 Context.BoolTy,
4809 VK_RValue,
4810 RParenLoc);
4811 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00004812
John McCall8e10f3b2011-02-26 05:39:39 +00004813 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
4814
4815 // Bail out early if calling a builtin with custom typechecking.
4816 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
4817 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
4818
John McCall1de4d4e2011-04-07 08:22:57 +00004819 retry:
Steve Naroffdd972f22008-09-05 22:11:13 +00004820 const FunctionType *FuncT;
John McCall8e10f3b2011-02-26 05:39:39 +00004821 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
Steve Naroffdd972f22008-09-05 22:11:13 +00004822 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
4823 // have type pointer to function".
John McCall183700f2009-09-21 23:43:11 +00004824 FuncT = PT->getPointeeType()->getAs<FunctionType>();
John McCall8e10f3b2011-02-26 05:39:39 +00004825 if (FuncT == 0)
4826 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4827 << Fn->getType() << Fn->getSourceRange());
4828 } else if (const BlockPointerType *BPT =
4829 Fn->getType()->getAs<BlockPointerType>()) {
4830 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
4831 } else {
John McCall1de4d4e2011-04-07 08:22:57 +00004832 // Handle calls to expressions of unknown-any type.
4833 if (Fn->getType() == Context.UnknownAnyTy) {
John McCall755d8492011-04-12 00:42:48 +00004834 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
John McCall1de4d4e2011-04-07 08:22:57 +00004835 if (rewrite.isInvalid()) return ExprError();
4836 Fn = rewrite.take();
John McCalla5fc4722011-04-09 22:50:59 +00004837 TheCall->setCallee(Fn);
John McCall1de4d4e2011-04-07 08:22:57 +00004838 goto retry;
4839 }
4840
Sebastian Redl0eb23302009-01-19 00:08:26 +00004841 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4842 << Fn->getType() << Fn->getSourceRange());
John McCall8e10f3b2011-02-26 05:39:39 +00004843 }
Sebastian Redl0eb23302009-01-19 00:08:26 +00004844
Peter Collingbourne0423fc62011-02-23 01:53:29 +00004845 if (getLangOptions().CUDA) {
4846 if (Config) {
4847 // CUDA: Kernel calls must be to global functions
4848 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
4849 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
4850 << FDecl->getName() << Fn->getSourceRange());
4851
4852 // CUDA: Kernel function must have 'void' return type
4853 if (!FuncT->getResultType()->isVoidType())
4854 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
4855 << Fn->getType() << Fn->getSourceRange());
4856 }
4857 }
4858
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00004859 // Check for a valid return type
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004860 if (CheckCallReturnType(FuncT->getResultType(),
John McCall9ae2f072010-08-23 23:25:46 +00004861 Fn->getSourceRange().getBegin(), TheCall,
Anders Carlsson8c8d9192009-10-09 23:51:55 +00004862 FDecl))
Eli Friedmane7c6f7a2009-03-22 22:00:50 +00004863 return ExprError();
4864
Chris Lattner925e60d2007-12-28 05:29:59 +00004865 // We know the result type of the call, set it.
Douglas Gregor5291c3c2010-07-13 08:18:22 +00004866 TheCall->setType(FuncT->getCallResultType(Context));
John McCallf89e55a2010-11-18 06:31:45 +00004867 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getResultType()));
Sebastian Redl0eb23302009-01-19 00:08:26 +00004868
Douglas Gregor72564e72009-02-26 23:50:07 +00004869 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT)) {
John McCall9ae2f072010-08-23 23:25:46 +00004870 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, NumArgs,
Douglas Gregor88a35142008-12-22 05:46:06 +00004871 RParenLoc))
Sebastian Redl0eb23302009-01-19 00:08:26 +00004872 return ExprError();
Chris Lattner925e60d2007-12-28 05:29:59 +00004873 } else {
Douglas Gregor72564e72009-02-26 23:50:07 +00004874 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redl0eb23302009-01-19 00:08:26 +00004875
Douglas Gregor74734d52009-04-02 15:37:10 +00004876 if (FDecl) {
4877 // Check if we have too few/too many template arguments, based
4878 // on our knowledge of the function definition.
4879 const FunctionDecl *Def = 0;
Argyrios Kyrtzidis06a54a32010-07-07 11:31:19 +00004880 if (FDecl->hasBody(Def) && NumArgs != Def->param_size()) {
Douglas Gregor46542412010-10-25 20:39:23 +00004881 const FunctionProtoType *Proto
4882 = Def->getType()->getAs<FunctionProtoType>();
4883 if (!Proto || !(Proto->isVariadic() && NumArgs >= Def->param_size()))
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00004884 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
4885 << (NumArgs > Def->param_size()) << FDecl << Fn->getSourceRange();
Eli Friedmanbc4e29f2009-06-01 09:24:59 +00004886 }
Douglas Gregor46542412010-10-25 20:39:23 +00004887
4888 // If the function we're calling isn't a function prototype, but we have
4889 // a function prototype from a prior declaratiom, use that prototype.
4890 if (!FDecl->hasPrototype())
4891 Proto = FDecl->getType()->getAs<FunctionProtoType>();
Douglas Gregor74734d52009-04-02 15:37:10 +00004892 }
4893
Steve Naroffb291ab62007-08-28 23:30:39 +00004894 // Promote the arguments (C99 6.5.2.2p6).
Chris Lattner925e60d2007-12-28 05:29:59 +00004895 for (unsigned i = 0; i != NumArgs; i++) {
4896 Expr *Arg = Args[i];
Douglas Gregor46542412010-10-25 20:39:23 +00004897
4898 if (Proto && i < Proto->getNumArgs()) {
Douglas Gregor46542412010-10-25 20:39:23 +00004899 InitializedEntity Entity
4900 = InitializedEntity::InitializeParameter(Context,
4901 Proto->getArgType(i));
4902 ExprResult ArgE = PerformCopyInitialization(Entity,
4903 SourceLocation(),
4904 Owned(Arg));
4905 if (ArgE.isInvalid())
4906 return true;
4907
4908 Arg = ArgE.takeAs<Expr>();
4909
4910 } else {
John Wiegley429bb272011-04-08 18:41:53 +00004911 ExprResult ArgE = DefaultArgumentPromotion(Arg);
4912
4913 if (ArgE.isInvalid())
4914 return true;
4915
4916 Arg = ArgE.takeAs<Expr>();
Douglas Gregor46542412010-10-25 20:39:23 +00004917 }
4918
Douglas Gregor0700bbf2010-10-26 05:45:40 +00004919 if (RequireCompleteType(Arg->getSourceRange().getBegin(),
4920 Arg->getType(),
4921 PDiag(diag::err_call_incomplete_argument)
4922 << Arg->getSourceRange()))
4923 return ExprError();
4924
Chris Lattner925e60d2007-12-28 05:29:59 +00004925 TheCall->setArg(i, Arg);
Steve Naroffb291ab62007-08-28 23:30:39 +00004926 }
Reid Spencer5f016e22007-07-11 17:01:13 +00004927 }
Chris Lattner925e60d2007-12-28 05:29:59 +00004928
Douglas Gregor88a35142008-12-22 05:46:06 +00004929 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
4930 if (!Method->isStatic())
Sebastian Redl0eb23302009-01-19 00:08:26 +00004931 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
4932 << Fn->getSourceRange());
Douglas Gregor88a35142008-12-22 05:46:06 +00004933
Fariborz Jahaniandaf04152009-05-15 20:33:25 +00004934 // Check for sentinels
4935 if (NDecl)
4936 DiagnoseSentinelCalls(NDecl, LParenLoc, Args, NumArgs);
Mike Stump1eb44332009-09-09 15:08:12 +00004937
Chris Lattner59907c42007-08-10 20:18:51 +00004938 // Do special checking on direct calls to functions.
Anders Carlssond406bf02009-08-16 01:56:34 +00004939 if (FDecl) {
John McCall9ae2f072010-08-23 23:25:46 +00004940 if (CheckFunctionCall(FDecl, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +00004941 return ExprError();
Mike Stump1eb44332009-09-09 15:08:12 +00004942
John McCall8e10f3b2011-02-26 05:39:39 +00004943 if (BuiltinID)
Fariborz Jahanian67aba812010-11-30 17:35:24 +00004944 return CheckBuiltinFunctionCall(BuiltinID, TheCall);
Anders Carlssond406bf02009-08-16 01:56:34 +00004945 } else if (NDecl) {
John McCall9ae2f072010-08-23 23:25:46 +00004946 if (CheckBlockCall(NDecl, TheCall))
Anders Carlssond406bf02009-08-16 01:56:34 +00004947 return ExprError();
4948 }
Chris Lattner59907c42007-08-10 20:18:51 +00004949
John McCall9ae2f072010-08-23 23:25:46 +00004950 return MaybeBindToTemporary(TheCall);
Reid Spencer5f016e22007-07-11 17:01:13 +00004951}
4952
John McCall60d7b3a2010-08-24 06:29:42 +00004953ExprResult
John McCallb3d87482010-08-24 05:47:05 +00004954Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
John McCall9ae2f072010-08-23 23:25:46 +00004955 SourceLocation RParenLoc, Expr *InitExpr) {
Steve Narofff69936d2007-09-16 03:34:24 +00004956 assert((Ty != 0) && "ActOnCompoundLiteral(): missing type");
Steve Naroffaff1edd2007-07-19 21:32:11 +00004957 // FIXME: put back this assert when initializers are worked out.
Steve Narofff69936d2007-09-16 03:34:24 +00004958 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
John McCall42f56b52010-01-18 19:35:47 +00004959
4960 TypeSourceInfo *TInfo;
4961 QualType literalType = GetTypeFromParser(Ty, &TInfo);
4962 if (!TInfo)
4963 TInfo = Context.getTrivialTypeSourceInfo(literalType);
4964
John McCall9ae2f072010-08-23 23:25:46 +00004965 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
John McCall42f56b52010-01-18 19:35:47 +00004966}
4967
John McCall60d7b3a2010-08-24 06:29:42 +00004968ExprResult
John McCall42f56b52010-01-18 19:35:47 +00004969Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
John McCall9ae2f072010-08-23 23:25:46 +00004970 SourceLocation RParenLoc, Expr *literalExpr) {
John McCall42f56b52010-01-18 19:35:47 +00004971 QualType literalType = TInfo->getType();
Anders Carlssond35c8322007-12-05 07:24:19 +00004972
Eli Friedman6223c222008-05-20 05:22:08 +00004973 if (literalType->isArrayType()) {
Argyrios Kyrtzidise6fe9a22010-11-08 19:14:19 +00004974 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
4975 PDiag(diag::err_illegal_decl_array_incomplete_type)
4976 << SourceRange(LParenLoc,
4977 literalExpr->getSourceRange().getEnd())))
4978 return ExprError();
Chris Lattnerc63a1f22008-08-04 07:31:14 +00004979 if (literalType->isVariableArrayType())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004980 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
4981 << SourceRange(LParenLoc, literalExpr->getSourceRange().getEnd()));
Douglas Gregor690dc7f2009-05-21 23:48:18 +00004982 } else if (!literalType->isDependentType() &&
4983 RequireCompleteType(LParenLoc, literalType,
Anders Carlssonb7906612009-08-26 23:45:07 +00004984 PDiag(diag::err_typecheck_decl_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00004985 << SourceRange(LParenLoc,
Anders Carlssonb7906612009-08-26 23:45:07 +00004986 literalExpr->getSourceRange().getEnd())))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004987 return ExprError();
Eli Friedman6223c222008-05-20 05:22:08 +00004988
Douglas Gregor99a2e602009-12-16 01:38:02 +00004989 InitializedEntity Entity
Douglas Gregord6542d82009-12-22 15:35:07 +00004990 = InitializedEntity::InitializeTemporary(literalType);
Douglas Gregor99a2e602009-12-16 01:38:02 +00004991 InitializationKind Kind
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00004992 = InitializationKind::CreateCast(SourceRange(LParenLoc, RParenLoc),
Douglas Gregor99a2e602009-12-16 01:38:02 +00004993 /*IsCStyleCast=*/true);
Eli Friedman08544622009-12-22 02:35:53 +00004994 InitializationSequence InitSeq(*this, Entity, Kind, &literalExpr, 1);
John McCall60d7b3a2010-08-24 06:29:42 +00004995 ExprResult Result = InitSeq.Perform(*this, Entity, Kind,
John McCallca0408f2010-08-23 06:44:23 +00004996 MultiExprArg(*this, &literalExpr, 1),
Eli Friedman08544622009-12-22 02:35:53 +00004997 &literalType);
4998 if (Result.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00004999 return ExprError();
John McCall9ae2f072010-08-23 23:25:46 +00005000 literalExpr = Result.get();
Steve Naroffe9b12192008-01-14 18:19:28 +00005001
Chris Lattner371f2582008-12-04 23:50:19 +00005002 bool isFileScope = getCurFunctionOrMethodDecl() == 0;
Steve Naroffe9b12192008-01-14 18:19:28 +00005003 if (isFileScope) { // 6.5.2.5p3
Steve Naroffd0091aa2008-01-10 22:15:12 +00005004 if (CheckForConstantInitializer(literalExpr, literalType))
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005005 return ExprError();
Steve Naroffd0091aa2008-01-10 22:15:12 +00005006 }
Eli Friedman08544622009-12-22 02:35:53 +00005007
John McCallf89e55a2010-11-18 06:31:45 +00005008 // In C, compound literals are l-values for some reason.
5009 ExprValueKind VK = getLangOptions().CPlusPlus ? VK_RValue : VK_LValue;
5010
John McCall1d7d8d62010-01-19 22:33:45 +00005011 return Owned(new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
John McCallf89e55a2010-11-18 06:31:45 +00005012 VK, literalExpr, isFileScope));
Steve Naroff4aa88f82007-07-19 01:06:55 +00005013}
5014
John McCall60d7b3a2010-08-24 06:29:42 +00005015ExprResult
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005016Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg initlist,
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005017 SourceLocation RBraceLoc) {
5018 unsigned NumInit = initlist.size();
John McCall9ae2f072010-08-23 23:25:46 +00005019 Expr **InitList = initlist.release();
Anders Carlsson66b5a8a2007-08-31 04:56:16 +00005020
Steve Naroff08d92e42007-09-15 18:49:24 +00005021 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stumpeed9cac2009-02-19 03:04:26 +00005022 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005023
Ted Kremenek709210f2010-04-13 23:39:13 +00005024 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitList,
5025 NumInit, RBraceLoc);
Chris Lattnerf0467b32008-04-02 04:24:33 +00005026 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005027 return Owned(E);
Steve Naroff4aa88f82007-07-19 01:06:55 +00005028}
5029
John McCallf3ea8cf2010-11-14 08:17:51 +00005030/// Prepares for a scalar cast, performing all the necessary stages
5031/// except the final cast and returning the kind required.
John Wiegley429bb272011-04-08 18:41:53 +00005032static CastKind PrepareScalarCast(Sema &S, ExprResult &Src, QualType DestTy) {
John McCallf3ea8cf2010-11-14 08:17:51 +00005033 // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5034 // Also, callers should have filtered out the invalid cases with
5035 // pointers. Everything else should be possible.
5036
John Wiegley429bb272011-04-08 18:41:53 +00005037 QualType SrcTy = Src.get()->getType();
John McCallf3ea8cf2010-11-14 08:17:51 +00005038 if (S.Context.hasSameUnqualifiedType(SrcTy, DestTy))
John McCall2de56d12010-08-25 11:45:40 +00005039 return CK_NoOp;
Anders Carlsson82debc72009-10-18 18:12:03 +00005040
John McCalldaa8e4e2010-11-15 09:13:47 +00005041 switch (SrcTy->getScalarTypeKind()) {
5042 case Type::STK_MemberPointer:
5043 llvm_unreachable("member pointer type in C");
Abramo Bagnarabb03f5d2011-01-04 09:50:03 +00005044
John McCalldaa8e4e2010-11-15 09:13:47 +00005045 case Type::STK_Pointer:
5046 switch (DestTy->getScalarTypeKind()) {
5047 case Type::STK_Pointer:
5048 return DestTy->isObjCObjectPointerType() ?
John McCallf3ea8cf2010-11-14 08:17:51 +00005049 CK_AnyPointerToObjCPointerCast :
5050 CK_BitCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00005051 case Type::STK_Bool:
5052 return CK_PointerToBoolean;
5053 case Type::STK_Integral:
5054 return CK_PointerToIntegral;
5055 case Type::STK_Floating:
5056 case Type::STK_FloatingComplex:
5057 case Type::STK_IntegralComplex:
5058 case Type::STK_MemberPointer:
5059 llvm_unreachable("illegal cast from pointer");
5060 }
5061 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005062
John McCalldaa8e4e2010-11-15 09:13:47 +00005063 case Type::STK_Bool: // casting from bool is like casting from an integer
5064 case Type::STK_Integral:
5065 switch (DestTy->getScalarTypeKind()) {
5066 case Type::STK_Pointer:
John Wiegley429bb272011-04-08 18:41:53 +00005067 if (Src.get()->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNull))
John McCall404cd162010-11-13 01:35:44 +00005068 return CK_NullToPointer;
John McCall2de56d12010-08-25 11:45:40 +00005069 return CK_IntegralToPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00005070 case Type::STK_Bool:
5071 return CK_IntegralToBoolean;
5072 case Type::STK_Integral:
John McCallf3ea8cf2010-11-14 08:17:51 +00005073 return CK_IntegralCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00005074 case Type::STK_Floating:
John McCall2de56d12010-08-25 11:45:40 +00005075 return CK_IntegralToFloating;
John McCalldaa8e4e2010-11-15 09:13:47 +00005076 case Type::STK_IntegralComplex:
John Wiegley429bb272011-04-08 18:41:53 +00005077 Src = S.ImpCastExprToType(Src.take(), DestTy->getAs<ComplexType>()->getElementType(),
5078 CK_IntegralCast);
John McCallf3ea8cf2010-11-14 08:17:51 +00005079 return CK_IntegralRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00005080 case Type::STK_FloatingComplex:
John Wiegley429bb272011-04-08 18:41:53 +00005081 Src = S.ImpCastExprToType(Src.take(), DestTy->getAs<ComplexType>()->getElementType(),
5082 CK_IntegralToFloating);
John McCallf3ea8cf2010-11-14 08:17:51 +00005083 return CK_FloatingRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00005084 case Type::STK_MemberPointer:
5085 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00005086 }
5087 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005088
John McCalldaa8e4e2010-11-15 09:13:47 +00005089 case Type::STK_Floating:
5090 switch (DestTy->getScalarTypeKind()) {
5091 case Type::STK_Floating:
John McCall2de56d12010-08-25 11:45:40 +00005092 return CK_FloatingCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00005093 case Type::STK_Bool:
5094 return CK_FloatingToBoolean;
5095 case Type::STK_Integral:
John McCall2de56d12010-08-25 11:45:40 +00005096 return CK_FloatingToIntegral;
John McCalldaa8e4e2010-11-15 09:13:47 +00005097 case Type::STK_FloatingComplex:
John Wiegley429bb272011-04-08 18:41:53 +00005098 Src = S.ImpCastExprToType(Src.take(), DestTy->getAs<ComplexType>()->getElementType(),
5099 CK_FloatingCast);
John McCallf3ea8cf2010-11-14 08:17:51 +00005100 return CK_FloatingRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00005101 case Type::STK_IntegralComplex:
John Wiegley429bb272011-04-08 18:41:53 +00005102 Src = S.ImpCastExprToType(Src.take(), DestTy->getAs<ComplexType>()->getElementType(),
5103 CK_FloatingToIntegral);
John McCallf3ea8cf2010-11-14 08:17:51 +00005104 return CK_IntegralRealToComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00005105 case Type::STK_Pointer:
5106 llvm_unreachable("valid float->pointer cast?");
5107 case Type::STK_MemberPointer:
5108 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00005109 }
5110 break;
5111
John McCalldaa8e4e2010-11-15 09:13:47 +00005112 case Type::STK_FloatingComplex:
5113 switch (DestTy->getScalarTypeKind()) {
5114 case Type::STK_FloatingComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00005115 return CK_FloatingComplexCast;
John McCalldaa8e4e2010-11-15 09:13:47 +00005116 case Type::STK_IntegralComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00005117 return CK_FloatingComplexToIntegralComplex;
John McCall8786da72010-12-14 17:51:41 +00005118 case Type::STK_Floating: {
Abramo Bagnarabb03f5d2011-01-04 09:50:03 +00005119 QualType ET = SrcTy->getAs<ComplexType>()->getElementType();
John McCall8786da72010-12-14 17:51:41 +00005120 if (S.Context.hasSameType(ET, DestTy))
5121 return CK_FloatingComplexToReal;
John Wiegley429bb272011-04-08 18:41:53 +00005122 Src = S.ImpCastExprToType(Src.take(), ET, CK_FloatingComplexToReal);
John McCall8786da72010-12-14 17:51:41 +00005123 return CK_FloatingCast;
5124 }
John McCalldaa8e4e2010-11-15 09:13:47 +00005125 case Type::STK_Bool:
John McCallf3ea8cf2010-11-14 08:17:51 +00005126 return CK_FloatingComplexToBoolean;
John McCalldaa8e4e2010-11-15 09:13:47 +00005127 case Type::STK_Integral:
John Wiegley429bb272011-04-08 18:41:53 +00005128 Src = S.ImpCastExprToType(Src.take(), SrcTy->getAs<ComplexType>()->getElementType(),
5129 CK_FloatingComplexToReal);
John McCallf3ea8cf2010-11-14 08:17:51 +00005130 return CK_FloatingToIntegral;
John McCalldaa8e4e2010-11-15 09:13:47 +00005131 case Type::STK_Pointer:
5132 llvm_unreachable("valid complex float->pointer cast?");
5133 case Type::STK_MemberPointer:
5134 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00005135 }
5136 break;
5137
John McCalldaa8e4e2010-11-15 09:13:47 +00005138 case Type::STK_IntegralComplex:
5139 switch (DestTy->getScalarTypeKind()) {
5140 case Type::STK_FloatingComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00005141 return CK_IntegralComplexToFloatingComplex;
John McCalldaa8e4e2010-11-15 09:13:47 +00005142 case Type::STK_IntegralComplex:
John McCallf3ea8cf2010-11-14 08:17:51 +00005143 return CK_IntegralComplexCast;
John McCall8786da72010-12-14 17:51:41 +00005144 case Type::STK_Integral: {
Abramo Bagnarabb03f5d2011-01-04 09:50:03 +00005145 QualType ET = SrcTy->getAs<ComplexType>()->getElementType();
John McCall8786da72010-12-14 17:51:41 +00005146 if (S.Context.hasSameType(ET, DestTy))
5147 return CK_IntegralComplexToReal;
John Wiegley429bb272011-04-08 18:41:53 +00005148 Src = S.ImpCastExprToType(Src.take(), ET, CK_IntegralComplexToReal);
John McCall8786da72010-12-14 17:51:41 +00005149 return CK_IntegralCast;
5150 }
John McCalldaa8e4e2010-11-15 09:13:47 +00005151 case Type::STK_Bool:
John McCallf3ea8cf2010-11-14 08:17:51 +00005152 return CK_IntegralComplexToBoolean;
John McCalldaa8e4e2010-11-15 09:13:47 +00005153 case Type::STK_Floating:
John Wiegley429bb272011-04-08 18:41:53 +00005154 Src = S.ImpCastExprToType(Src.take(), SrcTy->getAs<ComplexType>()->getElementType(),
5155 CK_IntegralComplexToReal);
John McCallf3ea8cf2010-11-14 08:17:51 +00005156 return CK_IntegralToFloating;
John McCalldaa8e4e2010-11-15 09:13:47 +00005157 case Type::STK_Pointer:
5158 llvm_unreachable("valid complex int->pointer cast?");
5159 case Type::STK_MemberPointer:
5160 llvm_unreachable("member pointer type in C");
John McCallf3ea8cf2010-11-14 08:17:51 +00005161 }
5162 break;
Anders Carlsson82debc72009-10-18 18:12:03 +00005163 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005164
John McCallf3ea8cf2010-11-14 08:17:51 +00005165 llvm_unreachable("Unhandled scalar cast");
5166 return CK_BitCast;
Anders Carlsson82debc72009-10-18 18:12:03 +00005167}
5168
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005169/// CheckCastTypes - Check type constraints for casting between types.
John Wiegley429bb272011-04-08 18:41:53 +00005170ExprResult Sema::CheckCastTypes(SourceRange TyR, QualType castType,
5171 Expr *castExpr, CastKind& Kind, ExprValueKind &VK,
5172 CXXCastPath &BasePath, bool FunctionalStyle) {
John McCall1de4d4e2011-04-07 08:22:57 +00005173 if (castExpr->getType() == Context.UnknownAnyTy)
5174 return checkUnknownAnyCast(TyR, castType, castExpr, Kind, VK, BasePath);
5175
Sebastian Redl9cc11e72009-07-25 15:41:38 +00005176 if (getLangOptions().CPlusPlus)
Douglas Gregor40749ee2010-11-03 00:35:38 +00005177 return CXXCheckCStyleCast(SourceRange(TyR.getBegin(),
5178 castExpr->getLocEnd()),
John McCallf89e55a2010-11-18 06:31:45 +00005179 castType, VK, castExpr, Kind, BasePath,
Anders Carlsson5cf86ba2010-04-24 19:06:50 +00005180 FunctionalStyle);
Sebastian Redl9cc11e72009-07-25 15:41:38 +00005181
John McCallfb8721c2011-04-10 19:13:55 +00005182 assert(!castExpr->getType()->isPlaceholderType());
5183
John McCallf89e55a2010-11-18 06:31:45 +00005184 // We only support r-value casts in C.
5185 VK = VK_RValue;
5186
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005187 // C99 6.5.4p2: the cast type needs to be void or scalar and the expression
5188 // type needs to be scalar.
5189 if (castType->isVoidType()) {
John McCallf6a16482010-12-04 03:47:34 +00005190 // We don't necessarily do lvalue-to-rvalue conversions on this.
John Wiegley429bb272011-04-08 18:41:53 +00005191 ExprResult castExprRes = IgnoredValueConversions(castExpr);
5192 if (castExprRes.isInvalid())
5193 return ExprError();
5194 castExpr = castExprRes.take();
John McCallf6a16482010-12-04 03:47:34 +00005195
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005196 // Cast to void allows any expr type.
John McCall2de56d12010-08-25 11:45:40 +00005197 Kind = CK_ToVoid;
John Wiegley429bb272011-04-08 18:41:53 +00005198 return Owned(castExpr);
Anders Carlssonebeaf202009-10-16 02:35:04 +00005199 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005200
John Wiegley429bb272011-04-08 18:41:53 +00005201 ExprResult castExprRes = DefaultFunctionArrayLvalueConversion(castExpr);
5202 if (castExprRes.isInvalid())
5203 return ExprError();
5204 castExpr = castExprRes.take();
John McCallf6a16482010-12-04 03:47:34 +00005205
Eli Friedman8d438082010-07-17 20:43:49 +00005206 if (RequireCompleteType(TyR.getBegin(), castType,
5207 diag::err_typecheck_cast_to_incomplete))
John Wiegley429bb272011-04-08 18:41:53 +00005208 return ExprError();
Eli Friedman8d438082010-07-17 20:43:49 +00005209
Anders Carlssonebeaf202009-10-16 02:35:04 +00005210 if (!castType->isScalarType() && !castType->isVectorType()) {
Douglas Gregora4923eb2009-11-16 21:35:15 +00005211 if (Context.hasSameUnqualifiedType(castType, castExpr->getType()) &&
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005212 (castType->isStructureType() || castType->isUnionType())) {
5213 // GCC struct/union extension: allow cast to self.
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005214 // FIXME: Check that the cast destination type is complete.
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005215 Diag(TyR.getBegin(), diag::ext_typecheck_cast_nonscalar)
5216 << castType << castExpr->getSourceRange();
John McCall2de56d12010-08-25 11:45:40 +00005217 Kind = CK_NoOp;
John Wiegley429bb272011-04-08 18:41:53 +00005218 return Owned(castExpr);
Anders Carlssonc3516322009-10-16 02:48:28 +00005219 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005220
Anders Carlssonc3516322009-10-16 02:48:28 +00005221 if (castType->isUnionType()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005222 // GCC cast to union extension
Ted Kremenek6217b802009-07-29 21:53:49 +00005223 RecordDecl *RD = castType->getAs<RecordType>()->getDecl();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005224 RecordDecl::field_iterator Field, FieldEnd;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00005225 for (Field = RD->field_begin(), FieldEnd = RD->field_end();
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005226 Field != FieldEnd; ++Field) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005227 if (Context.hasSameUnqualifiedType(Field->getType(),
Abramo Bagnara8c4bfe52010-10-07 21:20:44 +00005228 castExpr->getType()) &&
5229 !Field->isUnnamedBitfield()) {
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005230 Diag(TyR.getBegin(), diag::ext_typecheck_cast_to_union)
5231 << castExpr->getSourceRange();
5232 break;
5233 }
5234 }
John Wiegley429bb272011-04-08 18:41:53 +00005235 if (Field == FieldEnd) {
5236 Diag(TyR.getBegin(), diag::err_typecheck_cast_to_union_no_type)
Seo Sanghyeoneff2cd52009-01-15 04:51:39 +00005237 << castExpr->getType() << castExpr->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00005238 return ExprError();
5239 }
John McCall2de56d12010-08-25 11:45:40 +00005240 Kind = CK_ToUnion;
John Wiegley429bb272011-04-08 18:41:53 +00005241 return Owned(castExpr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005242 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005243
Anders Carlssonc3516322009-10-16 02:48:28 +00005244 // Reject any other conversions to non-scalar types.
John Wiegley429bb272011-04-08 18:41:53 +00005245 Diag(TyR.getBegin(), diag::err_typecheck_cond_expect_scalar)
Anders Carlssonc3516322009-10-16 02:48:28 +00005246 << castType << castExpr->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00005247 return ExprError();
Anders Carlssonc3516322009-10-16 02:48:28 +00005248 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005249
John McCallf3ea8cf2010-11-14 08:17:51 +00005250 // The type we're casting to is known to be a scalar or vector.
5251
5252 // Require the operand to be a scalar or vector.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005253 if (!castExpr->getType()->isScalarType() &&
Anders Carlssonc3516322009-10-16 02:48:28 +00005254 !castExpr->getType()->isVectorType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005255 Diag(castExpr->getLocStart(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005256 diag::err_typecheck_expect_scalar_operand)
Chris Lattnerd1625842008-11-24 06:25:27 +00005257 << castExpr->getType() << castExpr->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00005258 return ExprError();
Anders Carlssonc3516322009-10-16 02:48:28 +00005259 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005260
5261 if (castType->isExtVectorType())
Anders Carlsson16a89042009-10-16 05:23:41 +00005262 return CheckExtVectorCast(TyR, castType, castExpr, Kind);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005263
Anton Yartsevd06fea82011-03-27 09:32:40 +00005264 if (castType->isVectorType()) {
5265 if (castType->getAs<VectorType>()->getVectorKind() ==
5266 VectorType::AltiVecVector &&
5267 (castExpr->getType()->isIntegerType() ||
5268 castExpr->getType()->isFloatingType())) {
5269 Kind = CK_VectorSplat;
John Wiegley429bb272011-04-08 18:41:53 +00005270 return Owned(castExpr);
5271 } else if (CheckVectorCast(TyR, castType, castExpr->getType(), Kind)) {
5272 return ExprError();
Anton Yartsevd06fea82011-03-27 09:32:40 +00005273 } else
John Wiegley429bb272011-04-08 18:41:53 +00005274 return Owned(castExpr);
Anton Yartsevd06fea82011-03-27 09:32:40 +00005275 }
John Wiegley429bb272011-04-08 18:41:53 +00005276 if (castExpr->getType()->isVectorType()) {
5277 if (CheckVectorCast(TyR, castExpr->getType(), castType, Kind))
5278 return ExprError();
5279 else
5280 return Owned(castExpr);
5281 }
Anders Carlssonc3516322009-10-16 02:48:28 +00005282
John McCallf3ea8cf2010-11-14 08:17:51 +00005283 // The source and target types are both scalars, i.e.
5284 // - arithmetic types (fundamental, enum, and complex)
5285 // - all kinds of pointers
5286 // Note that member pointers were filtered out with C++, above.
5287
John Wiegley429bb272011-04-08 18:41:53 +00005288 if (isa<ObjCSelectorExpr>(castExpr)) {
5289 Diag(castExpr->getLocStart(), diag::err_cast_selector_expr);
5290 return ExprError();
5291 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005292
John McCallf3ea8cf2010-11-14 08:17:51 +00005293 // If either type is a pointer, the other type has to be either an
5294 // integer or a pointer.
Anders Carlssonc3516322009-10-16 02:48:28 +00005295 if (!castType->isArithmeticType()) {
Eli Friedman41826bb2009-05-01 02:23:58 +00005296 QualType castExprType = castExpr->getType();
Douglas Gregor9d3347a2010-06-16 00:35:25 +00005297 if (!castExprType->isIntegralType(Context) &&
John Wiegley429bb272011-04-08 18:41:53 +00005298 castExprType->isArithmeticType()) {
5299 Diag(castExpr->getLocStart(),
5300 diag::err_cast_pointer_from_non_pointer_int)
Eli Friedman41826bb2009-05-01 02:23:58 +00005301 << castExprType << castExpr->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00005302 return ExprError();
5303 }
Eli Friedman41826bb2009-05-01 02:23:58 +00005304 } else if (!castExpr->getType()->isArithmeticType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005305 if (!castType->isIntegralType(Context) && castType->isArithmeticType()) {
5306 Diag(castExpr->getLocStart(), diag::err_cast_pointer_to_non_pointer_int)
Eli Friedman41826bb2009-05-01 02:23:58 +00005307 << castType << castExpr->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +00005308 return ExprError();
5309 }
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005310 }
Anders Carlsson82debc72009-10-18 18:12:03 +00005311
John Wiegley429bb272011-04-08 18:41:53 +00005312 castExprRes = Owned(castExpr);
5313 Kind = PrepareScalarCast(*this, castExprRes, castType);
5314 if (castExprRes.isInvalid())
5315 return ExprError();
5316 castExpr = castExprRes.take();
John McCallb7f4ffe2010-08-12 21:44:57 +00005317
John McCallf3ea8cf2010-11-14 08:17:51 +00005318 if (Kind == CK_BitCast)
John McCallb7f4ffe2010-08-12 21:44:57 +00005319 CheckCastAlign(castExpr, castType, TyR);
5320
John Wiegley429bb272011-04-08 18:41:53 +00005321 return Owned(castExpr);
Argyrios Kyrtzidis6c2dc4d2008-08-16 20:27:34 +00005322}
5323
Anders Carlssonc3516322009-10-16 02:48:28 +00005324bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
John McCall2de56d12010-08-25 11:45:40 +00005325 CastKind &Kind) {
Anders Carlssona64db8f2007-11-27 05:51:55 +00005326 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00005327
Anders Carlssona64db8f2007-11-27 05:51:55 +00005328 if (Ty->isVectorType() || Ty->isIntegerType()) {
Chris Lattner98be4942008-03-05 18:54:05 +00005329 if (Context.getTypeSize(VectorTy) != Context.getTypeSize(Ty))
Anders Carlssona64db8f2007-11-27 05:51:55 +00005330 return Diag(R.getBegin(),
Mike Stumpeed9cac2009-02-19 03:04:26 +00005331 Ty->isVectorType() ?
Anders Carlssona64db8f2007-11-27 05:51:55 +00005332 diag::err_invalid_conversion_between_vectors :
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005333 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattnerd1625842008-11-24 06:25:27 +00005334 << VectorTy << Ty << R;
Anders Carlssona64db8f2007-11-27 05:51:55 +00005335 } else
5336 return Diag(R.getBegin(),
Chris Lattnerfa25bbb2008-11-19 05:08:23 +00005337 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattnerd1625842008-11-24 06:25:27 +00005338 << VectorTy << Ty << R;
Mike Stumpeed9cac2009-02-19 03:04:26 +00005339
John McCall2de56d12010-08-25 11:45:40 +00005340 Kind = CK_BitCast;
Anders Carlssona64db8f2007-11-27 05:51:55 +00005341 return false;
5342}
5343
John Wiegley429bb272011-04-08 18:41:53 +00005344ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
5345 Expr *CastExpr, CastKind &Kind) {
Nate Begeman58d29a42009-06-26 00:50:28 +00005346 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005347
Anders Carlsson16a89042009-10-16 05:23:41 +00005348 QualType SrcTy = CastExpr->getType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005349
Nate Begeman9b10da62009-06-27 22:05:55 +00005350 // If SrcTy is a VectorType, the total size must match to explicitly cast to
5351 // an ExtVectorType.
Nate Begeman58d29a42009-06-26 00:50:28 +00005352 if (SrcTy->isVectorType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005353 if (Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy)) {
5354 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
Nate Begeman58d29a42009-06-26 00:50:28 +00005355 << DestTy << SrcTy << R;
John Wiegley429bb272011-04-08 18:41:53 +00005356 return ExprError();
5357 }
John McCall2de56d12010-08-25 11:45:40 +00005358 Kind = CK_BitCast;
John Wiegley429bb272011-04-08 18:41:53 +00005359 return Owned(CastExpr);
Nate Begeman58d29a42009-06-26 00:50:28 +00005360 }
5361
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005362 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begeman58d29a42009-06-26 00:50:28 +00005363 // conversion will take place first from scalar to elt type, and then
5364 // splat from elt type to vector.
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00005365 if (SrcTy->isPointerType())
5366 return Diag(R.getBegin(),
5367 diag::err_invalid_conversion_between_vector_and_scalar)
5368 << DestTy << SrcTy << R;
Eli Friedman73c39ab2009-10-20 08:27:19 +00005369
5370 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +00005371 ExprResult CastExprRes = Owned(CastExpr);
5372 CastKind CK = PrepareScalarCast(*this, CastExprRes, DestElemTy);
5373 if (CastExprRes.isInvalid())
5374 return ExprError();
5375 CastExpr = ImpCastExprToType(CastExprRes.take(), DestElemTy, CK).take();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005376
John McCall2de56d12010-08-25 11:45:40 +00005377 Kind = CK_VectorSplat;
John Wiegley429bb272011-04-08 18:41:53 +00005378 return Owned(CastExpr);
Nate Begeman58d29a42009-06-26 00:50:28 +00005379}
5380
John McCall60d7b3a2010-08-24 06:29:42 +00005381ExprResult
John McCallb3d87482010-08-24 05:47:05 +00005382Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc, ParsedType Ty,
John McCall9ae2f072010-08-23 23:25:46 +00005383 SourceLocation RParenLoc, Expr *castExpr) {
5384 assert((Ty != 0) && (castExpr != 0) &&
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005385 "ActOnCastExpr(): missing type or expr");
Steve Naroff16beff82007-07-16 23:25:18 +00005386
John McCall9d125032010-01-15 18:39:57 +00005387 TypeSourceInfo *castTInfo;
5388 QualType castType = GetTypeFromParser(Ty, &castTInfo);
5389 if (!castTInfo)
John McCall42f56b52010-01-18 19:35:47 +00005390 castTInfo = Context.getTrivialTypeSourceInfo(castType);
Mike Stump1eb44332009-09-09 15:08:12 +00005391
Nate Begeman2ef13e52009-08-10 23:49:36 +00005392 // If the Expr being casted is a ParenListExpr, handle it specially.
5393 if (isa<ParenListExpr>(castExpr))
John McCall9ae2f072010-08-23 23:25:46 +00005394 return ActOnCastOfParenListExpr(S, LParenLoc, RParenLoc, castExpr,
John McCall42f56b52010-01-18 19:35:47 +00005395 castTInfo);
John McCallb042fdf2010-01-15 18:56:44 +00005396
John McCall9ae2f072010-08-23 23:25:46 +00005397 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, castExpr);
John McCallb042fdf2010-01-15 18:56:44 +00005398}
5399
John McCall60d7b3a2010-08-24 06:29:42 +00005400ExprResult
John McCallb042fdf2010-01-15 18:56:44 +00005401Sema::BuildCStyleCastExpr(SourceLocation LParenLoc, TypeSourceInfo *Ty,
John McCall9ae2f072010-08-23 23:25:46 +00005402 SourceLocation RParenLoc, Expr *castExpr) {
John McCalldaa8e4e2010-11-15 09:13:47 +00005403 CastKind Kind = CK_Invalid;
John McCallf89e55a2010-11-18 06:31:45 +00005404 ExprValueKind VK = VK_RValue;
John McCallf871d0c2010-08-07 06:22:56 +00005405 CXXCastPath BasePath;
John Wiegley429bb272011-04-08 18:41:53 +00005406 ExprResult CastResult =
5407 CheckCastTypes(SourceRange(LParenLoc, RParenLoc), Ty->getType(), castExpr,
5408 Kind, VK, BasePath);
5409 if (CastResult.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005410 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00005411 castExpr = CastResult.take();
Anders Carlsson0aebc812009-09-09 21:33:21 +00005412
John McCallf871d0c2010-08-07 06:22:56 +00005413 return Owned(CStyleCastExpr::Create(Context,
John Wiegley429bb272011-04-08 18:41:53 +00005414 Ty->getType().getNonLValueExprType(Context),
John McCallf89e55a2010-11-18 06:31:45 +00005415 VK, Kind, castExpr, &BasePath, Ty,
John McCallf871d0c2010-08-07 06:22:56 +00005416 LParenLoc, RParenLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00005417}
5418
Nate Begeman2ef13e52009-08-10 23:49:36 +00005419/// This is not an AltiVec-style cast, so turn the ParenListExpr into a sequence
5420/// of comma binary operators.
John McCall60d7b3a2010-08-24 06:29:42 +00005421ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00005422Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *expr) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00005423 ParenListExpr *E = dyn_cast<ParenListExpr>(expr);
5424 if (!E)
5425 return Owned(expr);
Mike Stump1eb44332009-09-09 15:08:12 +00005426
John McCall60d7b3a2010-08-24 06:29:42 +00005427 ExprResult Result(E->getExpr(0));
Mike Stump1eb44332009-09-09 15:08:12 +00005428
Nate Begeman2ef13e52009-08-10 23:49:36 +00005429 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
John McCall9ae2f072010-08-23 23:25:46 +00005430 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
5431 E->getExpr(i));
Mike Stump1eb44332009-09-09 15:08:12 +00005432
John McCall9ae2f072010-08-23 23:25:46 +00005433 if (Result.isInvalid()) return ExprError();
5434
5435 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
Nate Begeman2ef13e52009-08-10 23:49:36 +00005436}
5437
John McCall60d7b3a2010-08-24 06:29:42 +00005438ExprResult
Nate Begeman2ef13e52009-08-10 23:49:36 +00005439Sema::ActOnCastOfParenListExpr(Scope *S, SourceLocation LParenLoc,
John McCall9ae2f072010-08-23 23:25:46 +00005440 SourceLocation RParenLoc, Expr *Op,
John McCall42f56b52010-01-18 19:35:47 +00005441 TypeSourceInfo *TInfo) {
John McCall9ae2f072010-08-23 23:25:46 +00005442 ParenListExpr *PE = cast<ParenListExpr>(Op);
John McCall42f56b52010-01-18 19:35:47 +00005443 QualType Ty = TInfo->getType();
Anton Yartsevd06fea82011-03-27 09:32:40 +00005444 bool isVectorLiteral = false;
Mike Stump1eb44332009-09-09 15:08:12 +00005445
Anton Yartsevd06fea82011-03-27 09:32:40 +00005446 // Check for an altivec or OpenCL literal,
John Thompson8bb59a82010-06-30 22:55:51 +00005447 // i.e. all the elements are integer constants.
Nate Begeman2ef13e52009-08-10 23:49:36 +00005448 if (getLangOptions().AltiVec && Ty->isVectorType()) {
5449 if (PE->getNumExprs() == 0) {
5450 Diag(PE->getExprLoc(), diag::err_altivec_empty_initializer);
5451 return ExprError();
5452 }
John Thompson8bb59a82010-06-30 22:55:51 +00005453 if (PE->getNumExprs() == 1) {
5454 if (!PE->getExpr(0)->getType()->isVectorType())
Anton Yartsevd06fea82011-03-27 09:32:40 +00005455 isVectorLiteral = true;
John Thompson8bb59a82010-06-30 22:55:51 +00005456 }
5457 else
Anton Yartsevd06fea82011-03-27 09:32:40 +00005458 isVectorLiteral = true;
John Thompson8bb59a82010-06-30 22:55:51 +00005459 }
Nate Begeman2ef13e52009-08-10 23:49:36 +00005460
Anton Yartsevd06fea82011-03-27 09:32:40 +00005461 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
John Thompson8bb59a82010-06-30 22:55:51 +00005462 // then handle it as such.
Anton Yartsevd06fea82011-03-27 09:32:40 +00005463 if (isVectorLiteral) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00005464 llvm::SmallVector<Expr *, 8> initExprs;
Anton Yartsevd06fea82011-03-27 09:32:40 +00005465 // '(...)' form of vector initialization in AltiVec: the number of
5466 // initializers must be one or must match the size of the vector.
5467 // If a single value is specified in the initializer then it will be
5468 // replicated to all the components of the vector
5469 if (Ty->getAs<VectorType>()->getVectorKind() ==
5470 VectorType::AltiVecVector) {
5471 unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
5472 // The number of initializers must be one or must match the size of the
5473 // vector. If a single value is specified in the initializer then it will
5474 // be replicated to all the components of the vector
5475 if (PE->getNumExprs() == 1) {
5476 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
John Wiegley429bb272011-04-08 18:41:53 +00005477 ExprResult Literal = Owned(PE->getExpr(0));
5478 Literal = ImpCastExprToType(Literal.take(), ElemTy,
5479 PrepareScalarCast(*this, Literal, ElemTy));
5480 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.take());
Anton Yartsevd06fea82011-03-27 09:32:40 +00005481 }
5482 else if (PE->getNumExprs() < numElems) {
5483 Diag(PE->getExprLoc(),
5484 diag::err_incorrect_number_of_vector_initializers);
5485 return ExprError();
5486 }
5487 else
5488 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
5489 initExprs.push_back(PE->getExpr(i));
5490 }
5491 else
5492 for (unsigned i = 0, e = PE->getNumExprs(); i != e; ++i)
5493 initExprs.push_back(PE->getExpr(i));
Nate Begeman2ef13e52009-08-10 23:49:36 +00005494
5495 // FIXME: This means that pretty-printing the final AST will produce curly
5496 // braces instead of the original commas.
Ted Kremenek709210f2010-04-13 23:39:13 +00005497 InitListExpr *E = new (Context) InitListExpr(Context, LParenLoc,
5498 &initExprs[0],
Nate Begeman2ef13e52009-08-10 23:49:36 +00005499 initExprs.size(), RParenLoc);
5500 E->setType(Ty);
John McCall9ae2f072010-08-23 23:25:46 +00005501 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, E);
Nate Begeman2ef13e52009-08-10 23:49:36 +00005502 } else {
Mike Stump1eb44332009-09-09 15:08:12 +00005503 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
Nate Begeman2ef13e52009-08-10 23:49:36 +00005504 // sequence of BinOp comma operators.
John McCall60d7b3a2010-08-24 06:29:42 +00005505 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Op);
John McCall9ae2f072010-08-23 23:25:46 +00005506 if (Result.isInvalid()) return ExprError();
5507 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Result.take());
Nate Begeman2ef13e52009-08-10 23:49:36 +00005508 }
5509}
5510
John McCall60d7b3a2010-08-24 06:29:42 +00005511ExprResult Sema::ActOnParenOrParenListExpr(SourceLocation L,
Nate Begeman2ef13e52009-08-10 23:49:36 +00005512 SourceLocation R,
Fariborz Jahanianf88f7ab2009-11-25 01:26:41 +00005513 MultiExprArg Val,
John McCallb3d87482010-08-24 05:47:05 +00005514 ParsedType TypeOfCast) {
Nate Begeman2ef13e52009-08-10 23:49:36 +00005515 unsigned nexprs = Val.size();
5516 Expr **exprs = reinterpret_cast<Expr**>(Val.release());
Fariborz Jahanianf88f7ab2009-11-25 01:26:41 +00005517 assert((exprs != 0) && "ActOnParenOrParenListExpr() missing expr list");
5518 Expr *expr;
5519 if (nexprs == 1 && TypeOfCast && !TypeIsVectorType(TypeOfCast))
5520 expr = new (Context) ParenExpr(L, R, exprs[0]);
5521 else
5522 expr = new (Context) ParenListExpr(Context, L, exprs, nexprs, R);
Nate Begeman2ef13e52009-08-10 23:49:36 +00005523 return Owned(expr);
5524}
5525
Chandler Carruth82214a82011-02-18 23:54:50 +00005526/// \brief Emit a specialized diagnostic when one expression is a null pointer
5527/// constant and the other is not a pointer.
5528bool Sema::DiagnoseConditionalForNull(Expr *LHS, Expr *RHS,
5529 SourceLocation QuestionLoc) {
5530 Expr *NullExpr = LHS;
5531 Expr *NonPointerExpr = RHS;
5532 Expr::NullPointerConstantKind NullKind =
5533 NullExpr->isNullPointerConstant(Context,
5534 Expr::NPC_ValueDependentIsNotNull);
5535
5536 if (NullKind == Expr::NPCK_NotNull) {
5537 NullExpr = RHS;
5538 NonPointerExpr = LHS;
5539 NullKind =
5540 NullExpr->isNullPointerConstant(Context,
5541 Expr::NPC_ValueDependentIsNotNull);
5542 }
5543
5544 if (NullKind == Expr::NPCK_NotNull)
5545 return false;
5546
5547 if (NullKind == Expr::NPCK_ZeroInteger) {
5548 // In this case, check to make sure that we got here from a "NULL"
5549 // string in the source code.
5550 NullExpr = NullExpr->IgnoreParenImpCasts();
John McCall834e3f62011-03-08 07:59:04 +00005551 SourceLocation loc = NullExpr->getExprLoc();
5552 if (!findMacroSpelling(loc, "NULL"))
Chandler Carruth82214a82011-02-18 23:54:50 +00005553 return false;
5554 }
5555
5556 int DiagType = (NullKind == Expr::NPCK_CXX0X_nullptr);
5557 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
5558 << NonPointerExpr->getType() << DiagType
5559 << NonPointerExpr->getSourceRange();
5560 return true;
5561}
5562
Sebastian Redl28507842009-02-26 14:39:58 +00005563/// Note that lhs is not null here, even if this is the gnu "x ?: y" extension.
5564/// In that case, lhs = cond.
Chris Lattnera119a3b2009-02-18 04:38:20 +00005565/// C99 6.5.15
John Wiegley429bb272011-04-08 18:41:53 +00005566QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS, ExprResult &RHS,
John McCall56ca35d2011-02-17 10:25:35 +00005567 ExprValueKind &VK, ExprObjectKind &OK,
Chris Lattnera119a3b2009-02-18 04:38:20 +00005568 SourceLocation QuestionLoc) {
Douglas Gregorfadb53b2011-03-12 01:48:56 +00005569
John McCallfb8721c2011-04-10 19:13:55 +00005570 ExprResult lhsResult = CheckPlaceholderExpr(LHS.get());
John McCall1de4d4e2011-04-07 08:22:57 +00005571 if (!lhsResult.isUsable()) return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00005572 LHS = move(lhsResult);
Douglas Gregor7ad5d422010-11-09 21:07:58 +00005573
John McCallfb8721c2011-04-10 19:13:55 +00005574 ExprResult rhsResult = CheckPlaceholderExpr(RHS.get());
John McCall1de4d4e2011-04-07 08:22:57 +00005575 if (!rhsResult.isUsable()) return QualType();
John Wiegley429bb272011-04-08 18:41:53 +00005576 RHS = move(rhsResult);
Douglas Gregor7ad5d422010-11-09 21:07:58 +00005577
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005578 // C++ is sufficiently different to merit its own checker.
5579 if (getLangOptions().CPlusPlus)
John McCall56ca35d2011-02-17 10:25:35 +00005580 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
John McCallf89e55a2010-11-18 06:31:45 +00005581
5582 VK = VK_RValue;
John McCall09431682010-11-18 19:01:18 +00005583 OK = OK_Ordinary;
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005584
John Wiegley429bb272011-04-08 18:41:53 +00005585 Cond = UsualUnaryConversions(Cond.take());
5586 if (Cond.isInvalid())
5587 return QualType();
5588 LHS = UsualUnaryConversions(LHS.take());
5589 if (LHS.isInvalid())
5590 return QualType();
5591 RHS = UsualUnaryConversions(RHS.take());
5592 if (RHS.isInvalid())
5593 return QualType();
5594
5595 QualType CondTy = Cond.get()->getType();
5596 QualType LHSTy = LHS.get()->getType();
5597 QualType RHSTy = RHS.get()->getType();
Steve Naroffc80b4ee2007-07-16 21:54:35 +00005598
Reid Spencer5f016e22007-07-11 17:01:13 +00005599 // first, check the condition.
Sebastian Redl3201f6b2009-04-16 17:51:27 +00005600 if (!CondTy->isScalarType()) { // C99 6.5.15p2
Nate Begeman6155d732010-09-20 22:41:17 +00005601 // OpenCL: Sec 6.3.i says the condition is allowed to be a vector or scalar.
5602 // Throw an error if its not either.
5603 if (getLangOptions().OpenCL) {
5604 if (!CondTy->isVectorType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005605 Diag(Cond.get()->getLocStart(),
Nate Begeman6155d732010-09-20 22:41:17 +00005606 diag::err_typecheck_cond_expect_scalar_or_vector)
5607 << CondTy;
5608 return QualType();
5609 }
5610 }
5611 else {
John Wiegley429bb272011-04-08 18:41:53 +00005612 Diag(Cond.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar)
Nate Begeman6155d732010-09-20 22:41:17 +00005613 << CondTy;
5614 return QualType();
5615 }
Reid Spencer5f016e22007-07-11 17:01:13 +00005616 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005617
Chris Lattner70d67a92008-01-06 22:42:25 +00005618 // Now check the two expressions.
Nate Begeman2ef13e52009-08-10 23:49:36 +00005619 if (LHSTy->isVectorType() || RHSTy->isVectorType())
5620 return CheckVectorOperands(QuestionLoc, LHS, RHS);
Douglas Gregor898574e2008-12-05 23:32:09 +00005621
Nate Begeman6155d732010-09-20 22:41:17 +00005622 // OpenCL: If the condition is a vector, and both operands are scalar,
5623 // attempt to implicity convert them to the vector type to act like the
5624 // built in select.
5625 if (getLangOptions().OpenCL && CondTy->isVectorType()) {
5626 // Both operands should be of scalar type.
5627 if (!LHSTy->isScalarType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005628 Diag(LHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar)
Nate Begeman6155d732010-09-20 22:41:17 +00005629 << CondTy;
5630 return QualType();
5631 }
5632 if (!RHSTy->isScalarType()) {
John Wiegley429bb272011-04-08 18:41:53 +00005633 Diag(RHS.get()->getLocStart(), diag::err_typecheck_cond_expect_scalar)
Nate Begeman6155d732010-09-20 22:41:17 +00005634 << CondTy;
5635 return QualType();
5636 }
5637 // Implicity convert these scalars to the type of the condition.
John Wiegley429bb272011-04-08 18:41:53 +00005638 LHS = ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast);
5639 RHS = ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast);
Nate Begeman6155d732010-09-20 22:41:17 +00005640 }
5641
Chris Lattner70d67a92008-01-06 22:42:25 +00005642 // If both operands have arithmetic type, do the usual arithmetic conversions
5643 // to find a common type: C99 6.5.15p3,5.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005644 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
5645 UsualArithmeticConversions(LHS, RHS);
John Wiegley429bb272011-04-08 18:41:53 +00005646 if (LHS.isInvalid() || RHS.isInvalid())
5647 return QualType();
5648 return LHS.get()->getType();
Steve Naroffa4332e22007-07-17 00:58:39 +00005649 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005650
Chris Lattner70d67a92008-01-06 22:42:25 +00005651 // If both operands are the same structure or union type, the result is that
5652 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00005653 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
5654 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattnera21ddb32007-11-26 01:40:58 +00005655 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stumpeed9cac2009-02-19 03:04:26 +00005656 // "If both the operands have structure or union type, the result has
Chris Lattner70d67a92008-01-06 22:42:25 +00005657 // that type." This implies that CV qualifiers are dropped.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005658 return LHSTy.getUnqualifiedType();
Eli Friedmanb1d796d2009-03-23 00:24:07 +00005659 // FIXME: Type of conditional expression must be complete in C mode.
Reid Spencer5f016e22007-07-11 17:01:13 +00005660 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00005661
Chris Lattner70d67a92008-01-06 22:42:25 +00005662 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffe701c0a2008-05-12 21:44:38 +00005663 // The following || allows only one side to be void (a GCC-ism).
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005664 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
5665 if (!LHSTy->isVoidType())
John Wiegley429bb272011-04-08 18:41:53 +00005666 Diag(RHS.get()->getLocStart(), diag::ext_typecheck_cond_one_void)
5667 << RHS.get()->getSourceRange();
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005668 if (!RHSTy->isVoidType())
John Wiegley429bb272011-04-08 18:41:53 +00005669 Diag(LHS.get()->getLocStart(), diag::ext_typecheck_cond_one_void)
5670 << LHS.get()->getSourceRange();
5671 LHS = ImpCastExprToType(LHS.take(), Context.VoidTy, CK_ToVoid);
5672 RHS = ImpCastExprToType(RHS.take(), Context.VoidTy, CK_ToVoid);
Eli Friedman0e724012008-06-04 19:47:51 +00005673 return Context.VoidTy;
Steve Naroffe701c0a2008-05-12 21:44:38 +00005674 }
Steve Naroffb6d54e52008-01-08 01:11:38 +00005675 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
5676 // the type of the other operand."
Steve Naroff58f9f2c2009-07-14 18:25:06 +00005677 if ((LHSTy->isAnyPointerType() || LHSTy->isBlockPointerType()) &&
John Wiegley429bb272011-04-08 18:41:53 +00005678 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
Eli Friedman73c39ab2009-10-20 08:27:19 +00005679 // promote the null to a pointer.
John Wiegley429bb272011-04-08 18:41:53 +00005680 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_NullToPointer);
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005681 return LHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00005682 }
Steve Naroff58f9f2c2009-07-14 18:25:06 +00005683 if ((RHSTy->isAnyPointerType() || RHSTy->isBlockPointerType()) &&
John Wiegley429bb272011-04-08 18:41:53 +00005684 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) {
5685 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_NullToPointer);
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005686 return RHSTy;
Steve Naroffb6d54e52008-01-08 01:11:38 +00005687 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005688
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005689 // All objective-c pointer type analysis is done here.
5690 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
5691 QuestionLoc);
John Wiegley429bb272011-04-08 18:41:53 +00005692 if (LHS.isInvalid() || RHS.isInvalid())
5693 return QualType();
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005694 if (!compositeType.isNull())
5695 return compositeType;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005696
5697
Steve Naroff7154a772009-07-01 14:36:47 +00005698 // Handle block pointer types.
5699 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) {
5700 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
5701 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
5702 QualType destType = Context.getPointerType(Context.VoidTy);
John Wiegley429bb272011-04-08 18:41:53 +00005703 LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast);
5704 RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00005705 return destType;
5706 }
5707 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley429bb272011-04-08 18:41:53 +00005708 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Steve Naroff7154a772009-07-01 14:36:47 +00005709 return QualType();
Mike Stumpdd3e1662009-05-07 03:14:14 +00005710 }
Steve Naroff7154a772009-07-01 14:36:47 +00005711 // We have 2 block pointer types.
5712 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
5713 // Two identical block pointer types are always compatible.
Mike Stumpdd3e1662009-05-07 03:14:14 +00005714 return LHSTy;
5715 }
Steve Naroff7154a772009-07-01 14:36:47 +00005716 // The block pointer types aren't identical, continue checking.
Ted Kremenek6217b802009-07-29 21:53:49 +00005717 QualType lhptee = LHSTy->getAs<BlockPointerType>()->getPointeeType();
5718 QualType rhptee = RHSTy->getAs<BlockPointerType>()->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005719
Steve Naroff7154a772009-07-01 14:36:47 +00005720 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
5721 rhptee.getUnqualifiedType())) {
Mike Stumpdd3e1662009-05-07 03:14:14 +00005722 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00005723 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Mike Stumpdd3e1662009-05-07 03:14:14 +00005724 // In this situation, we assume void* type. No especially good
5725 // reason, but this is what gcc does, and we do have to pick
5726 // to get a consistent AST.
5727 QualType incompatTy = Context.getPointerType(Context.VoidTy);
John Wiegley429bb272011-04-08 18:41:53 +00005728 LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast);
5729 RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast);
Mike Stumpdd3e1662009-05-07 03:14:14 +00005730 return incompatTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00005731 }
Steve Naroff7154a772009-07-01 14:36:47 +00005732 // The block pointer types are compatible.
John Wiegley429bb272011-04-08 18:41:53 +00005733 LHS = ImpCastExprToType(LHS.take(), LHSTy, CK_BitCast);
5734 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Steve Naroff91588042009-04-08 17:05:15 +00005735 return LHSTy;
5736 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005737
Steve Naroff7154a772009-07-01 14:36:47 +00005738 // Check constraints for C object pointers types (C99 6.5.15p3,6).
5739 if (LHSTy->isPointerType() && RHSTy->isPointerType()) {
5740 // get the "pointed to" types
Ted Kremenek6217b802009-07-29 21:53:49 +00005741 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
5742 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroff7154a772009-07-01 14:36:47 +00005743
5744 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
5745 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
5746 // Figure out necessary qualifiers (C99 6.5.15p6)
John McCall0953e762009-09-24 19:53:00 +00005747 QualType destPointee
5748 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00005749 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00005750 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00005751 LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp);
Eli Friedman73c39ab2009-10-20 08:27:19 +00005752 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00005753 RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00005754 return destType;
5755 }
5756 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
John McCall0953e762009-09-24 19:53:00 +00005757 QualType destPointee
5758 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
Steve Naroff7154a772009-07-01 14:36:47 +00005759 QualType destType = Context.getPointerType(destPointee);
Eli Friedman73c39ab2009-10-20 08:27:19 +00005760 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00005761 RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp);
Eli Friedman73c39ab2009-10-20 08:27:19 +00005762 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00005763 LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00005764 return destType;
5765 }
5766
5767 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
5768 // Two identical pointer types are always compatible.
5769 return LHSTy;
5770 }
5771 if (!Context.typesAreCompatible(lhptee.getUnqualifiedType(),
5772 rhptee.getUnqualifiedType())) {
5773 Diag(QuestionLoc, diag::warn_typecheck_cond_incompatible_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00005774 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Steve Naroff7154a772009-07-01 14:36:47 +00005775 // In this situation, we assume void* type. No especially good
5776 // reason, but this is what gcc does, and we do have to pick
5777 // to get a consistent AST.
5778 QualType incompatTy = Context.getPointerType(Context.VoidTy);
John Wiegley429bb272011-04-08 18:41:53 +00005779 LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast);
5780 RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00005781 return incompatTy;
5782 }
5783 // The pointer types are compatible.
5784 // C99 6.5.15p6: If both operands are pointers to compatible types *or* to
5785 // differently qualified versions of compatible types, the result type is
5786 // a pointer to an appropriately qualified version of the *composite*
5787 // type.
5788 // FIXME: Need to calculate the composite type.
5789 // FIXME: Need to add qualifiers
John Wiegley429bb272011-04-08 18:41:53 +00005790 LHS = ImpCastExprToType(LHS.take(), LHSTy, CK_BitCast);
5791 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Steve Naroff7154a772009-07-01 14:36:47 +00005792 return LHSTy;
5793 }
Mike Stump1eb44332009-09-09 15:08:12 +00005794
John McCall404cd162010-11-13 01:35:44 +00005795 // GCC compatibility: soften pointer/integer mismatch. Note that
5796 // null pointers have been filtered out by this point.
Steve Naroff7154a772009-07-01 14:36:47 +00005797 if (RHSTy->isPointerType() && LHSTy->isIntegerType()) {
5798 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
John Wiegley429bb272011-04-08 18:41:53 +00005799 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5800 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_IntegralToPointer);
Steve Naroff7154a772009-07-01 14:36:47 +00005801 return RHSTy;
5802 }
5803 if (LHSTy->isPointerType() && RHSTy->isIntegerType()) {
5804 Diag(QuestionLoc, diag::warn_typecheck_cond_pointer_integer_mismatch)
John Wiegley429bb272011-04-08 18:41:53 +00005805 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
5806 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_IntegralToPointer);
Steve Naroff7154a772009-07-01 14:36:47 +00005807 return LHSTy;
5808 }
Daniel Dunbar5e155f02008-09-11 23:12:46 +00005809
Chandler Carruth82214a82011-02-18 23:54:50 +00005810 // Emit a better diagnostic if one of the expressions is a null pointer
5811 // constant and the other is not a pointer type. In this case, the user most
5812 // likely forgot to take the address of the other expression.
John Wiegley429bb272011-04-08 18:41:53 +00005813 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carruth82214a82011-02-18 23:54:50 +00005814 return QualType();
5815
Chris Lattner70d67a92008-01-06 22:42:25 +00005816 // Otherwise, the operands are not compatible.
Chris Lattnerefdc39d2009-02-18 04:28:32 +00005817 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
John Wiegley429bb272011-04-08 18:41:53 +00005818 << LHSTy << RHSTy << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00005819 return QualType();
5820}
5821
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005822/// FindCompositeObjCPointerType - Helper method to find composite type of
5823/// two objective-c pointer types of the two input expressions.
John Wiegley429bb272011-04-08 18:41:53 +00005824QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005825 SourceLocation QuestionLoc) {
John Wiegley429bb272011-04-08 18:41:53 +00005826 QualType LHSTy = LHS.get()->getType();
5827 QualType RHSTy = RHS.get()->getType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005828
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005829 // Handle things like Class and struct objc_class*. Here we case the result
5830 // to the pseudo-builtin, because that will be implicitly cast back to the
5831 // redefinition type if an attempt is made to access its fields.
5832 if (LHSTy->isObjCClassType() &&
John McCall49f4e1c2010-12-10 11:01:00 +00005833 (Context.hasSameType(RHSTy, Context.ObjCClassRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005834 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005835 return LHSTy;
5836 }
5837 if (RHSTy->isObjCClassType() &&
John McCall49f4e1c2010-12-10 11:01:00 +00005838 (Context.hasSameType(LHSTy, Context.ObjCClassRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005839 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005840 return RHSTy;
5841 }
5842 // And the same for struct objc_object* / id
5843 if (LHSTy->isObjCIdType() &&
John McCall49f4e1c2010-12-10 11:01:00 +00005844 (Context.hasSameType(RHSTy, Context.ObjCIdRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005845 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005846 return LHSTy;
5847 }
5848 if (RHSTy->isObjCIdType() &&
John McCall49f4e1c2010-12-10 11:01:00 +00005849 (Context.hasSameType(LHSTy, Context.ObjCIdRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005850 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005851 return RHSTy;
5852 }
5853 // And the same for struct objc_selector* / SEL
5854 if (Context.isObjCSelType(LHSTy) &&
John McCall49f4e1c2010-12-10 11:01:00 +00005855 (Context.hasSameType(RHSTy, Context.ObjCSelRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005856 RHS = ImpCastExprToType(RHS.take(), LHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005857 return LHSTy;
5858 }
5859 if (Context.isObjCSelType(RHSTy) &&
John McCall49f4e1c2010-12-10 11:01:00 +00005860 (Context.hasSameType(LHSTy, Context.ObjCSelRedefinitionType))) {
John Wiegley429bb272011-04-08 18:41:53 +00005861 LHS = ImpCastExprToType(LHS.take(), RHSTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005862 return RHSTy;
5863 }
5864 // Check constraints for Objective-C object pointers types.
5865 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005866
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005867 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
5868 // Two identical object pointer types are always compatible.
5869 return LHSTy;
5870 }
5871 const ObjCObjectPointerType *LHSOPT = LHSTy->getAs<ObjCObjectPointerType>();
5872 const ObjCObjectPointerType *RHSOPT = RHSTy->getAs<ObjCObjectPointerType>();
5873 QualType compositeType = LHSTy;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005874
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005875 // If both operands are interfaces and either operand can be
5876 // assigned to the other, use that type as the composite
5877 // type. This allows
5878 // xxx ? (A*) a : (B*) b
5879 // where B is a subclass of A.
5880 //
5881 // Additionally, as for assignment, if either type is 'id'
5882 // allow silent coercion. Finally, if the types are
5883 // incompatible then make sure to use 'id' as the composite
5884 // type so the result is acceptable for sending messages to.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005885
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005886 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
5887 // It could return the composite type.
5888 if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
5889 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
5890 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
5891 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
5892 } else if ((LHSTy->isObjCQualifiedIdType() ||
5893 RHSTy->isObjCQualifiedIdType()) &&
5894 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
5895 // Need to handle "id<xx>" explicitly.
5896 // GCC allows qualified id and any Objective-C type to devolve to
5897 // id. Currently localizing to here until clear this should be
5898 // part of ObjCQualifiedIdTypesAreCompatible.
5899 compositeType = Context.getObjCIdType();
5900 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
5901 compositeType = Context.getObjCIdType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00005902 } else if (!(compositeType =
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005903 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull())
5904 ;
5905 else {
5906 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
5907 << LHSTy << RHSTy
John Wiegley429bb272011-04-08 18:41:53 +00005908 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005909 QualType incompatTy = Context.getObjCIdType();
John Wiegley429bb272011-04-08 18:41:53 +00005910 LHS = ImpCastExprToType(LHS.take(), incompatTy, CK_BitCast);
5911 RHS = ImpCastExprToType(RHS.take(), incompatTy, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005912 return incompatTy;
5913 }
5914 // The object pointer types are compatible.
John Wiegley429bb272011-04-08 18:41:53 +00005915 LHS = ImpCastExprToType(LHS.take(), compositeType, CK_BitCast);
5916 RHS = ImpCastExprToType(RHS.take(), compositeType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005917 return compositeType;
5918 }
5919 // Check Objective-C object pointer types and 'void *'
5920 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
5921 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
5922 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
5923 QualType destPointee
5924 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
5925 QualType destType = Context.getPointerType(destPointee);
5926 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00005927 LHS = ImpCastExprToType(LHS.take(), destType, CK_NoOp);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005928 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00005929 RHS = ImpCastExprToType(RHS.take(), destType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005930 return destType;
5931 }
5932 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
5933 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
5934 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
5935 QualType destPointee
5936 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
5937 QualType destType = Context.getPointerType(destPointee);
5938 // Add qualifiers if necessary.
John Wiegley429bb272011-04-08 18:41:53 +00005939 RHS = ImpCastExprToType(RHS.take(), destType, CK_NoOp);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005940 // Promote to void*.
John Wiegley429bb272011-04-08 18:41:53 +00005941 LHS = ImpCastExprToType(LHS.take(), destType, CK_BitCast);
Fariborz Jahanianeebc4752009-12-10 19:47:41 +00005942 return destType;
5943 }
5944 return QualType();
5945}
5946
Steve Narofff69936d2007-09-16 03:34:24 +00005947/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Reid Spencer5f016e22007-07-11 17:01:13 +00005948/// in the case of a the GNU conditional expr extension.
John McCall60d7b3a2010-08-24 06:29:42 +00005949ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
John McCall56ca35d2011-02-17 10:25:35 +00005950 SourceLocation ColonLoc,
5951 Expr *CondExpr, Expr *LHSExpr,
5952 Expr *RHSExpr) {
Chris Lattnera21ddb32007-11-26 01:40:58 +00005953 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
5954 // was the condition.
John McCall56ca35d2011-02-17 10:25:35 +00005955 OpaqueValueExpr *opaqueValue = 0;
5956 Expr *commonExpr = 0;
5957 if (LHSExpr == 0) {
5958 commonExpr = CondExpr;
5959
5960 // We usually want to apply unary conversions *before* saving, except
5961 // in the special case of a C++ l-value conditional.
5962 if (!(getLangOptions().CPlusPlus
5963 && !commonExpr->isTypeDependent()
5964 && commonExpr->getValueKind() == RHSExpr->getValueKind()
5965 && commonExpr->isGLValue()
5966 && commonExpr->isOrdinaryOrBitFieldObject()
5967 && RHSExpr->isOrdinaryOrBitFieldObject()
5968 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00005969 ExprResult commonRes = UsualUnaryConversions(commonExpr);
5970 if (commonRes.isInvalid())
5971 return ExprError();
5972 commonExpr = commonRes.take();
John McCall56ca35d2011-02-17 10:25:35 +00005973 }
5974
5975 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
5976 commonExpr->getType(),
5977 commonExpr->getValueKind(),
5978 commonExpr->getObjectKind());
5979 LHSExpr = CondExpr = opaqueValue;
Fariborz Jahanianf9b949f2010-08-31 18:02:20 +00005980 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005981
John McCallf89e55a2010-11-18 06:31:45 +00005982 ExprValueKind VK = VK_RValue;
John McCall09431682010-11-18 19:01:18 +00005983 ExprObjectKind OK = OK_Ordinary;
John Wiegley429bb272011-04-08 18:41:53 +00005984 ExprResult Cond = Owned(CondExpr), LHS = Owned(LHSExpr), RHS = Owned(RHSExpr);
5985 QualType result = CheckConditionalOperands(Cond, LHS, RHS,
John McCall56ca35d2011-02-17 10:25:35 +00005986 VK, OK, QuestionLoc);
John Wiegley429bb272011-04-08 18:41:53 +00005987 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
5988 RHS.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00005989 return ExprError();
5990
John McCall56ca35d2011-02-17 10:25:35 +00005991 if (!commonExpr)
John Wiegley429bb272011-04-08 18:41:53 +00005992 return Owned(new (Context) ConditionalOperator(Cond.take(), QuestionLoc,
5993 LHS.take(), ColonLoc,
5994 RHS.take(), result, VK, OK));
John McCall56ca35d2011-02-17 10:25:35 +00005995
5996 return Owned(new (Context)
John Wiegley429bb272011-04-08 18:41:53 +00005997 BinaryConditionalOperator(commonExpr, opaqueValue, Cond.take(), LHS.take(),
5998 RHS.take(), QuestionLoc, ColonLoc, result, VK, OK));
Reid Spencer5f016e22007-07-11 17:01:13 +00005999}
6000
John McCalle4be87e2011-01-31 23:13:11 +00006001// checkPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stumpeed9cac2009-02-19 03:04:26 +00006002// being closely modeled after the C99 spec:-). The odd characteristic of this
Reid Spencer5f016e22007-07-11 17:01:13 +00006003// routine is it effectively iqnores the qualifiers on the top level pointee.
6004// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
6005// FIXME: add a couple examples in this comment.
John McCalle4be87e2011-01-31 23:13:11 +00006006static Sema::AssignConvertType
6007checkPointerTypesForAssignment(Sema &S, QualType lhsType, QualType rhsType) {
6008 assert(lhsType.isCanonical() && "LHS not canonicalized!");
6009 assert(rhsType.isCanonical() && "RHS not canonicalized!");
Mike Stumpeed9cac2009-02-19 03:04:26 +00006010
Reid Spencer5f016e22007-07-11 17:01:13 +00006011 // get the "pointed to" type (ignoring qualifiers at the top level)
John McCall86c05f32011-02-01 00:10:29 +00006012 const Type *lhptee, *rhptee;
6013 Qualifiers lhq, rhq;
6014 llvm::tie(lhptee, lhq) = cast<PointerType>(lhsType)->getPointeeType().split();
6015 llvm::tie(rhptee, rhq) = cast<PointerType>(rhsType)->getPointeeType().split();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006016
John McCalle4be87e2011-01-31 23:13:11 +00006017 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006018
6019 // C99 6.5.16.1p1: This following citation is common to constraints
6020 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
6021 // qualifiers of the type *pointed to* by the right;
John McCall86c05f32011-02-01 00:10:29 +00006022 Qualifiers lq;
6023
6024 if (!lhq.compatiblyIncludes(rhq)) {
6025 // Treat address-space mismatches as fatal. TODO: address subspaces
6026 if (lhq.getAddressSpace() != rhq.getAddressSpace())
6027 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6028
John McCall22348732011-03-26 02:56:45 +00006029 // It's okay to add or remove GC qualifiers when converting to
6030 // and from void*.
6031 else if (lhq.withoutObjCGCAttr().compatiblyIncludes(rhq.withoutObjCGCAttr())
6032 && (lhptee->isVoidType() || rhptee->isVoidType()))
6033 ; // keep old
6034
John McCall86c05f32011-02-01 00:10:29 +00006035 // For GCC compatibility, other qualifier mismatches are treated
6036 // as still compatible in C.
6037 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
6038 }
Reid Spencer5f016e22007-07-11 17:01:13 +00006039
Mike Stumpeed9cac2009-02-19 03:04:26 +00006040 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
6041 // incomplete type and the other is a pointer to a qualified or unqualified
Reid Spencer5f016e22007-07-11 17:01:13 +00006042 // version of void...
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006043 if (lhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00006044 if (rhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00006045 return ConvTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006046
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006047 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00006048 assert(rhptee->isFunctionType());
John McCalle4be87e2011-01-31 23:13:11 +00006049 return Sema::FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006050 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006051
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006052 if (rhptee->isVoidType()) {
Chris Lattnerd805bec2008-04-02 06:59:01 +00006053 if (lhptee->isIncompleteOrObjectType())
Chris Lattner5cf216b2008-01-04 18:04:52 +00006054 return ConvTy;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006055
6056 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerd805bec2008-04-02 06:59:01 +00006057 assert(lhptee->isFunctionType());
John McCalle4be87e2011-01-31 23:13:11 +00006058 return Sema::FunctionVoidPointer;
Chris Lattnerbfe639e2008-01-03 22:56:36 +00006059 }
John McCall86c05f32011-02-01 00:10:29 +00006060
Mike Stumpeed9cac2009-02-19 03:04:26 +00006061 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Reid Spencer5f016e22007-07-11 17:01:13 +00006062 // unqualified versions of compatible types, ...
John McCall86c05f32011-02-01 00:10:29 +00006063 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
6064 if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006065 // Check if the pointee types are compatible ignoring the sign.
6066 // We explicitly check for char so that we catch "char" vs
6067 // "unsigned char" on systems where "char" is unsigned.
Chris Lattner6a2b9262009-10-17 20:33:28 +00006068 if (lhptee->isCharType())
John McCall86c05f32011-02-01 00:10:29 +00006069 ltrans = S.Context.UnsignedCharTy;
Douglas Gregorf6094622010-07-23 15:58:24 +00006070 else if (lhptee->hasSignedIntegerRepresentation())
John McCall86c05f32011-02-01 00:10:29 +00006071 ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006072
Chris Lattner6a2b9262009-10-17 20:33:28 +00006073 if (rhptee->isCharType())
John McCall86c05f32011-02-01 00:10:29 +00006074 rtrans = S.Context.UnsignedCharTy;
Douglas Gregorf6094622010-07-23 15:58:24 +00006075 else if (rhptee->hasSignedIntegerRepresentation())
John McCall86c05f32011-02-01 00:10:29 +00006076 rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
Chris Lattner6a2b9262009-10-17 20:33:28 +00006077
John McCall86c05f32011-02-01 00:10:29 +00006078 if (ltrans == rtrans) {
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006079 // Types are compatible ignoring the sign. Qualifier incompatibility
6080 // takes priority over sign incompatibility because the sign
6081 // warning can be disabled.
John McCalle4be87e2011-01-31 23:13:11 +00006082 if (ConvTy != Sema::Compatible)
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006083 return ConvTy;
John McCall86c05f32011-02-01 00:10:29 +00006084
John McCalle4be87e2011-01-31 23:13:11 +00006085 return Sema::IncompatiblePointerSign;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006086 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006087
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00006088 // If we are a multi-level pointer, it's possible that our issue is simply
6089 // one of qualification - e.g. char ** -> const char ** is not allowed. If
6090 // the eventual target type is the same and the pointers have the same
6091 // level of indirection, this must be the issue.
John McCalle4be87e2011-01-31 23:13:11 +00006092 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00006093 do {
John McCall86c05f32011-02-01 00:10:29 +00006094 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
6095 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
John McCalle4be87e2011-01-31 23:13:11 +00006096 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006097
John McCall86c05f32011-02-01 00:10:29 +00006098 if (lhptee == rhptee)
John McCalle4be87e2011-01-31 23:13:11 +00006099 return Sema::IncompatibleNestedPointerQualifiers;
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00006100 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006101
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006102 // General pointer incompatibility takes priority over qualifiers.
John McCalle4be87e2011-01-31 23:13:11 +00006103 return Sema::IncompatiblePointer;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00006104 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00006105 return ConvTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00006106}
6107
John McCalle4be87e2011-01-31 23:13:11 +00006108/// checkBlockPointerTypesForAssignment - This routine determines whether two
Steve Naroff1c7d0672008-09-04 15:10:53 +00006109/// block pointer types are compatible or whether a block and normal pointer
6110/// are compatible. It is more restrict than comparing two function pointer
6111// types.
John McCalle4be87e2011-01-31 23:13:11 +00006112static Sema::AssignConvertType
6113checkBlockPointerTypesForAssignment(Sema &S, QualType lhsType,
6114 QualType rhsType) {
6115 assert(lhsType.isCanonical() && "LHS not canonicalized!");
6116 assert(rhsType.isCanonical() && "RHS not canonicalized!");
6117
Steve Naroff1c7d0672008-09-04 15:10:53 +00006118 QualType lhptee, rhptee;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006119
Steve Naroff1c7d0672008-09-04 15:10:53 +00006120 // get the "pointed to" type (ignoring qualifiers at the top level)
John McCalle4be87e2011-01-31 23:13:11 +00006121 lhptee = cast<BlockPointerType>(lhsType)->getPointeeType();
6122 rhptee = cast<BlockPointerType>(rhsType)->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006123
John McCalle4be87e2011-01-31 23:13:11 +00006124 // In C++, the types have to match exactly.
6125 if (S.getLangOptions().CPlusPlus)
6126 return Sema::IncompatibleBlockPointer;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006127
John McCalle4be87e2011-01-31 23:13:11 +00006128 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006129
Steve Naroff1c7d0672008-09-04 15:10:53 +00006130 // For blocks we enforce that qualifiers are identical.
John McCalle4be87e2011-01-31 23:13:11 +00006131 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
6132 ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006133
John McCalle4be87e2011-01-31 23:13:11 +00006134 if (!S.Context.typesAreBlockPointerCompatible(lhsType, rhsType))
6135 return Sema::IncompatibleBlockPointer;
6136
Steve Naroff1c7d0672008-09-04 15:10:53 +00006137 return ConvTy;
6138}
6139
John McCalle4be87e2011-01-31 23:13:11 +00006140/// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00006141/// for assignment compatibility.
John McCalle4be87e2011-01-31 23:13:11 +00006142static Sema::AssignConvertType
6143checkObjCPointerTypesForAssignment(Sema &S, QualType lhsType, QualType rhsType) {
6144 assert(lhsType.isCanonical() && "LHS was not canonicalized!");
6145 assert(rhsType.isCanonical() && "RHS was not canonicalized!");
6146
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00006147 if (lhsType->isObjCBuiltinType()) {
6148 // Class is not compatible with ObjC object pointers.
Fariborz Jahanian528adb12010-03-24 21:00:27 +00006149 if (lhsType->isObjCClassType() && !rhsType->isObjCBuiltinType() &&
6150 !rhsType->isObjCQualifiedClassType())
John McCalle4be87e2011-01-31 23:13:11 +00006151 return Sema::IncompatiblePointer;
6152 return Sema::Compatible;
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00006153 }
6154 if (rhsType->isObjCBuiltinType()) {
6155 // Class is not compatible with ObjC object pointers.
Fariborz Jahanian528adb12010-03-24 21:00:27 +00006156 if (rhsType->isObjCClassType() && !lhsType->isObjCBuiltinType() &&
6157 !lhsType->isObjCQualifiedClassType())
John McCalle4be87e2011-01-31 23:13:11 +00006158 return Sema::IncompatiblePointer;
6159 return Sema::Compatible;
Fariborz Jahaniand4c60902010-03-19 18:06:10 +00006160 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006161 QualType lhptee =
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00006162 lhsType->getAs<ObjCObjectPointerType>()->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006163 QualType rhptee =
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00006164 rhsType->getAs<ObjCObjectPointerType>()->getPointeeType();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006165
John McCalle4be87e2011-01-31 23:13:11 +00006166 if (!lhptee.isAtLeastAsQualifiedAs(rhptee))
6167 return Sema::CompatiblePointerDiscardsQualifiers;
6168
6169 if (S.Context.typesAreCompatible(lhsType, rhsType))
6170 return Sema::Compatible;
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00006171 if (lhsType->isObjCQualifiedIdType() || rhsType->isObjCQualifiedIdType())
John McCalle4be87e2011-01-31 23:13:11 +00006172 return Sema::IncompatibleObjCQualifiedId;
6173 return Sema::IncompatiblePointer;
Fariborz Jahanian52efc3f2009-12-08 18:24:49 +00006174}
6175
John McCall1c23e912010-11-16 02:32:08 +00006176Sema::AssignConvertType
Douglas Gregorb608b982011-01-28 02:26:04 +00006177Sema::CheckAssignmentConstraints(SourceLocation Loc,
6178 QualType lhsType, QualType rhsType) {
John McCall1c23e912010-11-16 02:32:08 +00006179 // Fake up an opaque expression. We don't actually care about what
6180 // cast operations are required, so if CheckAssignmentConstraints
6181 // adds casts to this they'll be wasted, but fortunately that doesn't
6182 // usually happen on valid code.
Douglas Gregorb608b982011-01-28 02:26:04 +00006183 OpaqueValueExpr rhs(Loc, rhsType, VK_RValue);
John Wiegley429bb272011-04-08 18:41:53 +00006184 ExprResult rhsPtr = &rhs;
John McCall1c23e912010-11-16 02:32:08 +00006185 CastKind K = CK_Invalid;
6186
6187 return CheckAssignmentConstraints(lhsType, rhsPtr, K);
6188}
6189
Mike Stumpeed9cac2009-02-19 03:04:26 +00006190/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
6191/// has code to accommodate several GCC extensions when type checking
Reid Spencer5f016e22007-07-11 17:01:13 +00006192/// pointers. Here are some objectionable examples that GCC considers warnings:
6193///
6194/// int a, *pint;
6195/// short *pshort;
6196/// struct foo *pfoo;
6197///
6198/// pint = pshort; // warning: assignment from incompatible pointer type
6199/// a = pint; // warning: assignment makes integer from pointer without a cast
6200/// pint = a; // warning: assignment makes pointer from integer without a cast
6201/// pint = pfoo; // warning: assignment from incompatible pointer type
6202///
6203/// As a result, the code for dealing with pointers is more complex than the
Mike Stumpeed9cac2009-02-19 03:04:26 +00006204/// C99 spec dictates.
Reid Spencer5f016e22007-07-11 17:01:13 +00006205///
John McCalldaa8e4e2010-11-15 09:13:47 +00006206/// Sets 'Kind' for any result kind except Incompatible.
Chris Lattner5cf216b2008-01-04 18:04:52 +00006207Sema::AssignConvertType
John Wiegley429bb272011-04-08 18:41:53 +00006208Sema::CheckAssignmentConstraints(QualType lhsType, ExprResult &rhs,
John McCalldaa8e4e2010-11-15 09:13:47 +00006209 CastKind &Kind) {
John Wiegley429bb272011-04-08 18:41:53 +00006210 QualType rhsType = rhs.get()->getType();
John McCall1c23e912010-11-16 02:32:08 +00006211
Chris Lattnerfc144e22008-01-04 23:18:45 +00006212 // Get canonical types. We're not formatting these types, just comparing
6213 // them.
Chris Lattnerb77792e2008-07-26 22:17:49 +00006214 lhsType = Context.getCanonicalType(lhsType).getUnqualifiedType();
6215 rhsType = Context.getCanonicalType(rhsType).getUnqualifiedType();
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006216
John McCallb6cfa242011-01-31 22:28:28 +00006217 // Common case: no conversion required.
John McCalldaa8e4e2010-11-15 09:13:47 +00006218 if (lhsType == rhsType) {
6219 Kind = CK_NoOp;
John McCalldaa8e4e2010-11-15 09:13:47 +00006220 return Compatible;
David Chisnall0f436562009-08-17 16:35:33 +00006221 }
6222
Douglas Gregor9d293df2008-10-28 00:22:11 +00006223 // If the left-hand side is a reference type, then we are in a
6224 // (rare!) case where we've allowed the use of references in C,
6225 // e.g., as a parameter type in a built-in function. In this case,
6226 // just make sure that the type referenced is compatible with the
6227 // right-hand side type. The caller is responsible for adjusting
6228 // lhsType so that the resulting expression does not have reference
6229 // type.
Ted Kremenek6217b802009-07-29 21:53:49 +00006230 if (const ReferenceType *lhsTypeRef = lhsType->getAs<ReferenceType>()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00006231 if (Context.typesAreCompatible(lhsTypeRef->getPointeeType(), rhsType)) {
6232 Kind = CK_LValueBitCast;
Anders Carlsson793680e2007-10-12 23:56:29 +00006233 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006234 }
Chris Lattnerfc144e22008-01-04 23:18:45 +00006235 return Incompatible;
Fariborz Jahanian411f3732007-12-19 17:45:58 +00006236 }
John McCallb6cfa242011-01-31 22:28:28 +00006237
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006238 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
6239 // to the same ExtVector type.
6240 if (lhsType->isExtVectorType()) {
6241 if (rhsType->isExtVectorType())
John McCalldaa8e4e2010-11-15 09:13:47 +00006242 return Incompatible;
6243 if (rhsType->isArithmeticType()) {
John McCall1c23e912010-11-16 02:32:08 +00006244 // CK_VectorSplat does T -> vector T, so first cast to the
6245 // element type.
6246 QualType elType = cast<ExtVectorType>(lhsType)->getElementType();
6247 if (elType != rhsType) {
6248 Kind = PrepareScalarCast(*this, rhs, elType);
John Wiegley429bb272011-04-08 18:41:53 +00006249 rhs = ImpCastExprToType(rhs.take(), elType, Kind);
John McCall1c23e912010-11-16 02:32:08 +00006250 }
6251 Kind = CK_VectorSplat;
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006252 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006253 }
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006254 }
Mike Stump1eb44332009-09-09 15:08:12 +00006255
John McCallb6cfa242011-01-31 22:28:28 +00006256 // Conversions to or from vector type.
Nate Begemanbe2341d2008-07-14 18:02:46 +00006257 if (lhsType->isVectorType() || rhsType->isVectorType()) {
Douglas Gregor255210e2010-08-06 10:14:59 +00006258 if (lhsType->isVectorType() && rhsType->isVectorType()) {
Bob Wilsonde3deea2010-12-02 00:25:15 +00006259 // Allow assignments of an AltiVec vector type to an equivalent GCC
6260 // vector type and vice versa
6261 if (Context.areCompatibleVectorTypes(lhsType, rhsType)) {
6262 Kind = CK_BitCast;
6263 return Compatible;
6264 }
6265
Douglas Gregor255210e2010-08-06 10:14:59 +00006266 // If we are allowing lax vector conversions, and LHS and RHS are both
6267 // vectors, the total size only needs to be the same. This is a bitcast;
6268 // no bits are changed but the result type is different.
6269 if (getLangOptions().LaxVectorConversions &&
John McCalldaa8e4e2010-11-15 09:13:47 +00006270 (Context.getTypeSize(lhsType) == Context.getTypeSize(rhsType))) {
John McCall0c6d28d2010-11-15 10:08:00 +00006271 Kind = CK_BitCast;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006272 return IncompatibleVectors;
John McCalldaa8e4e2010-11-15 09:13:47 +00006273 }
Chris Lattnere8b3e962008-01-04 23:32:24 +00006274 }
6275 return Incompatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00006276 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006277
John McCallb6cfa242011-01-31 22:28:28 +00006278 // Arithmetic conversions.
Douglas Gregor88623ad2010-05-23 21:53:47 +00006279 if (lhsType->isArithmeticType() && rhsType->isArithmeticType() &&
John McCalldaa8e4e2010-11-15 09:13:47 +00006280 !(getLangOptions().CPlusPlus && lhsType->isEnumeralType())) {
John McCall1c23e912010-11-16 02:32:08 +00006281 Kind = PrepareScalarCast(*this, rhs, lhsType);
Reid Spencer5f016e22007-07-11 17:01:13 +00006282 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006283 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006284
John McCallb6cfa242011-01-31 22:28:28 +00006285 // Conversions to normal pointers.
6286 if (const PointerType *lhsPointer = dyn_cast<PointerType>(lhsType)) {
6287 // U* -> T*
John McCalldaa8e4e2010-11-15 09:13:47 +00006288 if (isa<PointerType>(rhsType)) {
6289 Kind = CK_BitCast;
John McCalle4be87e2011-01-31 23:13:11 +00006290 return checkPointerTypesForAssignment(*this, lhsType, rhsType);
John McCalldaa8e4e2010-11-15 09:13:47 +00006291 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006292
John McCallb6cfa242011-01-31 22:28:28 +00006293 // int -> T*
6294 if (rhsType->isIntegerType()) {
6295 Kind = CK_IntegralToPointer; // FIXME: null?
6296 return IntToPointer;
Steve Naroff14108da2009-07-10 23:34:53 +00006297 }
John McCallb6cfa242011-01-31 22:28:28 +00006298
6299 // C pointers are not compatible with ObjC object pointers,
6300 // with two exceptions:
6301 if (isa<ObjCObjectPointerType>(rhsType)) {
6302 // - conversions to void*
6303 if (lhsPointer->getPointeeType()->isVoidType()) {
6304 Kind = CK_AnyPointerToObjCPointerCast;
6305 return Compatible;
6306 }
6307
6308 // - conversions from 'Class' to the redefinition type
6309 if (rhsType->isObjCClassType() &&
6310 Context.hasSameType(lhsType, Context.ObjCClassRedefinitionType)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00006311 Kind = CK_BitCast;
Douglas Gregor63a94902008-11-27 00:44:28 +00006312 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006313 }
Steve Naroffb4406862008-09-29 18:10:17 +00006314
John McCallb6cfa242011-01-31 22:28:28 +00006315 Kind = CK_BitCast;
6316 return IncompatiblePointer;
6317 }
6318
6319 // U^ -> void*
6320 if (rhsType->getAs<BlockPointerType>()) {
6321 if (lhsPointer->getPointeeType()->isVoidType()) {
6322 Kind = CK_BitCast;
Steve Naroffb4406862008-09-29 18:10:17 +00006323 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006324 }
Steve Naroffb4406862008-09-29 18:10:17 +00006325 }
John McCallb6cfa242011-01-31 22:28:28 +00006326
Steve Naroff1c7d0672008-09-04 15:10:53 +00006327 return Incompatible;
6328 }
6329
John McCallb6cfa242011-01-31 22:28:28 +00006330 // Conversions to block pointers.
Steve Naroff1c7d0672008-09-04 15:10:53 +00006331 if (isa<BlockPointerType>(lhsType)) {
John McCallb6cfa242011-01-31 22:28:28 +00006332 // U^ -> T^
6333 if (rhsType->isBlockPointerType()) {
6334 Kind = CK_AnyPointerToBlockPointerCast;
John McCalle4be87e2011-01-31 23:13:11 +00006335 return checkBlockPointerTypesForAssignment(*this, lhsType, rhsType);
John McCallb6cfa242011-01-31 22:28:28 +00006336 }
6337
6338 // int or null -> T^
John McCalldaa8e4e2010-11-15 09:13:47 +00006339 if (rhsType->isIntegerType()) {
6340 Kind = CK_IntegralToPointer; // FIXME: null
Eli Friedmand8f4f432009-02-25 04:20:42 +00006341 return IntToBlockPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00006342 }
6343
John McCallb6cfa242011-01-31 22:28:28 +00006344 // id -> T^
6345 if (getLangOptions().ObjC1 && rhsType->isObjCIdType()) {
6346 Kind = CK_AnyPointerToBlockPointerCast;
Steve Naroffb4406862008-09-29 18:10:17 +00006347 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00006348 }
Steve Naroffb4406862008-09-29 18:10:17 +00006349
John McCallb6cfa242011-01-31 22:28:28 +00006350 // void* -> T^
John McCalldaa8e4e2010-11-15 09:13:47 +00006351 if (const PointerType *RHSPT = rhsType->getAs<PointerType>())
John McCallb6cfa242011-01-31 22:28:28 +00006352 if (RHSPT->getPointeeType()->isVoidType()) {
6353 Kind = CK_AnyPointerToBlockPointerCast;
Douglas Gregor63a94902008-11-27 00:44:28 +00006354 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00006355 }
John McCalldaa8e4e2010-11-15 09:13:47 +00006356
Chris Lattnerfc144e22008-01-04 23:18:45 +00006357 return Incompatible;
6358 }
6359
John McCallb6cfa242011-01-31 22:28:28 +00006360 // Conversions to Objective-C pointers.
Steve Naroff14108da2009-07-10 23:34:53 +00006361 if (isa<ObjCObjectPointerType>(lhsType)) {
John McCallb6cfa242011-01-31 22:28:28 +00006362 // A* -> B*
6363 if (rhsType->isObjCObjectPointerType()) {
6364 Kind = CK_BitCast;
John McCalle4be87e2011-01-31 23:13:11 +00006365 return checkObjCPointerTypesForAssignment(*this, lhsType, rhsType);
John McCallb6cfa242011-01-31 22:28:28 +00006366 }
6367
6368 // int or null -> A*
John McCalldaa8e4e2010-11-15 09:13:47 +00006369 if (rhsType->isIntegerType()) {
6370 Kind = CK_IntegralToPointer; // FIXME: null
Steve Naroff14108da2009-07-10 23:34:53 +00006371 return IntToPointer;
John McCalldaa8e4e2010-11-15 09:13:47 +00006372 }
6373
John McCallb6cfa242011-01-31 22:28:28 +00006374 // In general, C pointers are not compatible with ObjC object pointers,
6375 // with two exceptions:
Steve Naroff14108da2009-07-10 23:34:53 +00006376 if (isa<PointerType>(rhsType)) {
John McCallb6cfa242011-01-31 22:28:28 +00006377 // - conversions from 'void*'
6378 if (rhsType->isVoidPointerType()) {
6379 Kind = CK_AnyPointerToObjCPointerCast;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00006380 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00006381 }
6382
6383 // - conversions to 'Class' from its redefinition type
6384 if (lhsType->isObjCClassType() &&
6385 Context.hasSameType(rhsType, Context.ObjCClassRedefinitionType)) {
6386 Kind = CK_BitCast;
6387 return Compatible;
6388 }
6389
6390 Kind = CK_AnyPointerToObjCPointerCast;
Steve Naroff67ef8ea2009-07-20 17:56:53 +00006391 return IncompatiblePointer;
Steve Naroff14108da2009-07-10 23:34:53 +00006392 }
John McCallb6cfa242011-01-31 22:28:28 +00006393
6394 // T^ -> A*
6395 if (rhsType->isBlockPointerType()) {
6396 Kind = CK_AnyPointerToObjCPointerCast;
Steve Naroff14108da2009-07-10 23:34:53 +00006397 return Compatible;
John McCallb6cfa242011-01-31 22:28:28 +00006398 }
6399
Steve Naroff14108da2009-07-10 23:34:53 +00006400 return Incompatible;
6401 }
John McCallb6cfa242011-01-31 22:28:28 +00006402
6403 // Conversions from pointers that are not covered by the above.
Chris Lattner78eca282008-04-07 06:49:41 +00006404 if (isa<PointerType>(rhsType)) {
John McCallb6cfa242011-01-31 22:28:28 +00006405 // T* -> _Bool
John McCalldaa8e4e2010-11-15 09:13:47 +00006406 if (lhsType == Context.BoolTy) {
6407 Kind = CK_PointerToBoolean;
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006408 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006409 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006410
John McCallb6cfa242011-01-31 22:28:28 +00006411 // T* -> int
John McCalldaa8e4e2010-11-15 09:13:47 +00006412 if (lhsType->isIntegerType()) {
6413 Kind = CK_PointerToIntegral;
Chris Lattnerb7b61152008-01-04 18:22:42 +00006414 return PointerToInt;
John McCalldaa8e4e2010-11-15 09:13:47 +00006415 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006416
Chris Lattnerfc144e22008-01-04 23:18:45 +00006417 return Incompatible;
Chris Lattnerfc144e22008-01-04 23:18:45 +00006418 }
John McCallb6cfa242011-01-31 22:28:28 +00006419
6420 // Conversions from Objective-C pointers that are not covered by the above.
Steve Naroff14108da2009-07-10 23:34:53 +00006421 if (isa<ObjCObjectPointerType>(rhsType)) {
John McCallb6cfa242011-01-31 22:28:28 +00006422 // T* -> _Bool
John McCalldaa8e4e2010-11-15 09:13:47 +00006423 if (lhsType == Context.BoolTy) {
6424 Kind = CK_PointerToBoolean;
Steve Naroff14108da2009-07-10 23:34:53 +00006425 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006426 }
Steve Naroff14108da2009-07-10 23:34:53 +00006427
John McCallb6cfa242011-01-31 22:28:28 +00006428 // T* -> int
John McCalldaa8e4e2010-11-15 09:13:47 +00006429 if (lhsType->isIntegerType()) {
6430 Kind = CK_PointerToIntegral;
Steve Naroff14108da2009-07-10 23:34:53 +00006431 return PointerToInt;
John McCalldaa8e4e2010-11-15 09:13:47 +00006432 }
6433
Steve Naroff14108da2009-07-10 23:34:53 +00006434 return Incompatible;
6435 }
Eli Friedmanf8f873d2008-05-30 18:07:22 +00006436
John McCallb6cfa242011-01-31 22:28:28 +00006437 // struct A -> struct B
Chris Lattnerfc144e22008-01-04 23:18:45 +00006438 if (isa<TagType>(lhsType) && isa<TagType>(rhsType)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00006439 if (Context.typesAreCompatible(lhsType, rhsType)) {
6440 Kind = CK_NoOp;
Reid Spencer5f016e22007-07-11 17:01:13 +00006441 return Compatible;
John McCalldaa8e4e2010-11-15 09:13:47 +00006442 }
Reid Spencer5f016e22007-07-11 17:01:13 +00006443 }
John McCallb6cfa242011-01-31 22:28:28 +00006444
Reid Spencer5f016e22007-07-11 17:01:13 +00006445 return Incompatible;
6446}
6447
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006448/// \brief Constructs a transparent union from an expression that is
6449/// used to initialize the transparent union.
John Wiegley429bb272011-04-08 18:41:53 +00006450static void ConstructTransparentUnion(Sema &S, ASTContext &C, ExprResult &EResult,
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006451 QualType UnionType, FieldDecl *Field) {
6452 // Build an initializer list that designates the appropriate member
6453 // of the transparent union.
John Wiegley429bb272011-04-08 18:41:53 +00006454 Expr *E = EResult.take();
Ted Kremenek709210f2010-04-13 23:39:13 +00006455 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
Ted Kremenekba7bc552010-02-19 01:50:18 +00006456 &E, 1,
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006457 SourceLocation());
6458 Initializer->setType(UnionType);
6459 Initializer->setInitializedFieldInUnion(Field);
6460
6461 // Build a compound literal constructing a value of the transparent
6462 // union type from this initializer list.
John McCall42f56b52010-01-18 19:35:47 +00006463 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
John Wiegley429bb272011-04-08 18:41:53 +00006464 EResult = S.Owned(
6465 new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
6466 VK_RValue, Initializer, false));
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006467}
6468
6469Sema::AssignConvertType
John Wiegley429bb272011-04-08 18:41:53 +00006470Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType, ExprResult &rExpr) {
6471 QualType FromType = rExpr.get()->getType();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006472
Mike Stump1eb44332009-09-09 15:08:12 +00006473 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006474 // transparent_union GCC extension.
6475 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidis40b598e2009-06-30 02:34:44 +00006476 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006477 return Incompatible;
6478
6479 // The field to initialize within the transparent union.
6480 RecordDecl *UD = UT->getDecl();
6481 FieldDecl *InitField = 0;
6482 // It's compatible if the expression matches any of the fields.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00006483 for (RecordDecl::field_iterator it = UD->field_begin(),
6484 itend = UD->field_end();
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006485 it != itend; ++it) {
6486 if (it->getType()->isPointerType()) {
6487 // If the transparent union contains a pointer type, we allow:
6488 // 1) void pointer
6489 // 2) null pointer constant
6490 if (FromType->isPointerType())
Ted Kremenek6217b802009-07-29 21:53:49 +00006491 if (FromType->getAs<PointerType>()->getPointeeType()->isVoidType()) {
John Wiegley429bb272011-04-08 18:41:53 +00006492 rExpr = ImpCastExprToType(rExpr.take(), it->getType(), CK_BitCast);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006493 InitField = *it;
6494 break;
6495 }
Mike Stump1eb44332009-09-09 15:08:12 +00006496
John Wiegley429bb272011-04-08 18:41:53 +00006497 if (rExpr.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006498 Expr::NPC_ValueDependentIsNull)) {
John Wiegley429bb272011-04-08 18:41:53 +00006499 rExpr = ImpCastExprToType(rExpr.take(), it->getType(), CK_NullToPointer);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006500 InitField = *it;
6501 break;
6502 }
6503 }
6504
John McCalldaa8e4e2010-11-15 09:13:47 +00006505 CastKind Kind = CK_Invalid;
John Wiegley429bb272011-04-08 18:41:53 +00006506 if (CheckAssignmentConstraints(it->getType(), rExpr, Kind)
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006507 == Compatible) {
John Wiegley429bb272011-04-08 18:41:53 +00006508 rExpr = ImpCastExprToType(rExpr.take(), it->getType(), Kind);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006509 InitField = *it;
6510 break;
6511 }
6512 }
6513
6514 if (!InitField)
6515 return Incompatible;
6516
John Wiegley429bb272011-04-08 18:41:53 +00006517 ConstructTransparentUnion(*this, Context, rExpr, ArgType, InitField);
Douglas Gregor0c74e8a2009-04-29 22:16:16 +00006518 return Compatible;
6519}
6520
Chris Lattner5cf216b2008-01-04 18:04:52 +00006521Sema::AssignConvertType
John Wiegley429bb272011-04-08 18:41:53 +00006522Sema::CheckSingleAssignmentConstraints(QualType lhsType, ExprResult &rExpr) {
Douglas Gregor98cd5992008-10-21 23:43:52 +00006523 if (getLangOptions().CPlusPlus) {
6524 if (!lhsType->isRecordType()) {
6525 // C++ 5.17p3: If the left operand is not of class type, the
6526 // expression is implicitly converted (C++ 4) to the
6527 // cv-unqualified type of the left operand.
John Wiegley429bb272011-04-08 18:41:53 +00006528 ExprResult Res = PerformImplicitConversion(rExpr.get(),
6529 lhsType.getUnqualifiedType(),
6530 AA_Assigning);
6531 if (Res.isInvalid())
Douglas Gregor98cd5992008-10-21 23:43:52 +00006532 return Incompatible;
John Wiegley429bb272011-04-08 18:41:53 +00006533 rExpr = move(Res);
Chris Lattner2c4463f2009-04-12 09:02:39 +00006534 return Compatible;
Douglas Gregor98cd5992008-10-21 23:43:52 +00006535 }
6536
6537 // FIXME: Currently, we fall through and treat C++ classes like C
6538 // structures.
John McCallf6a16482010-12-04 03:47:34 +00006539 }
Douglas Gregor98cd5992008-10-21 23:43:52 +00006540
Steve Naroff529a4ad2007-11-27 17:58:44 +00006541 // C99 6.5.16.1p1: the left operand is a pointer and the right is
6542 // a null pointer constant.
Mike Stump1eb44332009-09-09 15:08:12 +00006543 if ((lhsType->isPointerType() ||
6544 lhsType->isObjCObjectPointerType() ||
Mike Stumpeed9cac2009-02-19 03:04:26 +00006545 lhsType->isBlockPointerType())
John Wiegley429bb272011-04-08 18:41:53 +00006546 && rExpr.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00006547 Expr::NPC_ValueDependentIsNull)) {
John Wiegley429bb272011-04-08 18:41:53 +00006548 rExpr = ImpCastExprToType(rExpr.take(), lhsType, CK_NullToPointer);
Steve Naroff529a4ad2007-11-27 17:58:44 +00006549 return Compatible;
6550 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006551
Chris Lattner943140e2007-10-16 02:55:40 +00006552 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroff90045e82007-07-13 23:32:42 +00006553 // conversion of functions/arrays. If the conversion were done for all
Douglas Gregor02a24ee2009-11-03 16:56:39 +00006554 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
Nick Lewyckyc133e9e2010-08-05 06:27:49 +00006555 // expressions that suppress this implicit conversion (&, sizeof).
Chris Lattner943140e2007-10-16 02:55:40 +00006556 //
Mike Stumpeed9cac2009-02-19 03:04:26 +00006557 // Suppress this for references: C++ 8.5.3p5.
John Wiegley429bb272011-04-08 18:41:53 +00006558 if (!lhsType->isReferenceType()) {
6559 rExpr = DefaultFunctionArrayLvalueConversion(rExpr.take());
6560 if (rExpr.isInvalid())
6561 return Incompatible;
6562 }
Steve Narofff1120de2007-08-24 22:33:52 +00006563
John McCalldaa8e4e2010-11-15 09:13:47 +00006564 CastKind Kind = CK_Invalid;
Chris Lattner5cf216b2008-01-04 18:04:52 +00006565 Sema::AssignConvertType result =
John McCall1c23e912010-11-16 02:32:08 +00006566 CheckAssignmentConstraints(lhsType, rExpr, Kind);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006567
Steve Narofff1120de2007-08-24 22:33:52 +00006568 // C99 6.5.16.1p2: The value of the right operand is converted to the
6569 // type of the assignment expression.
Douglas Gregor9d293df2008-10-28 00:22:11 +00006570 // CheckAssignmentConstraints allows the left-hand side to be a reference,
6571 // so that we can use references in built-in functions even in C.
6572 // The getNonReferenceType() call makes sure that the resulting expression
6573 // does not have reference type.
John Wiegley429bb272011-04-08 18:41:53 +00006574 if (result != Incompatible && rExpr.get()->getType() != lhsType)
6575 rExpr = ImpCastExprToType(rExpr.take(), lhsType.getNonLValueExprType(Context), Kind);
Steve Narofff1120de2007-08-24 22:33:52 +00006576 return result;
Steve Naroff90045e82007-07-13 23:32:42 +00006577}
6578
John Wiegley429bb272011-04-08 18:41:53 +00006579QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &lex, ExprResult &rex) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00006580 Diag(Loc, diag::err_typecheck_invalid_operands)
John Wiegley429bb272011-04-08 18:41:53 +00006581 << lex.get()->getType() << rex.get()->getType()
6582 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Chris Lattnerca5eede2007-12-12 05:47:28 +00006583 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00006584}
6585
John Wiegley429bb272011-04-08 18:41:53 +00006586QualType Sema::CheckVectorOperands(SourceLocation Loc, ExprResult &lex, ExprResult &rex) {
Mike Stumpeed9cac2009-02-19 03:04:26 +00006587 // For conversion purposes, we ignore any qualifiers.
Nate Begeman1330b0e2008-04-04 01:30:25 +00006588 // For example, "const float" and "float" are equivalent.
Chris Lattnerb77792e2008-07-26 22:17:49 +00006589 QualType lhsType =
John Wiegley429bb272011-04-08 18:41:53 +00006590 Context.getCanonicalType(lex.get()->getType()).getUnqualifiedType();
Chris Lattnerb77792e2008-07-26 22:17:49 +00006591 QualType rhsType =
John Wiegley429bb272011-04-08 18:41:53 +00006592 Context.getCanonicalType(rex.get()->getType()).getUnqualifiedType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006593
Nate Begemanbe2341d2008-07-14 18:02:46 +00006594 // If the vector types are identical, return.
Nate Begeman1330b0e2008-04-04 01:30:25 +00006595 if (lhsType == rhsType)
Reid Spencer5f016e22007-07-11 17:01:13 +00006596 return lhsType;
Nate Begeman4119d1a2007-12-30 02:59:45 +00006597
Nate Begemanbe2341d2008-07-14 18:02:46 +00006598 // Handle the case of a vector & extvector type of the same size and element
6599 // type. It would be nice if we only had one vector type someday.
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006600 if (getLangOptions().LaxVectorConversions) {
John McCall183700f2009-09-21 23:43:11 +00006601 if (const VectorType *LV = lhsType->getAs<VectorType>()) {
Chandler Carruth629f9e42010-08-30 07:36:24 +00006602 if (const VectorType *RV = rhsType->getAs<VectorType>()) {
Nate Begemanbe2341d2008-07-14 18:02:46 +00006603 if (LV->getElementType() == RV->getElementType() &&
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006604 LV->getNumElements() == RV->getNumElements()) {
Douglas Gregor26bcf672010-05-19 03:21:00 +00006605 if (lhsType->isExtVectorType()) {
John Wiegley429bb272011-04-08 18:41:53 +00006606 rex = ImpCastExprToType(rex.take(), lhsType, CK_BitCast);
Douglas Gregor26bcf672010-05-19 03:21:00 +00006607 return lhsType;
6608 }
6609
John Wiegley429bb272011-04-08 18:41:53 +00006610 lex = ImpCastExprToType(lex.take(), rhsType, CK_BitCast);
Douglas Gregor26bcf672010-05-19 03:21:00 +00006611 return rhsType;
Eric Christophere84f9eb2010-08-26 00:42:16 +00006612 } else if (Context.getTypeSize(lhsType) ==Context.getTypeSize(rhsType)){
6613 // If we are allowing lax vector conversions, and LHS and RHS are both
6614 // vectors, the total size only needs to be the same. This is a
6615 // bitcast; no bits are changed but the result type is different.
John Wiegley429bb272011-04-08 18:41:53 +00006616 rex = ImpCastExprToType(rex.take(), lhsType, CK_BitCast);
Eric Christophere84f9eb2010-08-26 00:42:16 +00006617 return lhsType;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006618 }
Eric Christophere84f9eb2010-08-26 00:42:16 +00006619 }
Chandler Carruth629f9e42010-08-30 07:36:24 +00006620 }
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00006621 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006622
Douglas Gregor255210e2010-08-06 10:14:59 +00006623 // Handle the case of equivalent AltiVec and GCC vector types
6624 if (lhsType->isVectorType() && rhsType->isVectorType() &&
6625 Context.areCompatibleVectorTypes(lhsType, rhsType)) {
John Wiegley429bb272011-04-08 18:41:53 +00006626 lex = ImpCastExprToType(lex.take(), rhsType, CK_BitCast);
Douglas Gregor255210e2010-08-06 10:14:59 +00006627 return rhsType;
6628 }
6629
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006630 // Canonicalize the ExtVector to the LHS, remember if we swapped so we can
6631 // swap back (so that we don't reverse the inputs to a subtract, for instance.
6632 bool swapped = false;
6633 if (rhsType->isExtVectorType()) {
6634 swapped = true;
6635 std::swap(rex, lex);
6636 std::swap(rhsType, lhsType);
6637 }
Mike Stump1eb44332009-09-09 15:08:12 +00006638
Nate Begemandde25982009-06-28 19:12:57 +00006639 // Handle the case of an ext vector and scalar.
John McCall183700f2009-09-21 23:43:11 +00006640 if (const ExtVectorType *LV = lhsType->getAs<ExtVectorType>()) {
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006641 QualType EltTy = LV->getElementType();
Douglas Gregor9d3347a2010-06-16 00:35:25 +00006642 if (EltTy->isIntegralType(Context) && rhsType->isIntegralType(Context)) {
John McCalldaa8e4e2010-11-15 09:13:47 +00006643 int order = Context.getIntegerTypeOrder(EltTy, rhsType);
6644 if (order > 0)
John Wiegley429bb272011-04-08 18:41:53 +00006645 rex = ImpCastExprToType(rex.take(), EltTy, CK_IntegralCast);
John McCalldaa8e4e2010-11-15 09:13:47 +00006646 if (order >= 0) {
John Wiegley429bb272011-04-08 18:41:53 +00006647 rex = ImpCastExprToType(rex.take(), lhsType, CK_VectorSplat);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006648 if (swapped) std::swap(rex, lex);
6649 return lhsType;
6650 }
6651 }
6652 if (EltTy->isRealFloatingType() && rhsType->isScalarType() &&
6653 rhsType->isRealFloatingType()) {
John McCalldaa8e4e2010-11-15 09:13:47 +00006654 int order = Context.getFloatingTypeOrder(EltTy, rhsType);
6655 if (order > 0)
John Wiegley429bb272011-04-08 18:41:53 +00006656 rex = ImpCastExprToType(rex.take(), EltTy, CK_FloatingCast);
John McCalldaa8e4e2010-11-15 09:13:47 +00006657 if (order >= 0) {
John Wiegley429bb272011-04-08 18:41:53 +00006658 rex = ImpCastExprToType(rex.take(), lhsType, CK_VectorSplat);
Nate Begeman1bd1f6e2009-06-28 02:36:38 +00006659 if (swapped) std::swap(rex, lex);
6660 return lhsType;
6661 }
Nate Begeman4119d1a2007-12-30 02:59:45 +00006662 }
6663 }
Mike Stump1eb44332009-09-09 15:08:12 +00006664
Nate Begemandde25982009-06-28 19:12:57 +00006665 // Vectors of different size or scalar and non-ext-vector are errors.
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00006666 Diag(Loc, diag::err_typecheck_vector_not_convertable)
John Wiegley429bb272011-04-08 18:41:53 +00006667 << lex.get()->getType() << rex.get()->getType()
6668 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00006669 return QualType();
Sebastian Redl22460502009-02-07 00:15:38 +00006670}
6671
Chris Lattner7ef655a2010-01-12 21:23:57 +00006672QualType Sema::CheckMultiplyDivideOperands(
John Wiegley429bb272011-04-08 18:41:53 +00006673 ExprResult &lex, ExprResult &rex, SourceLocation Loc, bool isCompAssign, bool isDiv) {
6674 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00006675 return CheckVectorOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00006676
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006677 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
John Wiegley429bb272011-04-08 18:41:53 +00006678 if (lex.isInvalid() || rex.isInvalid())
6679 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006680
John Wiegley429bb272011-04-08 18:41:53 +00006681 if (!lex.get()->getType()->isArithmeticType() ||
6682 !rex.get()->getType()->isArithmeticType())
Chris Lattner7ef655a2010-01-12 21:23:57 +00006683 return InvalidOperands(Loc, lex, rex);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006684
Chris Lattner7ef655a2010-01-12 21:23:57 +00006685 // Check for division by zero.
6686 if (isDiv &&
John Wiegley429bb272011-04-08 18:41:53 +00006687 rex.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
6688 DiagRuntimeBehavior(Loc, rex.get(), PDiag(diag::warn_division_by_zero)
6689 << rex.get()->getSourceRange());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006690
Chris Lattner7ef655a2010-01-12 21:23:57 +00006691 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00006692}
6693
Chris Lattner7ef655a2010-01-12 21:23:57 +00006694QualType Sema::CheckRemainderOperands(
John Wiegley429bb272011-04-08 18:41:53 +00006695 ExprResult &lex, ExprResult &rex, SourceLocation Loc, bool isCompAssign) {
6696 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType()) {
6697 if (lex.get()->getType()->hasIntegerRepresentation() &&
6698 rex.get()->getType()->hasIntegerRepresentation())
Daniel Dunbar523aa602009-01-05 22:55:36 +00006699 return CheckVectorOperands(Loc, lex, rex);
6700 return InvalidOperands(Loc, lex, rex);
6701 }
Steve Naroff90045e82007-07-13 23:32:42 +00006702
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006703 QualType compType = UsualArithmeticConversions(lex, rex, isCompAssign);
John Wiegley429bb272011-04-08 18:41:53 +00006704 if (lex.isInvalid() || rex.isInvalid())
6705 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006706
John Wiegley429bb272011-04-08 18:41:53 +00006707 if (!lex.get()->getType()->isIntegerType() || !rex.get()->getType()->isIntegerType())
Chris Lattner7ef655a2010-01-12 21:23:57 +00006708 return InvalidOperands(Loc, lex, rex);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006709
Chris Lattner7ef655a2010-01-12 21:23:57 +00006710 // Check for remainder by zero.
John Wiegley429bb272011-04-08 18:41:53 +00006711 if (rex.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull))
6712 DiagRuntimeBehavior(Loc, rex.get(), PDiag(diag::warn_remainder_by_zero)
6713 << rex.get()->getSourceRange());
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00006714
Chris Lattner7ef655a2010-01-12 21:23:57 +00006715 return compType;
Reid Spencer5f016e22007-07-11 17:01:13 +00006716}
6717
Chris Lattner7ef655a2010-01-12 21:23:57 +00006718QualType Sema::CheckAdditionOperands( // C99 6.5.6
John Wiegley429bb272011-04-08 18:41:53 +00006719 ExprResult &lex, ExprResult &rex, SourceLocation Loc, QualType* CompLHSTy) {
6720 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006721 QualType compType = CheckVectorOperands(Loc, lex, rex);
6722 if (CompLHSTy) *CompLHSTy = compType;
6723 return compType;
6724 }
Steve Naroff49b45262007-07-13 16:58:59 +00006725
Eli Friedmanab3a8522009-03-28 01:22:36 +00006726 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
John Wiegley429bb272011-04-08 18:41:53 +00006727 if (lex.isInvalid() || rex.isInvalid())
6728 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00006729
Reid Spencer5f016e22007-07-11 17:01:13 +00006730 // handle the common case first (both operands are arithmetic).
John Wiegley429bb272011-04-08 18:41:53 +00006731 if (lex.get()->getType()->isArithmeticType() &&
6732 rex.get()->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006733 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006734 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00006735 }
Reid Spencer5f016e22007-07-11 17:01:13 +00006736
Eli Friedmand72d16e2008-05-18 18:08:51 +00006737 // Put any potential pointer into PExp
John Wiegley429bb272011-04-08 18:41:53 +00006738 Expr* PExp = lex.get(), *IExp = rex.get();
Steve Naroff58f9f2c2009-07-14 18:25:06 +00006739 if (IExp->getType()->isAnyPointerType())
Eli Friedmand72d16e2008-05-18 18:08:51 +00006740 std::swap(PExp, IExp);
6741
Steve Naroff58f9f2c2009-07-14 18:25:06 +00006742 if (PExp->getType()->isAnyPointerType()) {
Mike Stump1eb44332009-09-09 15:08:12 +00006743
Eli Friedmand72d16e2008-05-18 18:08:51 +00006744 if (IExp->getType()->isIntegerType()) {
Steve Naroff760e3c42009-07-13 21:20:41 +00006745 QualType PointeeTy = PExp->getType()->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00006746
Chris Lattnerb5f15622009-04-24 23:50:08 +00006747 // Check for arithmetic on pointers to incomplete types.
6748 if (PointeeTy->isVoidType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00006749 if (getLangOptions().CPlusPlus) {
6750 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
John Wiegley429bb272011-04-08 18:41:53 +00006751 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor4ec339f2009-01-19 19:26:10 +00006752 return QualType();
Eli Friedmand72d16e2008-05-18 18:08:51 +00006753 }
Douglas Gregore7450f52009-03-24 19:52:54 +00006754
6755 // GNU extension: arithmetic on pointer to void
6756 Diag(Loc, diag::ext_gnu_void_ptr)
John Wiegley429bb272011-04-08 18:41:53 +00006757 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00006758 } else if (PointeeTy->isFunctionType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00006759 if (getLangOptions().CPlusPlus) {
6760 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
John Wiegley429bb272011-04-08 18:41:53 +00006761 << lex.get()->getType() << lex.get()->getSourceRange();
Douglas Gregore7450f52009-03-24 19:52:54 +00006762 return QualType();
6763 }
6764
6765 // GNU extension: arithmetic on pointer to function
6766 Diag(Loc, diag::ext_gnu_ptr_func_arith)
John Wiegley429bb272011-04-08 18:41:53 +00006767 << lex.get()->getType() << lex.get()->getSourceRange();
Steve Naroff9deaeca2009-07-13 21:32:29 +00006768 } else {
Steve Naroff760e3c42009-07-13 21:20:41 +00006769 // Check if we require a complete type.
Mike Stump1eb44332009-09-09 15:08:12 +00006770 if (((PExp->getType()->isPointerType() &&
Steve Naroff9deaeca2009-07-13 21:32:29 +00006771 !PExp->getType()->isDependentType()) ||
Steve Naroff760e3c42009-07-13 21:20:41 +00006772 PExp->getType()->isObjCObjectPointerType()) &&
6773 RequireCompleteType(Loc, PointeeTy,
Mike Stump1eb44332009-09-09 15:08:12 +00006774 PDiag(diag::err_typecheck_arithmetic_incomplete_type)
6775 << PExp->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00006776 << PExp->getType()))
Steve Naroff760e3c42009-07-13 21:20:41 +00006777 return QualType();
6778 }
Chris Lattnerb5f15622009-04-24 23:50:08 +00006779 // Diagnose bad cases where we step over interface counts.
John McCallc12c5bb2010-05-15 11:32:37 +00006780 if (PointeeTy->isObjCObjectType() && LangOpts.ObjCNonFragileABI) {
Chris Lattnerb5f15622009-04-24 23:50:08 +00006781 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
6782 << PointeeTy << PExp->getSourceRange();
6783 return QualType();
6784 }
Mike Stump1eb44332009-09-09 15:08:12 +00006785
Eli Friedmanab3a8522009-03-28 01:22:36 +00006786 if (CompLHSTy) {
John Wiegley429bb272011-04-08 18:41:53 +00006787 QualType LHSTy = Context.isPromotableBitField(lex.get());
Eli Friedman04e83572009-08-20 04:21:42 +00006788 if (LHSTy.isNull()) {
John Wiegley429bb272011-04-08 18:41:53 +00006789 LHSTy = lex.get()->getType();
Eli Friedman04e83572009-08-20 04:21:42 +00006790 if (LHSTy->isPromotableIntegerType())
6791 LHSTy = Context.getPromotedIntegerType(LHSTy);
Douglas Gregor2d833e32009-05-02 00:36:19 +00006792 }
Eli Friedmanab3a8522009-03-28 01:22:36 +00006793 *CompLHSTy = LHSTy;
6794 }
Eli Friedmand72d16e2008-05-18 18:08:51 +00006795 return PExp->getType();
6796 }
6797 }
6798
Chris Lattner29a1cfb2008-11-18 01:30:42 +00006799 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00006800}
6801
Chris Lattnereca7be62008-04-07 05:30:13 +00006802// C99 6.5.6
John Wiegley429bb272011-04-08 18:41:53 +00006803QualType Sema::CheckSubtractionOperands(ExprResult &lex, ExprResult &rex,
Eli Friedmanab3a8522009-03-28 01:22:36 +00006804 SourceLocation Loc, QualType* CompLHSTy) {
John Wiegley429bb272011-04-08 18:41:53 +00006805 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006806 QualType compType = CheckVectorOperands(Loc, lex, rex);
6807 if (CompLHSTy) *CompLHSTy = compType;
6808 return compType;
6809 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006810
Eli Friedmanab3a8522009-03-28 01:22:36 +00006811 QualType compType = UsualArithmeticConversions(lex, rex, CompLHSTy);
John Wiegley429bb272011-04-08 18:41:53 +00006812 if (lex.isInvalid() || rex.isInvalid())
6813 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006814
Chris Lattner6e4ab612007-12-09 21:53:25 +00006815 // Enforce type constraints: C99 6.5.6p3.
Mike Stumpeed9cac2009-02-19 03:04:26 +00006816
Chris Lattner6e4ab612007-12-09 21:53:25 +00006817 // Handle the common case first (both operands are arithmetic).
John Wiegley429bb272011-04-08 18:41:53 +00006818 if (lex.get()->getType()->isArithmeticType() &&
6819 rex.get()->getType()->isArithmeticType()) {
Eli Friedmanab3a8522009-03-28 01:22:36 +00006820 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00006821 return compType;
Eli Friedmanab3a8522009-03-28 01:22:36 +00006822 }
Mike Stump1eb44332009-09-09 15:08:12 +00006823
Chris Lattner6e4ab612007-12-09 21:53:25 +00006824 // Either ptr - int or ptr - ptr.
John Wiegley429bb272011-04-08 18:41:53 +00006825 if (lex.get()->getType()->isAnyPointerType()) {
6826 QualType lpointee = lex.get()->getType()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006827
Douglas Gregore7450f52009-03-24 19:52:54 +00006828 // The LHS must be an completely-defined object type.
Douglas Gregorc983b862009-01-23 00:36:41 +00006829
Douglas Gregore7450f52009-03-24 19:52:54 +00006830 bool ComplainAboutVoid = false;
6831 Expr *ComplainAboutFunc = 0;
6832 if (lpointee->isVoidType()) {
6833 if (getLangOptions().CPlusPlus) {
6834 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
John Wiegley429bb272011-04-08 18:41:53 +00006835 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregore7450f52009-03-24 19:52:54 +00006836 return QualType();
6837 }
6838
6839 // GNU C extension: arithmetic on pointer to void
6840 ComplainAboutVoid = true;
6841 } else if (lpointee->isFunctionType()) {
6842 if (getLangOptions().CPlusPlus) {
6843 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
John Wiegley429bb272011-04-08 18:41:53 +00006844 << lex.get()->getType() << lex.get()->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00006845 return QualType();
6846 }
Douglas Gregore7450f52009-03-24 19:52:54 +00006847
6848 // GNU C extension: arithmetic on pointer to function
John Wiegley429bb272011-04-08 18:41:53 +00006849 ComplainAboutFunc = lex.get();
Douglas Gregore7450f52009-03-24 19:52:54 +00006850 } else if (!lpointee->isDependentType() &&
Mike Stump1eb44332009-09-09 15:08:12 +00006851 RequireCompleteType(Loc, lpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00006852 PDiag(diag::err_typecheck_sub_ptr_object)
John Wiegley429bb272011-04-08 18:41:53 +00006853 << lex.get()->getSourceRange()
6854 << lex.get()->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00006855 return QualType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00006856
Chris Lattnerb5f15622009-04-24 23:50:08 +00006857 // Diagnose bad cases where we step over interface counts.
John McCallc12c5bb2010-05-15 11:32:37 +00006858 if (lpointee->isObjCObjectType() && LangOpts.ObjCNonFragileABI) {
Chris Lattnerb5f15622009-04-24 23:50:08 +00006859 Diag(Loc, diag::err_arithmetic_nonfragile_interface)
John Wiegley429bb272011-04-08 18:41:53 +00006860 << lpointee << lex.get()->getSourceRange();
Chris Lattnerb5f15622009-04-24 23:50:08 +00006861 return QualType();
6862 }
Mike Stump1eb44332009-09-09 15:08:12 +00006863
Chris Lattner6e4ab612007-12-09 21:53:25 +00006864 // The result type of a pointer-int computation is the pointer type.
John Wiegley429bb272011-04-08 18:41:53 +00006865 if (rex.get()->getType()->isIntegerType()) {
Douglas Gregore7450f52009-03-24 19:52:54 +00006866 if (ComplainAboutVoid)
6867 Diag(Loc, diag::ext_gnu_void_ptr)
John Wiegley429bb272011-04-08 18:41:53 +00006868 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregore7450f52009-03-24 19:52:54 +00006869 if (ComplainAboutFunc)
6870 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00006871 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00006872 << ComplainAboutFunc->getSourceRange();
6873
John Wiegley429bb272011-04-08 18:41:53 +00006874 if (CompLHSTy) *CompLHSTy = lex.get()->getType();
6875 return lex.get()->getType();
Douglas Gregore7450f52009-03-24 19:52:54 +00006876 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006877
Chris Lattner6e4ab612007-12-09 21:53:25 +00006878 // Handle pointer-pointer subtractions.
John Wiegley429bb272011-04-08 18:41:53 +00006879 if (const PointerType *RHSPTy = rex.get()->getType()->getAs<PointerType>()) {
Eli Friedman8e54ad02008-02-08 01:19:44 +00006880 QualType rpointee = RHSPTy->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006881
Douglas Gregore7450f52009-03-24 19:52:54 +00006882 // RHS must be a completely-type object type.
6883 // Handle the GNU void* extension.
6884 if (rpointee->isVoidType()) {
6885 if (getLangOptions().CPlusPlus) {
6886 Diag(Loc, diag::err_typecheck_pointer_arith_void_type)
John Wiegley429bb272011-04-08 18:41:53 +00006887 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregore7450f52009-03-24 19:52:54 +00006888 return QualType();
6889 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006890
Douglas Gregore7450f52009-03-24 19:52:54 +00006891 ComplainAboutVoid = true;
6892 } else if (rpointee->isFunctionType()) {
6893 if (getLangOptions().CPlusPlus) {
6894 Diag(Loc, diag::err_typecheck_pointer_arith_function_type)
John Wiegley429bb272011-04-08 18:41:53 +00006895 << rex.get()->getType() << rex.get()->getSourceRange();
Chris Lattner6e4ab612007-12-09 21:53:25 +00006896 return QualType();
6897 }
Douglas Gregore7450f52009-03-24 19:52:54 +00006898
6899 // GNU extension: arithmetic on pointer to function
6900 if (!ComplainAboutFunc)
John Wiegley429bb272011-04-08 18:41:53 +00006901 ComplainAboutFunc = rex.get();
Douglas Gregore7450f52009-03-24 19:52:54 +00006902 } else if (!rpointee->isDependentType() &&
6903 RequireCompleteType(Loc, rpointee,
Anders Carlssond497ba72009-08-26 22:59:12 +00006904 PDiag(diag::err_typecheck_sub_ptr_object)
John Wiegley429bb272011-04-08 18:41:53 +00006905 << rex.get()->getSourceRange()
6906 << rex.get()->getType()))
Douglas Gregore7450f52009-03-24 19:52:54 +00006907 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00006908
Eli Friedman88d936b2009-05-16 13:54:38 +00006909 if (getLangOptions().CPlusPlus) {
6910 // Pointee types must be the same: C++ [expr.add]
6911 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
6912 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
John Wiegley429bb272011-04-08 18:41:53 +00006913 << lex.get()->getType() << rex.get()->getType()
6914 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Eli Friedman88d936b2009-05-16 13:54:38 +00006915 return QualType();
6916 }
6917 } else {
6918 // Pointee types must be compatible C99 6.5.6p3
6919 if (!Context.typesAreCompatible(
6920 Context.getCanonicalType(lpointee).getUnqualifiedType(),
6921 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
6922 Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
John Wiegley429bb272011-04-08 18:41:53 +00006923 << lex.get()->getType() << rex.get()->getType()
6924 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Eli Friedman88d936b2009-05-16 13:54:38 +00006925 return QualType();
6926 }
Chris Lattner6e4ab612007-12-09 21:53:25 +00006927 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006928
Douglas Gregore7450f52009-03-24 19:52:54 +00006929 if (ComplainAboutVoid)
6930 Diag(Loc, diag::ext_gnu_void_ptr)
John Wiegley429bb272011-04-08 18:41:53 +00006931 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregore7450f52009-03-24 19:52:54 +00006932 if (ComplainAboutFunc)
6933 Diag(Loc, diag::ext_gnu_ptr_func_arith)
Mike Stump1eb44332009-09-09 15:08:12 +00006934 << ComplainAboutFunc->getType()
Douglas Gregore7450f52009-03-24 19:52:54 +00006935 << ComplainAboutFunc->getSourceRange();
Eli Friedmanab3a8522009-03-28 01:22:36 +00006936
John Wiegley429bb272011-04-08 18:41:53 +00006937 if (CompLHSTy) *CompLHSTy = lex.get()->getType();
Chris Lattner6e4ab612007-12-09 21:53:25 +00006938 return Context.getPointerDiffType();
6939 }
6940 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00006941
Chris Lattner29a1cfb2008-11-18 01:30:42 +00006942 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00006943}
6944
Douglas Gregor1274ccd2010-10-08 23:50:27 +00006945static bool isScopedEnumerationType(QualType T) {
6946 if (const EnumType *ET = dyn_cast<EnumType>(T))
6947 return ET->getDecl()->isScoped();
6948 return false;
6949}
6950
John Wiegley429bb272011-04-08 18:41:53 +00006951static void DiagnoseBadShiftValues(Sema& S, ExprResult &lex, ExprResult &rex,
Chandler Carruth21206d52011-02-23 23:34:11 +00006952 SourceLocation Loc, unsigned Opc,
6953 QualType LHSTy) {
6954 llvm::APSInt Right;
6955 // Check right/shifter operand
John Wiegley429bb272011-04-08 18:41:53 +00006956 if (rex.get()->isValueDependent() || !rex.get()->isIntegerConstantExpr(Right, S.Context))
Chandler Carruth21206d52011-02-23 23:34:11 +00006957 return;
6958
6959 if (Right.isNegative()) {
John Wiegley429bb272011-04-08 18:41:53 +00006960 S.DiagRuntimeBehavior(Loc, rex.get(),
Ted Kremenek082bf7a2011-03-01 18:09:31 +00006961 S.PDiag(diag::warn_shift_negative)
John Wiegley429bb272011-04-08 18:41:53 +00006962 << rex.get()->getSourceRange());
Chandler Carruth21206d52011-02-23 23:34:11 +00006963 return;
6964 }
6965 llvm::APInt LeftBits(Right.getBitWidth(),
John Wiegley429bb272011-04-08 18:41:53 +00006966 S.Context.getTypeSize(lex.get()->getType()));
Chandler Carruth21206d52011-02-23 23:34:11 +00006967 if (Right.uge(LeftBits)) {
John Wiegley429bb272011-04-08 18:41:53 +00006968 S.DiagRuntimeBehavior(Loc, rex.get(),
Ted Kremenek425a31e2011-03-01 19:13:22 +00006969 S.PDiag(diag::warn_shift_gt_typewidth)
John Wiegley429bb272011-04-08 18:41:53 +00006970 << rex.get()->getSourceRange());
Chandler Carruth21206d52011-02-23 23:34:11 +00006971 return;
6972 }
6973 if (Opc != BO_Shl)
6974 return;
6975
6976 // When left shifting an ICE which is signed, we can check for overflow which
6977 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
6978 // integers have defined behavior modulo one more than the maximum value
6979 // representable in the result type, so never warn for those.
6980 llvm::APSInt Left;
John Wiegley429bb272011-04-08 18:41:53 +00006981 if (lex.get()->isValueDependent() || !lex.get()->isIntegerConstantExpr(Left, S.Context) ||
Chandler Carruth21206d52011-02-23 23:34:11 +00006982 LHSTy->hasUnsignedIntegerRepresentation())
6983 return;
6984 llvm::APInt ResultBits =
6985 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
6986 if (LeftBits.uge(ResultBits))
6987 return;
6988 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
6989 Result = Result.shl(Right);
6990
6991 // If we are only missing a sign bit, this is less likely to result in actual
6992 // bugs -- if the result is cast back to an unsigned type, it will have the
6993 // expected value. Thus we place this behind a different warning that can be
6994 // turned off separately if needed.
6995 if (LeftBits == ResultBits - 1) {
6996 S.Diag(Loc, diag::warn_shift_result_overrides_sign_bit)
6997 << Result.toString(10) << LHSTy
John Wiegley429bb272011-04-08 18:41:53 +00006998 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Chandler Carruth21206d52011-02-23 23:34:11 +00006999 return;
7000 }
7001
7002 S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
7003 << Result.toString(10) << Result.getMinSignedBits() << LHSTy
John Wiegley429bb272011-04-08 18:41:53 +00007004 << Left.getBitWidth() << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Chandler Carruth21206d52011-02-23 23:34:11 +00007005}
7006
Chris Lattnereca7be62008-04-07 05:30:13 +00007007// C99 6.5.7
John Wiegley429bb272011-04-08 18:41:53 +00007008QualType Sema::CheckShiftOperands(ExprResult &lex, ExprResult &rex, SourceLocation Loc,
Chandler Carruth21206d52011-02-23 23:34:11 +00007009 unsigned Opc, bool isCompAssign) {
Chris Lattnerca5eede2007-12-12 05:47:28 +00007010 // C99 6.5.7p2: Each of the operands shall have integer type.
John Wiegley429bb272011-04-08 18:41:53 +00007011 if (!lex.get()->getType()->hasIntegerRepresentation() ||
7012 !rex.get()->getType()->hasIntegerRepresentation())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007013 return InvalidOperands(Loc, lex, rex);
Mike Stumpeed9cac2009-02-19 03:04:26 +00007014
Douglas Gregor1274ccd2010-10-08 23:50:27 +00007015 // C++0x: Don't allow scoped enums. FIXME: Use something better than
7016 // hasIntegerRepresentation() above instead of this.
John Wiegley429bb272011-04-08 18:41:53 +00007017 if (isScopedEnumerationType(lex.get()->getType()) ||
7018 isScopedEnumerationType(rex.get()->getType())) {
Douglas Gregor1274ccd2010-10-08 23:50:27 +00007019 return InvalidOperands(Loc, lex, rex);
7020 }
7021
Nate Begeman2207d792009-10-25 02:26:48 +00007022 // Vector shifts promote their scalar inputs to vector type.
John Wiegley429bb272011-04-08 18:41:53 +00007023 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType())
Nate Begeman2207d792009-10-25 02:26:48 +00007024 return CheckVectorOperands(Loc, lex, rex);
7025
Chris Lattnerca5eede2007-12-12 05:47:28 +00007026 // Shifts don't perform usual arithmetic conversions, they just do integer
7027 // promotions on each operand. C99 6.5.7p3
Eli Friedmanab3a8522009-03-28 01:22:36 +00007028
John McCall1bc80af2010-12-16 19:28:59 +00007029 // For the LHS, do usual unary conversions, but then reset them away
7030 // if this is a compound assignment.
John Wiegley429bb272011-04-08 18:41:53 +00007031 ExprResult old_lex = lex;
7032 lex = UsualUnaryConversions(lex.take());
7033 if (lex.isInvalid())
7034 return QualType();
7035 QualType LHSTy = lex.get()->getType();
John McCall1bc80af2010-12-16 19:28:59 +00007036 if (isCompAssign) lex = old_lex;
7037
7038 // The RHS is simpler.
John Wiegley429bb272011-04-08 18:41:53 +00007039 rex = UsualUnaryConversions(rex.take());
7040 if (rex.isInvalid())
7041 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007042
Ryan Flynnd0439682009-08-07 16:20:20 +00007043 // Sanity-check shift operands
Chandler Carruth21206d52011-02-23 23:34:11 +00007044 DiagnoseBadShiftValues(*this, lex, rex, Loc, Opc, LHSTy);
Ryan Flynnd0439682009-08-07 16:20:20 +00007045
Chris Lattnerca5eede2007-12-12 05:47:28 +00007046 // "The type of the result is that of the promoted left operand."
Eli Friedmanab3a8522009-03-28 01:22:36 +00007047 return LHSTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00007048}
7049
Chandler Carruth99919472010-07-10 12:30:03 +00007050static bool IsWithinTemplateSpecialization(Decl *D) {
7051 if (DeclContext *DC = D->getDeclContext()) {
7052 if (isa<ClassTemplateSpecializationDecl>(DC))
7053 return true;
7054 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
7055 return FD->isFunctionTemplateSpecialization();
7056 }
7057 return false;
7058}
7059
Douglas Gregor0c6db942009-05-04 06:07:12 +00007060// C99 6.5.8, C++ [expr.rel]
John Wiegley429bb272011-04-08 18:41:53 +00007061QualType Sema::CheckCompareOperands(ExprResult &lex, ExprResult &rex, SourceLocation Loc,
Douglas Gregora86b8322009-04-06 18:45:53 +00007062 unsigned OpaqueOpc, bool isRelational) {
John McCall2de56d12010-08-25 11:45:40 +00007063 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc;
Douglas Gregora86b8322009-04-06 18:45:53 +00007064
Chris Lattner02dd4b12009-12-05 05:40:13 +00007065 // Handle vector comparisons separately.
John Wiegley429bb272011-04-08 18:41:53 +00007066 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType())
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007067 return CheckVectorCompareOperands(lex, rex, Loc, isRelational);
Mike Stumpeed9cac2009-02-19 03:04:26 +00007068
John Wiegley429bb272011-04-08 18:41:53 +00007069 QualType lType = lex.get()->getType();
7070 QualType rType = rex.get()->getType();
Douglas Gregorfadb53b2011-03-12 01:48:56 +00007071
John Wiegley429bb272011-04-08 18:41:53 +00007072 Expr *LHSStripped = lex.get()->IgnoreParenImpCasts();
7073 Expr *RHSStripped = rex.get()->IgnoreParenImpCasts();
Chandler Carruth543cb652011-02-17 08:37:06 +00007074 QualType LHSStrippedType = LHSStripped->getType();
7075 QualType RHSStrippedType = RHSStripped->getType();
7076
Douglas Gregorfadb53b2011-03-12 01:48:56 +00007077
7078
Chandler Carruth543cb652011-02-17 08:37:06 +00007079 // Two different enums will raise a warning when compared.
7080 if (const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>()) {
7081 if (const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>()) {
7082 if (LHSEnumType->getDecl()->getIdentifier() &&
7083 RHSEnumType->getDecl()->getIdentifier() &&
7084 !Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType)) {
7085 Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
7086 << LHSStrippedType << RHSStrippedType
John Wiegley429bb272011-04-08 18:41:53 +00007087 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Chandler Carruth543cb652011-02-17 08:37:06 +00007088 }
7089 }
7090 }
7091
Douglas Gregor8eee1192010-06-22 22:12:46 +00007092 if (!lType->hasFloatingRepresentation() &&
Ted Kremenekfbcb0eb2010-09-16 00:03:01 +00007093 !(lType->isBlockPointerType() && isRelational) &&
John Wiegley429bb272011-04-08 18:41:53 +00007094 !lex.get()->getLocStart().isMacroID() &&
7095 !rex.get()->getLocStart().isMacroID()) {
Chris Lattner55660a72009-03-08 19:39:53 +00007096 // For non-floating point types, check for self-comparisons of the form
7097 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
7098 // often indicate logic errors in the program.
Chandler Carruth64d092c2010-07-12 06:23:38 +00007099 //
7100 // NOTE: Don't warn about comparison expressions resulting from macro
7101 // expansion. Also don't warn about comparisons which are only self
7102 // comparisons within a template specialization. The warnings should catch
7103 // obvious cases in the definition of the template anyways. The idea is to
7104 // warn when the typed comparison operator will always evaluate to the same
7105 // result.
Chandler Carruth99919472010-07-10 12:30:03 +00007106 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(LHSStripped)) {
Douglas Gregord64fdd02010-06-08 19:50:34 +00007107 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(RHSStripped)) {
Ted Kremenekfbcb0eb2010-09-16 00:03:01 +00007108 if (DRL->getDecl() == DRR->getDecl() &&
Chandler Carruth99919472010-07-10 12:30:03 +00007109 !IsWithinTemplateSpecialization(DRL->getDecl())) {
Ted Kremenek351ba912011-02-23 01:52:04 +00007110 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always)
Douglas Gregord64fdd02010-06-08 19:50:34 +00007111 << 0 // self-
John McCall2de56d12010-08-25 11:45:40 +00007112 << (Opc == BO_EQ
7113 || Opc == BO_LE
7114 || Opc == BO_GE));
Douglas Gregord64fdd02010-06-08 19:50:34 +00007115 } else if (lType->isArrayType() && rType->isArrayType() &&
7116 !DRL->getDecl()->getType()->isReferenceType() &&
7117 !DRR->getDecl()->getType()->isReferenceType()) {
7118 // what is it always going to eval to?
7119 char always_evals_to;
7120 switch(Opc) {
John McCall2de56d12010-08-25 11:45:40 +00007121 case BO_EQ: // e.g. array1 == array2
Douglas Gregord64fdd02010-06-08 19:50:34 +00007122 always_evals_to = 0; // false
7123 break;
John McCall2de56d12010-08-25 11:45:40 +00007124 case BO_NE: // e.g. array1 != array2
Douglas Gregord64fdd02010-06-08 19:50:34 +00007125 always_evals_to = 1; // true
7126 break;
7127 default:
7128 // best we can say is 'a constant'
7129 always_evals_to = 2; // e.g. array1 <= array2
7130 break;
7131 }
Ted Kremenek351ba912011-02-23 01:52:04 +00007132 DiagRuntimeBehavior(Loc, 0, PDiag(diag::warn_comparison_always)
Douglas Gregord64fdd02010-06-08 19:50:34 +00007133 << 1 // array
7134 << always_evals_to);
7135 }
7136 }
Chandler Carruth99919472010-07-10 12:30:03 +00007137 }
Mike Stump1eb44332009-09-09 15:08:12 +00007138
Chris Lattner55660a72009-03-08 19:39:53 +00007139 if (isa<CastExpr>(LHSStripped))
7140 LHSStripped = LHSStripped->IgnoreParenCasts();
7141 if (isa<CastExpr>(RHSStripped))
7142 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump1eb44332009-09-09 15:08:12 +00007143
Chris Lattner55660a72009-03-08 19:39:53 +00007144 // Warn about comparisons against a string constant (unless the other
7145 // operand is null), the user probably wants strcmp.
Douglas Gregora86b8322009-04-06 18:45:53 +00007146 Expr *literalString = 0;
7147 Expr *literalStringStripped = 0;
Chris Lattner55660a72009-03-08 19:39:53 +00007148 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007149 !RHSStripped->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00007150 Expr::NPC_ValueDependentIsNull)) {
John Wiegley429bb272011-04-08 18:41:53 +00007151 literalString = lex.get();
Douglas Gregora86b8322009-04-06 18:45:53 +00007152 literalStringStripped = LHSStripped;
Mike Stumpac5fc7c2009-08-04 21:02:39 +00007153 } else if ((isa<StringLiteral>(RHSStripped) ||
7154 isa<ObjCEncodeExpr>(RHSStripped)) &&
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007155 !LHSStripped->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00007156 Expr::NPC_ValueDependentIsNull)) {
John Wiegley429bb272011-04-08 18:41:53 +00007157 literalString = rex.get();
Douglas Gregora86b8322009-04-06 18:45:53 +00007158 literalStringStripped = RHSStripped;
7159 }
7160
7161 if (literalString) {
7162 std::string resultComparison;
7163 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00007164 case BO_LT: resultComparison = ") < 0"; break;
7165 case BO_GT: resultComparison = ") > 0"; break;
7166 case BO_LE: resultComparison = ") <= 0"; break;
7167 case BO_GE: resultComparison = ") >= 0"; break;
7168 case BO_EQ: resultComparison = ") == 0"; break;
7169 case BO_NE: resultComparison = ") != 0"; break;
Douglas Gregora86b8322009-04-06 18:45:53 +00007170 default: assert(false && "Invalid comparison operator");
7171 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007172
Ted Kremenek351ba912011-02-23 01:52:04 +00007173 DiagRuntimeBehavior(Loc, 0,
Douglas Gregord1e4d9b2010-01-12 23:18:54 +00007174 PDiag(diag::warn_stringcompare)
7175 << isa<ObjCEncodeExpr>(literalStringStripped)
Ted Kremenek03a4bee2010-04-09 20:26:53 +00007176 << literalString->getSourceRange());
Douglas Gregora86b8322009-04-06 18:45:53 +00007177 }
Ted Kremenek3ca0bf22007-10-29 16:58:49 +00007178 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007179
Douglas Gregord64fdd02010-06-08 19:50:34 +00007180 // C99 6.5.8p3 / C99 6.5.9p4
John Wiegley429bb272011-04-08 18:41:53 +00007181 if (lex.get()->getType()->isArithmeticType() && rex.get()->getType()->isArithmeticType()) {
Douglas Gregord64fdd02010-06-08 19:50:34 +00007182 UsualArithmeticConversions(lex, rex);
John Wiegley429bb272011-04-08 18:41:53 +00007183 if (lex.isInvalid() || rex.isInvalid())
7184 return QualType();
7185 }
Douglas Gregord64fdd02010-06-08 19:50:34 +00007186 else {
John Wiegley429bb272011-04-08 18:41:53 +00007187 lex = UsualUnaryConversions(lex.take());
7188 if (lex.isInvalid())
7189 return QualType();
7190
7191 rex = UsualUnaryConversions(rex.take());
7192 if (rex.isInvalid())
7193 return QualType();
Douglas Gregord64fdd02010-06-08 19:50:34 +00007194 }
7195
John Wiegley429bb272011-04-08 18:41:53 +00007196 lType = lex.get()->getType();
7197 rType = rex.get()->getType();
Douglas Gregord64fdd02010-06-08 19:50:34 +00007198
Douglas Gregor447b69e2008-11-19 03:25:36 +00007199 // The result of comparisons is 'bool' in C++, 'int' in C.
Argyrios Kyrtzidis16f744b2011-02-18 20:55:15 +00007200 QualType ResultTy = Context.getLogicalOperationType();
Douglas Gregor447b69e2008-11-19 03:25:36 +00007201
Chris Lattnera5937dd2007-08-26 01:18:55 +00007202 if (isRelational) {
7203 if (lType->isRealType() && rType->isRealType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00007204 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00007205 } else {
Ted Kremenek72cb1ae2007-10-29 17:13:39 +00007206 // Check for comparisons of floating point operands using != and ==.
Douglas Gregor8eee1192010-06-22 22:12:46 +00007207 if (lType->hasFloatingRepresentation())
John Wiegley429bb272011-04-08 18:41:53 +00007208 CheckFloatComparison(Loc, lex.get(), rex.get());
Mike Stumpeed9cac2009-02-19 03:04:26 +00007209
Chris Lattnera5937dd2007-08-26 01:18:55 +00007210 if (lType->isArithmeticType() && rType->isArithmeticType())
Douglas Gregor447b69e2008-11-19 03:25:36 +00007211 return ResultTy;
Chris Lattnera5937dd2007-08-26 01:18:55 +00007212 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007213
John Wiegley429bb272011-04-08 18:41:53 +00007214 bool LHSIsNull = lex.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00007215 Expr::NPC_ValueDependentIsNull);
John Wiegley429bb272011-04-08 18:41:53 +00007216 bool RHSIsNull = rex.get()->isNullPointerConstant(Context,
Douglas Gregorce940492009-09-25 04:25:58 +00007217 Expr::NPC_ValueDependentIsNull);
Mike Stumpeed9cac2009-02-19 03:04:26 +00007218
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007219 // All of the following pointer-related warnings are GCC extensions, except
7220 // when handling null pointer constants.
Steve Naroff77878cc2007-08-27 04:08:11 +00007221 if (lType->isPointerType() && rType->isPointerType()) { // C99 6.5.8p2
Chris Lattnerbc896f52008-04-03 05:07:25 +00007222 QualType LCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00007223 Context.getCanonicalType(lType->getAs<PointerType>()->getPointeeType());
Chris Lattnerbc896f52008-04-03 05:07:25 +00007224 QualType RCanPointeeTy =
Ted Kremenek6217b802009-07-29 21:53:49 +00007225 Context.getCanonicalType(rType->getAs<PointerType>()->getPointeeType());
Mike Stumpeed9cac2009-02-19 03:04:26 +00007226
Douglas Gregor0c6db942009-05-04 06:07:12 +00007227 if (getLangOptions().CPlusPlus) {
Eli Friedman3075e762009-08-23 00:27:47 +00007228 if (LCanPointeeTy == RCanPointeeTy)
7229 return ResultTy;
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00007230 if (!isRelational &&
7231 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
7232 // Valid unless comparison between non-null pointer and function pointer
7233 // This is a gcc extension compatibility comparison.
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007234 // In a SFINAE context, we treat this as a hard error to maintain
7235 // conformance with the C++ standard.
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00007236 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
7237 && !LHSIsNull && !RHSIsNull) {
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007238 Diag(Loc,
7239 isSFINAEContext()?
7240 diag::err_typecheck_comparison_of_fptr_to_void
7241 : diag::ext_typecheck_comparison_of_fptr_to_void)
John Wiegley429bb272011-04-08 18:41:53 +00007242 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007243
7244 if (isSFINAEContext())
7245 return QualType();
7246
John Wiegley429bb272011-04-08 18:41:53 +00007247 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
Fariborz Jahanian51874dd2009-12-21 18:19:17 +00007248 return ResultTy;
7249 }
7250 }
Anders Carlsson0c8209e2010-11-04 03:17:43 +00007251
Douglas Gregor0c6db942009-05-04 06:07:12 +00007252 // C++ [expr.rel]p2:
7253 // [...] Pointer conversions (4.10) and qualification
7254 // conversions (4.4) are performed on pointer operands (or on
7255 // a pointer operand and a null pointer constant) to bring
7256 // them to their composite pointer type. [...]
7257 //
Douglas Gregor20b3e992009-08-24 17:42:35 +00007258 // C++ [expr.eq]p1 uses the same notion for (in)equality
Douglas Gregor0c6db942009-05-04 06:07:12 +00007259 // comparisons of pointers.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007260 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00007261 QualType T = FindCompositePointerType(Loc, lex, rex,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007262 isSFINAEContext()? 0 : &NonStandardCompositeType);
Douglas Gregor0c6db942009-05-04 06:07:12 +00007263 if (T.isNull()) {
7264 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007265 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor0c6db942009-05-04 06:07:12 +00007266 return QualType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007267 } else if (NonStandardCompositeType) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007268 Diag(Loc,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007269 diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007270 << lType << rType << T
John Wiegley429bb272011-04-08 18:41:53 +00007271 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor0c6db942009-05-04 06:07:12 +00007272 }
7273
John Wiegley429bb272011-04-08 18:41:53 +00007274 lex = ImpCastExprToType(lex.take(), T, CK_BitCast);
7275 rex = ImpCastExprToType(rex.take(), T, CK_BitCast);
Douglas Gregor0c6db942009-05-04 06:07:12 +00007276 return ResultTy;
7277 }
Eli Friedman3075e762009-08-23 00:27:47 +00007278 // C99 6.5.9p2 and C99 6.5.8p2
7279 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
7280 RCanPointeeTy.getUnqualifiedType())) {
7281 // Valid unless a relational comparison of function pointers
7282 if (isRelational && LCanPointeeTy->isFunctionType()) {
7283 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007284 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Eli Friedman3075e762009-08-23 00:27:47 +00007285 }
7286 } else if (!isRelational &&
7287 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
7288 // Valid unless comparison between non-null pointer and function pointer
7289 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
7290 && !LHSIsNull && !RHSIsNull) {
7291 Diag(Loc, diag::ext_typecheck_comparison_of_fptr_to_void)
John Wiegley429bb272011-04-08 18:41:53 +00007292 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Eli Friedman3075e762009-08-23 00:27:47 +00007293 }
7294 } else {
7295 // Invalid
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00007296 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007297 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00007298 }
John McCall34d6f932011-03-11 04:25:25 +00007299 if (LCanPointeeTy != RCanPointeeTy) {
7300 if (LHSIsNull && !RHSIsNull)
John Wiegley429bb272011-04-08 18:41:53 +00007301 lex = ImpCastExprToType(lex.take(), rType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00007302 else
John Wiegley429bb272011-04-08 18:41:53 +00007303 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00007304 }
Douglas Gregor447b69e2008-11-19 03:25:36 +00007305 return ResultTy;
Steve Naroffe77fd3c2007-08-16 21:48:38 +00007306 }
Mike Stump1eb44332009-09-09 15:08:12 +00007307
Sebastian Redl6e8ed162009-05-10 18:38:11 +00007308 if (getLangOptions().CPlusPlus) {
Anders Carlsson0c8209e2010-11-04 03:17:43 +00007309 // Comparison of nullptr_t with itself.
7310 if (lType->isNullPtrType() && rType->isNullPtrType())
7311 return ResultTy;
7312
Mike Stump1eb44332009-09-09 15:08:12 +00007313 // Comparison of pointers with null pointer constants and equality
Douglas Gregor20b3e992009-08-24 17:42:35 +00007314 // comparisons of member pointers to null pointer constants.
Mike Stump1eb44332009-09-09 15:08:12 +00007315 if (RHSIsNull &&
Anders Carlsson0c8209e2010-11-04 03:17:43 +00007316 ((lType->isPointerType() || lType->isNullPtrType()) ||
Douglas Gregor20b3e992009-08-24 17:42:35 +00007317 (!isRelational && lType->isMemberPointerType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00007318 rex = ImpCastExprToType(rex.take(), lType,
Douglas Gregor443c2122010-08-07 13:36:37 +00007319 lType->isMemberPointerType()
John McCall2de56d12010-08-25 11:45:40 +00007320 ? CK_NullToMemberPointer
John McCall404cd162010-11-13 01:35:44 +00007321 : CK_NullToPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00007322 return ResultTy;
7323 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00007324 if (LHSIsNull &&
Anders Carlsson0c8209e2010-11-04 03:17:43 +00007325 ((rType->isPointerType() || rType->isNullPtrType()) ||
Douglas Gregor20b3e992009-08-24 17:42:35 +00007326 (!isRelational && rType->isMemberPointerType()))) {
John Wiegley429bb272011-04-08 18:41:53 +00007327 lex = ImpCastExprToType(lex.take(), rType,
Douglas Gregor443c2122010-08-07 13:36:37 +00007328 rType->isMemberPointerType()
John McCall2de56d12010-08-25 11:45:40 +00007329 ? CK_NullToMemberPointer
John McCall404cd162010-11-13 01:35:44 +00007330 : CK_NullToPointer);
Sebastian Redl6e8ed162009-05-10 18:38:11 +00007331 return ResultTy;
7332 }
Douglas Gregor20b3e992009-08-24 17:42:35 +00007333
7334 // Comparison of member pointers.
Mike Stump1eb44332009-09-09 15:08:12 +00007335 if (!isRelational &&
Douglas Gregor20b3e992009-08-24 17:42:35 +00007336 lType->isMemberPointerType() && rType->isMemberPointerType()) {
7337 // C++ [expr.eq]p2:
Mike Stump1eb44332009-09-09 15:08:12 +00007338 // In addition, pointers to members can be compared, or a pointer to
7339 // member and a null pointer constant. Pointer to member conversions
7340 // (4.11) and qualification conversions (4.4) are performed to bring
7341 // them to a common type. If one operand is a null pointer constant,
7342 // the common type is the type of the other operand. Otherwise, the
7343 // common type is a pointer to member type similar (4.4) to the type
7344 // of one of the operands, with a cv-qualification signature (4.4)
7345 // that is the union of the cv-qualification signatures of the operand
Douglas Gregor20b3e992009-08-24 17:42:35 +00007346 // types.
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007347 bool NonStandardCompositeType = false;
Douglas Gregor8f00dcf2010-04-16 23:20:25 +00007348 QualType T = FindCompositePointerType(Loc, lex, rex,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007349 isSFINAEContext()? 0 : &NonStandardCompositeType);
Douglas Gregor20b3e992009-08-24 17:42:35 +00007350 if (T.isNull()) {
7351 Diag(Loc, diag::err_typecheck_comparison_of_distinct_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007352 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor20b3e992009-08-24 17:42:35 +00007353 return QualType();
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007354 } else if (NonStandardCompositeType) {
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007355 Diag(Loc,
Douglas Gregorb2cb1cb2010-02-25 22:29:57 +00007356 diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007357 << lType << rType << T
John Wiegley429bb272011-04-08 18:41:53 +00007358 << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor20b3e992009-08-24 17:42:35 +00007359 }
Mike Stump1eb44332009-09-09 15:08:12 +00007360
John Wiegley429bb272011-04-08 18:41:53 +00007361 lex = ImpCastExprToType(lex.take(), T, CK_BitCast);
7362 rex = ImpCastExprToType(rex.take(), T, CK_BitCast);
Douglas Gregor20b3e992009-08-24 17:42:35 +00007363 return ResultTy;
7364 }
Douglas Gregor90566c02011-03-01 17:16:20 +00007365
7366 // Handle scoped enumeration types specifically, since they don't promote
7367 // to integers.
John Wiegley429bb272011-04-08 18:41:53 +00007368 if (lex.get()->getType()->isEnumeralType() &&
7369 Context.hasSameUnqualifiedType(lex.get()->getType(), rex.get()->getType()))
Douglas Gregor90566c02011-03-01 17:16:20 +00007370 return ResultTy;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00007371 }
Mike Stump1eb44332009-09-09 15:08:12 +00007372
Steve Naroff1c7d0672008-09-04 15:10:53 +00007373 // Handle block pointer types.
Mike Stumpdd3e1662009-05-07 03:14:14 +00007374 if (!isRelational && lType->isBlockPointerType() && rType->isBlockPointerType()) {
Ted Kremenek6217b802009-07-29 21:53:49 +00007375 QualType lpointee = lType->getAs<BlockPointerType>()->getPointeeType();
7376 QualType rpointee = rType->getAs<BlockPointerType>()->getPointeeType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007377
Steve Naroff1c7d0672008-09-04 15:10:53 +00007378 if (!LHSIsNull && !RHSIsNull &&
Eli Friedman26784c12009-06-08 05:08:54 +00007379 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00007380 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
John Wiegley429bb272011-04-08 18:41:53 +00007381 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Steve Naroff1c7d0672008-09-04 15:10:53 +00007382 }
John Wiegley429bb272011-04-08 18:41:53 +00007383 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007384 return ResultTy;
Steve Naroff1c7d0672008-09-04 15:10:53 +00007385 }
John Wiegley429bb272011-04-08 18:41:53 +00007386
Steve Naroff59f53942008-09-28 01:11:11 +00007387 // Allow block pointers to be compared with null pointer constants.
Mike Stumpdd3e1662009-05-07 03:14:14 +00007388 if (!isRelational
7389 && ((lType->isBlockPointerType() && rType->isPointerType())
7390 || (lType->isPointerType() && rType->isBlockPointerType()))) {
Steve Naroff59f53942008-09-28 01:11:11 +00007391 if (!LHSIsNull && !RHSIsNull) {
John McCall34d6f932011-03-11 04:25:25 +00007392 if (!((rType->isPointerType() && rType->castAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00007393 ->getPointeeType()->isVoidType())
John McCall34d6f932011-03-11 04:25:25 +00007394 || (lType->isPointerType() && lType->castAs<PointerType>()
Mike Stumpdd3e1662009-05-07 03:14:14 +00007395 ->getPointeeType()->isVoidType())))
7396 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
John Wiegley429bb272011-04-08 18:41:53 +00007397 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Steve Naroff59f53942008-09-28 01:11:11 +00007398 }
John McCall34d6f932011-03-11 04:25:25 +00007399 if (LHSIsNull && !RHSIsNull)
John Wiegley429bb272011-04-08 18:41:53 +00007400 lex = ImpCastExprToType(lex.take(), rType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00007401 else
John Wiegley429bb272011-04-08 18:41:53 +00007402 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007403 return ResultTy;
Steve Naroff59f53942008-09-28 01:11:11 +00007404 }
Steve Naroff1c7d0672008-09-04 15:10:53 +00007405
John McCall34d6f932011-03-11 04:25:25 +00007406 if (lType->isObjCObjectPointerType() || rType->isObjCObjectPointerType()) {
7407 const PointerType *LPT = lType->getAs<PointerType>();
7408 const PointerType *RPT = rType->getAs<PointerType>();
7409 if (LPT || RPT) {
7410 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
7411 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007412
Steve Naroffa8069f12008-11-17 19:49:16 +00007413 if (!LPtrToVoid && !RPtrToVoid &&
7414 !Context.typesAreCompatible(lType, rType)) {
Chris Lattnerc9c7c4e2008-11-18 22:52:51 +00007415 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007416 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Steve Naroffa5ad8632008-10-27 10:33:19 +00007417 }
John McCall34d6f932011-03-11 04:25:25 +00007418 if (LHSIsNull && !RHSIsNull)
John Wiegley429bb272011-04-08 18:41:53 +00007419 lex = ImpCastExprToType(lex.take(), rType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00007420 else
John Wiegley429bb272011-04-08 18:41:53 +00007421 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007422 return ResultTy;
Steve Naroff87f3b932008-10-20 18:19:10 +00007423 }
Steve Naroff14108da2009-07-10 23:34:53 +00007424 if (lType->isObjCObjectPointerType() && rType->isObjCObjectPointerType()) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00007425 if (!Context.areComparableObjCPointerTypes(lType, rType))
Steve Naroff14108da2009-07-10 23:34:53 +00007426 Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers)
John Wiegley429bb272011-04-08 18:41:53 +00007427 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
John McCall34d6f932011-03-11 04:25:25 +00007428 if (LHSIsNull && !RHSIsNull)
John Wiegley429bb272011-04-08 18:41:53 +00007429 lex = ImpCastExprToType(lex.take(), rType, CK_BitCast);
John McCall34d6f932011-03-11 04:25:25 +00007430 else
John Wiegley429bb272011-04-08 18:41:53 +00007431 rex = ImpCastExprToType(rex.take(), lType, CK_BitCast);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007432 return ResultTy;
Steve Naroff20373222008-06-03 14:04:54 +00007433 }
Fariborz Jahanian7359f042007-12-20 01:06:58 +00007434 }
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007435 if ((lType->isAnyPointerType() && rType->isIntegerType()) ||
7436 (lType->isIntegerType() && rType->isAnyPointerType())) {
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007437 unsigned DiagID = 0;
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007438 bool isError = false;
7439 if ((LHSIsNull && lType->isIntegerType()) ||
7440 (RHSIsNull && rType->isIntegerType())) {
7441 if (isRelational && !getLangOptions().CPlusPlus)
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007442 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007443 } else if (isRelational && !getLangOptions().CPlusPlus)
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007444 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007445 else if (getLangOptions().CPlusPlus) {
7446 DiagID = diag::err_typecheck_comparison_of_pointer_integer;
7447 isError = true;
7448 } else
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007449 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump1eb44332009-09-09 15:08:12 +00007450
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007451 if (DiagID) {
Chris Lattner6365e3e2009-08-22 18:58:31 +00007452 Diag(Loc, DiagID)
John Wiegley429bb272011-04-08 18:41:53 +00007453 << lType << rType << lex.get()->getSourceRange() << rex.get()->getSourceRange();
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007454 if (isError)
7455 return QualType();
Chris Lattner6365e3e2009-08-22 18:58:31 +00007456 }
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007457
7458 if (lType->isIntegerType())
John Wiegley429bb272011-04-08 18:41:53 +00007459 lex = ImpCastExprToType(lex.take(), rType,
John McCall404cd162010-11-13 01:35:44 +00007460 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Chris Lattner06c0f5b2009-08-23 00:03:44 +00007461 else
John Wiegley429bb272011-04-08 18:41:53 +00007462 rex = ImpCastExprToType(rex.take(), lType,
John McCall404cd162010-11-13 01:35:44 +00007463 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007464 return ResultTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00007465 }
Douglas Gregor6e5122c2010-06-15 21:38:40 +00007466
Steve Naroff39218df2008-09-04 16:56:14 +00007467 // Handle block pointers.
Mike Stumpaf199f32009-05-07 18:43:07 +00007468 if (!isRelational && RHSIsNull
7469 && lType->isBlockPointerType() && rType->isIntegerType()) {
John Wiegley429bb272011-04-08 18:41:53 +00007470 rex = ImpCastExprToType(rex.take(), lType, CK_NullToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007471 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00007472 }
Mike Stumpaf199f32009-05-07 18:43:07 +00007473 if (!isRelational && LHSIsNull
7474 && lType->isIntegerType() && rType->isBlockPointerType()) {
John Wiegley429bb272011-04-08 18:41:53 +00007475 lex = ImpCastExprToType(lex.take(), rType, CK_NullToPointer);
Douglas Gregor447b69e2008-11-19 03:25:36 +00007476 return ResultTy;
Steve Naroff39218df2008-09-04 16:56:14 +00007477 }
Douglas Gregor90566c02011-03-01 17:16:20 +00007478
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007479 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00007480}
7481
Nate Begemanbe2341d2008-07-14 18:02:46 +00007482/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stumpeed9cac2009-02-19 03:04:26 +00007483/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begemanbe2341d2008-07-14 18:02:46 +00007484/// like a scalar comparison, a vector comparison produces a vector of integer
7485/// types.
John Wiegley429bb272011-04-08 18:41:53 +00007486QualType Sema::CheckVectorCompareOperands(ExprResult &lex, ExprResult &rex,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007487 SourceLocation Loc,
Nate Begemanbe2341d2008-07-14 18:02:46 +00007488 bool isRelational) {
7489 // Check to make sure we're operating on vectors of the same type and width,
7490 // Allowing one side to be a scalar of element type.
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007491 QualType vType = CheckVectorOperands(Loc, lex, rex);
Nate Begemanbe2341d2008-07-14 18:02:46 +00007492 if (vType.isNull())
7493 return vType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007494
John Wiegley429bb272011-04-08 18:41:53 +00007495 QualType lType = lex.get()->getType();
7496 QualType rType = rex.get()->getType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007497
Anton Yartsev7870b132011-03-27 15:36:07 +00007498 // If AltiVec, the comparison results in a numeric type, i.e.
7499 // bool for C++, int for C
Anton Yartsev6305f722011-03-28 21:00:05 +00007500 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
Anton Yartsev7870b132011-03-27 15:36:07 +00007501 return Context.getLogicalOperationType();
7502
Nate Begemanbe2341d2008-07-14 18:02:46 +00007503 // For non-floating point types, check for self-comparisons of the form
7504 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
7505 // often indicate logic errors in the program.
Douglas Gregor8eee1192010-06-22 22:12:46 +00007506 if (!lType->hasFloatingRepresentation()) {
John Wiegley429bb272011-04-08 18:41:53 +00007507 if (DeclRefExpr* DRL = dyn_cast<DeclRefExpr>(lex.get()->IgnoreParens()))
7508 if (DeclRefExpr* DRR = dyn_cast<DeclRefExpr>(rex.get()->IgnoreParens()))
Nate Begemanbe2341d2008-07-14 18:02:46 +00007509 if (DRL->getDecl() == DRR->getDecl())
Ted Kremenek351ba912011-02-23 01:52:04 +00007510 DiagRuntimeBehavior(Loc, 0,
Douglas Gregord64fdd02010-06-08 19:50:34 +00007511 PDiag(diag::warn_comparison_always)
7512 << 0 // self-
7513 << 2 // "a constant"
7514 );
Nate Begemanbe2341d2008-07-14 18:02:46 +00007515 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007516
Nate Begemanbe2341d2008-07-14 18:02:46 +00007517 // Check for comparisons of floating point operands using != and ==.
Douglas Gregor8eee1192010-06-22 22:12:46 +00007518 if (!isRelational && lType->hasFloatingRepresentation()) {
7519 assert (rType->hasFloatingRepresentation());
John Wiegley429bb272011-04-08 18:41:53 +00007520 CheckFloatComparison(Loc, lex.get(), rex.get());
Nate Begemanbe2341d2008-07-14 18:02:46 +00007521 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007522
Nate Begemanbe2341d2008-07-14 18:02:46 +00007523 // Return the type for the comparison, which is the same as vector type for
7524 // integer vectors, or an integer type of identical size and number of
7525 // elements for floating point vectors.
Douglas Gregorf6094622010-07-23 15:58:24 +00007526 if (lType->hasIntegerRepresentation())
Nate Begemanbe2341d2008-07-14 18:02:46 +00007527 return lType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007528
John McCall183700f2009-09-21 23:43:11 +00007529 const VectorType *VTy = lType->getAs<VectorType>();
Nate Begemanbe2341d2008-07-14 18:02:46 +00007530 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
Nate Begeman59b5da62009-01-18 03:20:47 +00007531 if (TypeSize == Context.getTypeSize(Context.IntTy))
Nate Begemanbe2341d2008-07-14 18:02:46 +00007532 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
Chris Lattnerd013aa12009-03-31 07:46:52 +00007533 if (TypeSize == Context.getTypeSize(Context.LongTy))
Nate Begeman59b5da62009-01-18 03:20:47 +00007534 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
7535
Mike Stumpeed9cac2009-02-19 03:04:26 +00007536 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
Nate Begeman59b5da62009-01-18 03:20:47 +00007537 "Unhandled vector element size in vector compare");
Nate Begemanbe2341d2008-07-14 18:02:46 +00007538 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
7539}
7540
Reid Spencer5f016e22007-07-11 17:01:13 +00007541inline QualType Sema::CheckBitwiseOperands(
John Wiegley429bb272011-04-08 18:41:53 +00007542 ExprResult &lex, ExprResult &rex, SourceLocation Loc, bool isCompAssign) {
7543 if (lex.get()->getType()->isVectorType() || rex.get()->getType()->isVectorType()) {
7544 if (lex.get()->getType()->hasIntegerRepresentation() &&
7545 rex.get()->getType()->hasIntegerRepresentation())
Douglas Gregorf6094622010-07-23 15:58:24 +00007546 return CheckVectorOperands(Loc, lex, rex);
7547
7548 return InvalidOperands(Loc, lex, rex);
7549 }
Steve Naroff90045e82007-07-13 23:32:42 +00007550
John Wiegley429bb272011-04-08 18:41:53 +00007551 ExprResult lexResult = Owned(lex), rexResult = Owned(rex);
7552 QualType compType = UsualArithmeticConversions(lexResult, rexResult, isCompAssign);
7553 if (lexResult.isInvalid() || rexResult.isInvalid())
7554 return QualType();
7555 lex = lexResult.take();
7556 rex = rexResult.take();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007557
John Wiegley429bb272011-04-08 18:41:53 +00007558 if (lex.get()->getType()->isIntegralOrUnscopedEnumerationType() &&
7559 rex.get()->getType()->isIntegralOrUnscopedEnumerationType())
Steve Naroff9f5fa9b2007-08-24 19:07:16 +00007560 return compType;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007561 return InvalidOperands(Loc, lex, rex);
Reid Spencer5f016e22007-07-11 17:01:13 +00007562}
7563
7564inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
John Wiegley429bb272011-04-08 18:41:53 +00007565 ExprResult &lex, ExprResult &rex, SourceLocation Loc, unsigned Opc) {
Chris Lattner90a8f272010-07-13 19:41:32 +00007566
7567 // Diagnose cases where the user write a logical and/or but probably meant a
7568 // bitwise one. We do this when the LHS is a non-bool integer and the RHS
7569 // is a constant.
John Wiegley429bb272011-04-08 18:41:53 +00007570 if (lex.get()->getType()->isIntegerType() && !lex.get()->getType()->isBooleanType() &&
7571 rex.get()->getType()->isIntegerType() && !rex.get()->isValueDependent() &&
Chris Lattner23ef3e42010-07-15 00:26:43 +00007572 // Don't warn in macros.
Chris Lattnerb7690b42010-07-24 01:10:11 +00007573 !Loc.isMacroID()) {
7574 // If the RHS can be constant folded, and if it constant folds to something
7575 // that isn't 0 or 1 (which indicate a potential logical operation that
7576 // happened to fold to true/false) then warn.
7577 Expr::EvalResult Result;
John Wiegley429bb272011-04-08 18:41:53 +00007578 if (rex.get()->Evaluate(Result, Context) && !Result.HasSideEffects &&
Chris Lattnerb7690b42010-07-24 01:10:11 +00007579 Result.Val.getInt() != 0 && Result.Val.getInt() != 1) {
7580 Diag(Loc, diag::warn_logical_instead_of_bitwise)
John Wiegley429bb272011-04-08 18:41:53 +00007581 << rex.get()->getSourceRange()
John McCall2de56d12010-08-25 11:45:40 +00007582 << (Opc == BO_LAnd ? "&&" : "||")
7583 << (Opc == BO_LAnd ? "&" : "|");
Chris Lattnerb7690b42010-07-24 01:10:11 +00007584 }
7585 }
Chris Lattner90a8f272010-07-13 19:41:32 +00007586
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007587 if (!Context.getLangOptions().CPlusPlus) {
John Wiegley429bb272011-04-08 18:41:53 +00007588 lex = UsualUnaryConversions(lex.take());
7589 if (lex.isInvalid())
7590 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007591
John Wiegley429bb272011-04-08 18:41:53 +00007592 rex = UsualUnaryConversions(rex.take());
7593 if (rex.isInvalid())
7594 return QualType();
7595
7596 if (!lex.get()->getType()->isScalarType() || !rex.get()->getType()->isScalarType())
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007597 return InvalidOperands(Loc, lex, rex);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007598
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007599 return Context.IntTy;
Anders Carlsson04905012009-10-16 01:44:21 +00007600 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007601
John McCall75f7c0f2010-06-04 00:29:51 +00007602 // The following is safe because we only use this method for
7603 // non-overloadable operands.
7604
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007605 // C++ [expr.log.and]p1
7606 // C++ [expr.log.or]p1
John McCall75f7c0f2010-06-04 00:29:51 +00007607 // The operands are both contextually converted to type bool.
John Wiegley429bb272011-04-08 18:41:53 +00007608 ExprResult lexRes = PerformContextuallyConvertToBool(lex.get());
7609 if (lexRes.isInvalid())
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007610 return InvalidOperands(Loc, lex, rex);
John Wiegley429bb272011-04-08 18:41:53 +00007611 lex = move(lexRes);
7612
7613 ExprResult rexRes = PerformContextuallyConvertToBool(rex.get());
7614 if (rexRes.isInvalid())
7615 return InvalidOperands(Loc, lex, rex);
7616 rex = move(rexRes);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00007617
Anders Carlssona4c98cd2009-11-23 21:47:44 +00007618 // C++ [expr.log.and]p2
7619 // C++ [expr.log.or]p2
7620 // The result is a bool.
7621 return Context.BoolTy;
Reid Spencer5f016e22007-07-11 17:01:13 +00007622}
7623
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007624/// IsReadonlyProperty - Verify that otherwise a valid l-value expression
7625/// is a read-only property; return true if so. A readonly property expression
7626/// depends on various declarations and thus must be treated specially.
7627///
Mike Stump1eb44332009-09-09 15:08:12 +00007628static bool IsReadonlyProperty(Expr *E, Sema &S) {
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007629 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
7630 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
John McCall12f78a62010-12-02 01:19:52 +00007631 if (PropExpr->isImplicitProperty()) return false;
7632
7633 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty();
7634 QualType BaseType = PropExpr->isSuperReceiver() ?
7635 PropExpr->getSuperReceiverType() :
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +00007636 PropExpr->getBase()->getType();
7637
John McCall12f78a62010-12-02 01:19:52 +00007638 if (const ObjCObjectPointerType *OPT =
7639 BaseType->getAsObjCInterfacePointerType())
7640 if (ObjCInterfaceDecl *IFace = OPT->getInterfaceDecl())
7641 if (S.isPropertyReadonly(PDecl, IFace))
7642 return true;
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007643 }
7644 return false;
7645}
7646
Fariborz Jahanian14086762011-03-28 23:47:18 +00007647static bool IsConstProperty(Expr *E, Sema &S) {
7648 if (E->getStmtClass() == Expr::ObjCPropertyRefExprClass) {
7649 const ObjCPropertyRefExpr* PropExpr = cast<ObjCPropertyRefExpr>(E);
7650 if (PropExpr->isImplicitProperty()) return false;
7651
7652 ObjCPropertyDecl *PDecl = PropExpr->getExplicitProperty();
7653 QualType T = PDecl->getType();
7654 if (T->isReferenceType())
Fariborz Jahanian61750f22011-03-30 16:59:30 +00007655 T = T->getAs<ReferenceType>()->getPointeeType();
Fariborz Jahanian14086762011-03-28 23:47:18 +00007656 CanQualType CT = S.Context.getCanonicalType(T);
7657 return CT.isConstQualified();
7658 }
7659 return false;
7660}
7661
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007662static bool IsReadonlyMessage(Expr *E, Sema &S) {
7663 if (E->getStmtClass() != Expr::MemberExprClass)
7664 return false;
7665 const MemberExpr *ME = cast<MemberExpr>(E);
7666 NamedDecl *Member = ME->getMemberDecl();
7667 if (isa<FieldDecl>(Member)) {
7668 Expr *Base = ME->getBase()->IgnoreParenImpCasts();
7669 if (Base->getStmtClass() != Expr::ObjCMessageExprClass)
7670 return false;
7671 return cast<ObjCMessageExpr>(Base)->getMethodDecl() != 0;
7672 }
7673 return false;
7674}
7675
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007676/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
7677/// emit an error and return true. If so, return false.
7678static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007679 SourceLocation OrigLoc = Loc;
Mike Stump1eb44332009-09-09 15:08:12 +00007680 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007681 &Loc);
Fariborz Jahaniand1fa6442009-01-12 19:55:42 +00007682 if (IsLV == Expr::MLV_Valid && IsReadonlyProperty(E, S))
7683 IsLV = Expr::MLV_ReadonlyProperty;
Fariborz Jahanian14086762011-03-28 23:47:18 +00007684 else if (Expr::MLV_ConstQualified && IsConstProperty(E, S))
7685 IsLV = Expr::MLV_Valid;
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007686 else if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
7687 IsLV = Expr::MLV_InvalidMessageExpression;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007688 if (IsLV == Expr::MLV_Valid)
7689 return false;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007690
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007691 unsigned Diag = 0;
7692 bool NeedType = false;
7693 switch (IsLV) { // C99 6.5.16p2
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007694 case Expr::MLV_ConstQualified: Diag = diag::err_typecheck_assign_const; break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007695 case Expr::MLV_ArrayType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007696 Diag = diag::err_typecheck_array_not_modifiable_lvalue;
7697 NeedType = true;
7698 break;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007699 case Expr::MLV_NotObjectType:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007700 Diag = diag::err_typecheck_non_object_not_modifiable_lvalue;
7701 NeedType = true;
7702 break;
Chris Lattnerca354fa2008-11-17 19:51:54 +00007703 case Expr::MLV_LValueCast:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007704 Diag = diag::err_typecheck_lvalue_casts_not_supported;
7705 break;
Douglas Gregore873fb72010-02-16 21:39:57 +00007706 case Expr::MLV_Valid:
7707 llvm_unreachable("did not take early return for MLV_Valid");
Chris Lattner5cf216b2008-01-04 18:04:52 +00007708 case Expr::MLV_InvalidExpression:
Douglas Gregore873fb72010-02-16 21:39:57 +00007709 case Expr::MLV_MemberFunction:
7710 case Expr::MLV_ClassTemporary:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007711 Diag = diag::err_typecheck_expression_not_modifiable_lvalue;
7712 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00007713 case Expr::MLV_IncompleteType:
7714 case Expr::MLV_IncompleteVoidType:
Douglas Gregor86447ec2009-03-09 16:13:40 +00007715 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00007716 S.PDiag(diag::err_typecheck_incomplete_type_not_modifiable_lvalue)
Anders Carlssonb7906612009-08-26 23:45:07 +00007717 << E->getSourceRange());
Chris Lattner5cf216b2008-01-04 18:04:52 +00007718 case Expr::MLV_DuplicateVectorComponents:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007719 Diag = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
7720 break;
Steve Naroff4f6a7d72008-09-26 14:41:28 +00007721 case Expr::MLV_NotBlockQualified:
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007722 Diag = diag::err_block_decl_ref_not_modifiable_lvalue;
7723 break;
Fariborz Jahanian5daf5702008-11-22 18:39:36 +00007724 case Expr::MLV_ReadonlyProperty:
7725 Diag = diag::error_readonly_property_assignment;
7726 break;
Fariborz Jahanianba8d2d62008-11-22 20:25:50 +00007727 case Expr::MLV_NoSetterProperty:
7728 Diag = diag::error_nosetter_property_assignment;
7729 break;
Fariborz Jahanian077f4902011-03-26 19:48:30 +00007730 case Expr::MLV_InvalidMessageExpression:
7731 Diag = diag::error_readonly_message_assignment;
7732 break;
Fariborz Jahanian2514a302009-12-15 23:59:41 +00007733 case Expr::MLV_SubObjCPropertySetting:
7734 Diag = diag::error_no_subobject_property_setting;
7735 break;
Reid Spencer5f016e22007-07-11 17:01:13 +00007736 }
Steve Naroffd1861fd2007-07-31 12:34:36 +00007737
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007738 SourceRange Assign;
7739 if (Loc != OrigLoc)
7740 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007741 if (NeedType)
Daniel Dunbar44e35f72009-04-15 00:08:05 +00007742 S.Diag(Loc, Diag) << E->getType() << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007743 else
Mike Stump1eb44332009-09-09 15:08:12 +00007744 S.Diag(Loc, Diag) << E->getSourceRange() << Assign;
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007745 return true;
7746}
7747
7748
7749
7750// C99 6.5.16.1
John Wiegley429bb272011-04-08 18:41:53 +00007751QualType Sema::CheckAssignmentOperands(Expr *LHS, ExprResult &RHS,
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007752 SourceLocation Loc,
7753 QualType CompoundType) {
7754 // Verify that LHS is a modifiable lvalue, and emit error if not.
7755 if (CheckForModifiableLvalue(LHS, Loc, *this))
Chris Lattnerf67bd9f2008-11-18 01:22:49 +00007756 return QualType();
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007757
7758 QualType LHSType = LHS->getType();
John Wiegley429bb272011-04-08 18:41:53 +00007759 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() : CompoundType;
Chris Lattner5cf216b2008-01-04 18:04:52 +00007760 AssignConvertType ConvTy;
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007761 if (CompoundType.isNull()) {
Fariborz Jahaniane2a901a2010-06-07 22:02:01 +00007762 QualType LHSTy(LHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00007763 // Simple assignment "x = y".
John Wiegley429bb272011-04-08 18:41:53 +00007764 if (LHS->getObjectKind() == OK_ObjCProperty) {
7765 ExprResult LHSResult = Owned(LHS);
7766 ConvertPropertyForLValue(LHSResult, RHS, LHSTy);
7767 if (LHSResult.isInvalid())
7768 return QualType();
7769 LHS = LHSResult.take();
7770 }
Fariborz Jahaniane2a901a2010-06-07 22:02:01 +00007771 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
John Wiegley429bb272011-04-08 18:41:53 +00007772 if (RHS.isInvalid())
7773 return QualType();
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007774 // Special case of NSObject attributes on c-style pointer types.
7775 if (ConvTy == IncompatiblePointer &&
7776 ((Context.isObjCNSObjectType(LHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00007777 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007778 (Context.isObjCNSObjectType(RHSType) &&
Steve Narofff4954562009-07-16 15:41:00 +00007779 LHSType->isObjCObjectPointerType())))
Fariborz Jahanianfa23c1d2009-01-13 23:34:40 +00007780 ConvTy = Compatible;
Mike Stumpeed9cac2009-02-19 03:04:26 +00007781
John McCallf89e55a2010-11-18 06:31:45 +00007782 if (ConvTy == Compatible &&
7783 getLangOptions().ObjCNonFragileABI &&
7784 LHSType->isObjCObjectType())
7785 Diag(Loc, diag::err_assignment_requires_nonfragile_object)
7786 << LHSType;
7787
Chris Lattner2c156472008-08-21 18:04:13 +00007788 // If the RHS is a unary plus or minus, check to see if they = and + are
7789 // right next to each other. If so, the user may have typo'd "x =+ 4"
7790 // instead of "x += 4".
John Wiegley429bb272011-04-08 18:41:53 +00007791 Expr *RHSCheck = RHS.get();
Chris Lattner2c156472008-08-21 18:04:13 +00007792 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
7793 RHSCheck = ICE->getSubExpr();
7794 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
John McCall2de56d12010-08-25 11:45:40 +00007795 if ((UO->getOpcode() == UO_Plus ||
7796 UO->getOpcode() == UO_Minus) &&
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007797 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattner2c156472008-08-21 18:04:13 +00007798 // Only if the two operators are exactly adjacent.
Chris Lattner399bd1b2009-03-08 06:51:10 +00007799 Loc.getFileLocWithOffset(1) == UO->getOperatorLoc() &&
7800 // And there is a space or other character before the subexpr of the
7801 // unary +/-. We don't want to warn on "x=-1".
Chris Lattner3e872092009-03-09 07:11:10 +00007802 Loc.getFileLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
7803 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattnerd3a94e22008-11-20 06:06:08 +00007804 Diag(Loc, diag::warn_not_compound_assign)
John McCall2de56d12010-08-25 11:45:40 +00007805 << (UO->getOpcode() == UO_Plus ? "+" : "-")
Chris Lattnerd3a94e22008-11-20 06:06:08 +00007806 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner399bd1b2009-03-08 06:51:10 +00007807 }
Chris Lattner2c156472008-08-21 18:04:13 +00007808 }
7809 } else {
7810 // Compound assignment "x += y"
Douglas Gregorb608b982011-01-28 02:26:04 +00007811 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
Chris Lattner2c156472008-08-21 18:04:13 +00007812 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00007813
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007814 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
John Wiegley429bb272011-04-08 18:41:53 +00007815 RHS.get(), AA_Assigning))
Chris Lattner5cf216b2008-01-04 18:04:52 +00007816 return QualType();
Mike Stumpeed9cac2009-02-19 03:04:26 +00007817
Chris Lattner8b5dec32010-07-07 06:14:23 +00007818
7819 // Check to see if the destination operand is a dereferenced null pointer. If
7820 // so, and if not volatile-qualified, this is undefined behavior that the
7821 // optimizer will delete, so warn about it. People sometimes try to use this
7822 // to get a deterministic trap and are surprised by clang's behavior. This
7823 // only handles the pattern "*null = whatever", which is a very syntactic
7824 // check.
7825 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS->IgnoreParenCasts()))
John McCall2de56d12010-08-25 11:45:40 +00007826 if (UO->getOpcode() == UO_Deref &&
Chris Lattner8b5dec32010-07-07 06:14:23 +00007827 UO->getSubExpr()->IgnoreParenCasts()->
7828 isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull) &&
7829 !UO->getType().isVolatileQualified()) {
Ted Kremenek351ba912011-02-23 01:52:04 +00007830 DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
7831 PDiag(diag::warn_indirection_through_null)
7832 << UO->getSubExpr()->getSourceRange());
7833 DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
7834 PDiag(diag::note_indirection_through_null));
Chris Lattner8b5dec32010-07-07 06:14:23 +00007835 }
7836
Ted Kremeneka0125d82011-02-16 01:57:07 +00007837 // Check for trivial buffer overflows.
Ted Kremenek3aea4da2011-03-01 18:41:00 +00007838 CheckArrayAccess(LHS->IgnoreParenCasts());
Ted Kremeneka0125d82011-02-16 01:57:07 +00007839
Reid Spencer5f016e22007-07-11 17:01:13 +00007840 // C99 6.5.16p3: The type of an assignment expression is the type of the
7841 // left operand unless the left operand has qualified type, in which case
Mike Stumpeed9cac2009-02-19 03:04:26 +00007842 // it is the unqualified version of the type of the left operand.
Reid Spencer5f016e22007-07-11 17:01:13 +00007843 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
7844 // is converted to the type of the assignment expression (above).
Chris Lattner73d0d4f2007-08-30 17:45:32 +00007845 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregor2d833e32009-05-02 00:36:19 +00007846 // operand.
John McCall2bf6f492010-10-12 02:19:57 +00007847 return (getLangOptions().CPlusPlus
7848 ? LHSType : LHSType.getUnqualifiedType());
Reid Spencer5f016e22007-07-11 17:01:13 +00007849}
7850
Chris Lattner29a1cfb2008-11-18 01:30:42 +00007851// C99 6.5.17
John Wiegley429bb272011-04-08 18:41:53 +00007852static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
John McCall09431682010-11-18 19:01:18 +00007853 SourceLocation Loc) {
John Wiegley429bb272011-04-08 18:41:53 +00007854 S.DiagnoseUnusedExprResult(LHS.get());
Argyrios Kyrtzidis25973452010-06-30 10:53:14 +00007855
John McCallfb8721c2011-04-10 19:13:55 +00007856 LHS = S.CheckPlaceholderExpr(LHS.take());
7857 RHS = S.CheckPlaceholderExpr(RHS.take());
John Wiegley429bb272011-04-08 18:41:53 +00007858 if (LHS.isInvalid() || RHS.isInvalid())
Douglas Gregor7ad5d422010-11-09 21:07:58 +00007859 return QualType();
7860
John McCallcf2e5062010-10-12 07:14:40 +00007861 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
7862 // operands, but not unary promotions.
7863 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
Eli Friedmanb1d796d2009-03-23 00:24:07 +00007864
John McCallf6a16482010-12-04 03:47:34 +00007865 // So we treat the LHS as a ignored value, and in C++ we allow the
7866 // containing site to determine what should be done with the RHS.
John Wiegley429bb272011-04-08 18:41:53 +00007867 LHS = S.IgnoredValueConversions(LHS.take());
7868 if (LHS.isInvalid())
7869 return QualType();
John McCallf6a16482010-12-04 03:47:34 +00007870
7871 if (!S.getLangOptions().CPlusPlus) {
John Wiegley429bb272011-04-08 18:41:53 +00007872 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.take());
7873 if (RHS.isInvalid())
7874 return QualType();
7875 if (!RHS.get()->getType()->isVoidType())
7876 S.RequireCompleteType(Loc, RHS.get()->getType(), diag::err_incomplete_type);
John McCallcf2e5062010-10-12 07:14:40 +00007877 }
Eli Friedmanb1d796d2009-03-23 00:24:07 +00007878
John Wiegley429bb272011-04-08 18:41:53 +00007879 return RHS.get()->getType();
Reid Spencer5f016e22007-07-11 17:01:13 +00007880}
7881
Steve Naroff49b45262007-07-13 16:58:59 +00007882/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
7883/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
John McCall09431682010-11-18 19:01:18 +00007884static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
7885 ExprValueKind &VK,
7886 SourceLocation OpLoc,
7887 bool isInc, bool isPrefix) {
Sebastian Redl28507842009-02-26 14:39:58 +00007888 if (Op->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00007889 return S.Context.DependentTy;
Sebastian Redl28507842009-02-26 14:39:58 +00007890
Chris Lattner3528d352008-11-21 07:05:48 +00007891 QualType ResType = Op->getType();
7892 assert(!ResType.isNull() && "no type for increment/decrement expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00007893
John McCall09431682010-11-18 19:01:18 +00007894 if (S.getLangOptions().CPlusPlus && ResType->isBooleanType()) {
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007895 // Decrement of bool is not allowed.
7896 if (!isInc) {
John McCall09431682010-11-18 19:01:18 +00007897 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007898 return QualType();
7899 }
7900 // Increment of bool sets it to true, but is deprecated.
John McCall09431682010-11-18 19:01:18 +00007901 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
Sebastian Redle6d5a4a2008-12-20 09:35:34 +00007902 } else if (ResType->isRealType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00007903 // OK!
Steve Naroff58f9f2c2009-07-14 18:25:06 +00007904 } else if (ResType->isAnyPointerType()) {
7905 QualType PointeeTy = ResType->getPointeeType();
Mike Stump1eb44332009-09-09 15:08:12 +00007906
Chris Lattner3528d352008-11-21 07:05:48 +00007907 // C99 6.5.2.4p2, 6.5.6p2
Steve Naroff14108da2009-07-10 23:34:53 +00007908 if (PointeeTy->isVoidType()) {
John McCall09431682010-11-18 19:01:18 +00007909 if (S.getLangOptions().CPlusPlus) {
7910 S.Diag(OpLoc, diag::err_typecheck_pointer_arith_void_type)
Douglas Gregorc983b862009-01-23 00:36:41 +00007911 << Op->getSourceRange();
7912 return QualType();
7913 }
7914
7915 // Pointer to void is a GNU extension in C.
John McCall09431682010-11-18 19:01:18 +00007916 S.Diag(OpLoc, diag::ext_gnu_void_ptr) << Op->getSourceRange();
Steve Naroff14108da2009-07-10 23:34:53 +00007917 } else if (PointeeTy->isFunctionType()) {
John McCall09431682010-11-18 19:01:18 +00007918 if (S.getLangOptions().CPlusPlus) {
7919 S.Diag(OpLoc, diag::err_typecheck_pointer_arith_function_type)
Douglas Gregorc983b862009-01-23 00:36:41 +00007920 << Op->getType() << Op->getSourceRange();
7921 return QualType();
7922 }
7923
John McCall09431682010-11-18 19:01:18 +00007924 S.Diag(OpLoc, diag::ext_gnu_ptr_func_arith)
Chris Lattnerd1625842008-11-24 06:25:27 +00007925 << ResType << Op->getSourceRange();
John McCall09431682010-11-18 19:01:18 +00007926 } else if (S.RequireCompleteType(OpLoc, PointeeTy,
7927 S.PDiag(diag::err_typecheck_arithmetic_incomplete_type)
Mike Stump1eb44332009-09-09 15:08:12 +00007928 << Op->getSourceRange()
Anders Carlssond497ba72009-08-26 22:59:12 +00007929 << ResType))
Douglas Gregor4ec339f2009-01-19 19:26:10 +00007930 return QualType();
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00007931 // Diagnose bad cases where we step over interface counts.
John McCall09431682010-11-18 19:01:18 +00007932 else if (PointeeTy->isObjCObjectType() && S.LangOpts.ObjCNonFragileABI) {
7933 S.Diag(OpLoc, diag::err_arithmetic_nonfragile_interface)
Fariborz Jahanian9f8a04f2009-07-16 17:59:14 +00007934 << PointeeTy << Op->getSourceRange();
7935 return QualType();
7936 }
Eli Friedman5b088a12010-01-03 00:20:48 +00007937 } else if (ResType->isAnyComplexType()) {
Chris Lattner3528d352008-11-21 07:05:48 +00007938 // C99 does not support ++/-- on complex types, we allow as an extension.
John McCall09431682010-11-18 19:01:18 +00007939 S.Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattnerd1625842008-11-24 06:25:27 +00007940 << ResType << Op->getSourceRange();
John McCall2cd11fe2010-10-12 02:09:17 +00007941 } else if (ResType->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00007942 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall2cd11fe2010-10-12 02:09:17 +00007943 if (PR.isInvalid()) return QualType();
John McCall09431682010-11-18 19:01:18 +00007944 return CheckIncrementDecrementOperand(S, PR.take(), VK, OpLoc,
7945 isInc, isPrefix);
Anton Yartsev683564a2011-02-07 02:17:30 +00007946 } else if (S.getLangOptions().AltiVec && ResType->isVectorType()) {
7947 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
Chris Lattner3528d352008-11-21 07:05:48 +00007948 } else {
John McCall09431682010-11-18 19:01:18 +00007949 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Douglas Gregor5cc07df2009-12-15 16:44:32 +00007950 << ResType << int(isInc) << Op->getSourceRange();
Chris Lattner3528d352008-11-21 07:05:48 +00007951 return QualType();
Reid Spencer5f016e22007-07-11 17:01:13 +00007952 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00007953 // At this point, we know we have a real, complex or pointer type.
Steve Naroffdd10e022007-08-23 21:37:33 +00007954 // Now make sure the operand is a modifiable lvalue.
John McCall09431682010-11-18 19:01:18 +00007955 if (CheckForModifiableLvalue(Op, OpLoc, S))
Reid Spencer5f016e22007-07-11 17:01:13 +00007956 return QualType();
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00007957 // In C++, a prefix increment is the same type as the operand. Otherwise
7958 // (in C or with postfix), the increment is the unqualified type of the
7959 // operand.
John McCall09431682010-11-18 19:01:18 +00007960 if (isPrefix && S.getLangOptions().CPlusPlus) {
7961 VK = VK_LValue;
7962 return ResType;
7963 } else {
7964 VK = VK_RValue;
7965 return ResType.getUnqualifiedType();
7966 }
Reid Spencer5f016e22007-07-11 17:01:13 +00007967}
7968
John Wiegley429bb272011-04-08 18:41:53 +00007969ExprResult Sema::ConvertPropertyForRValue(Expr *E) {
John McCallf6a16482010-12-04 03:47:34 +00007970 assert(E->getValueKind() == VK_LValue &&
7971 E->getObjectKind() == OK_ObjCProperty);
7972 const ObjCPropertyRefExpr *PRE = E->getObjCProperty();
7973
7974 ExprValueKind VK = VK_RValue;
7975 if (PRE->isImplicitProperty()) {
Fariborz Jahanian99130e52010-12-22 19:46:35 +00007976 if (const ObjCMethodDecl *GetterMethod =
7977 PRE->getImplicitPropertyGetter()) {
7978 QualType Result = GetterMethod->getResultType();
7979 VK = Expr::getValueKindForType(Result);
7980 }
7981 else {
7982 Diag(PRE->getLocation(), diag::err_getter_not_found)
7983 << PRE->getBase()->getType();
7984 }
John McCallf6a16482010-12-04 03:47:34 +00007985 }
7986
7987 E = ImplicitCastExpr::Create(Context, E->getType(), CK_GetObjCProperty,
7988 E, 0, VK);
John McCalldb67e2f2010-12-10 01:49:45 +00007989
7990 ExprResult Result = MaybeBindToTemporary(E);
7991 if (!Result.isInvalid())
7992 E = Result.take();
John Wiegley429bb272011-04-08 18:41:53 +00007993
7994 return Owned(E);
John McCallf6a16482010-12-04 03:47:34 +00007995}
7996
John Wiegley429bb272011-04-08 18:41:53 +00007997void Sema::ConvertPropertyForLValue(ExprResult &LHS, ExprResult &RHS, QualType &LHSTy) {
7998 assert(LHS.get()->getValueKind() == VK_LValue &&
7999 LHS.get()->getObjectKind() == OK_ObjCProperty);
8000 const ObjCPropertyRefExpr *PropRef = LHS.get()->getObjCProperty();
John McCallf6a16482010-12-04 03:47:34 +00008001
John Wiegley429bb272011-04-08 18:41:53 +00008002 if (PropRef->isImplicitProperty()) {
John McCallf6a16482010-12-04 03:47:34 +00008003 // If using property-dot syntax notation for assignment, and there is a
8004 // setter, RHS expression is being passed to the setter argument. So,
8005 // type conversion (and comparison) is RHS to setter's argument type.
John Wiegley429bb272011-04-08 18:41:53 +00008006 if (const ObjCMethodDecl *SetterMD = PropRef->getImplicitPropertySetter()) {
John McCallf6a16482010-12-04 03:47:34 +00008007 ObjCMethodDecl::param_iterator P = SetterMD->param_begin();
8008 LHSTy = (*P)->getType();
8009
8010 // Otherwise, if the getter returns an l-value, just call that.
8011 } else {
John Wiegley429bb272011-04-08 18:41:53 +00008012 QualType Result = PropRef->getImplicitPropertyGetter()->getResultType();
John McCallf6a16482010-12-04 03:47:34 +00008013 ExprValueKind VK = Expr::getValueKindForType(Result);
8014 if (VK == VK_LValue) {
John Wiegley429bb272011-04-08 18:41:53 +00008015 LHS = ImplicitCastExpr::Create(Context, LHS.get()->getType(),
8016 CK_GetObjCProperty, LHS.take(), 0, VK);
John McCallf6a16482010-12-04 03:47:34 +00008017 return;
John McCall12f78a62010-12-02 01:19:52 +00008018 }
Fariborz Jahanianc4e1a682010-09-14 23:02:38 +00008019 }
John McCallf6a16482010-12-04 03:47:34 +00008020 }
8021
8022 if (getLangOptions().CPlusPlus && LHSTy->isRecordType()) {
Fariborz Jahanianc4e1a682010-09-14 23:02:38 +00008023 InitializedEntity Entity =
Fariborz Jahanian745da3a2010-09-24 17:30:16 +00008024 InitializedEntity::InitializeParameter(Context, LHSTy);
John Wiegley429bb272011-04-08 18:41:53 +00008025 ExprResult ArgE = PerformCopyInitialization(Entity, SourceLocation(), RHS);
Fariborz Jahanianc4e1a682010-09-14 23:02:38 +00008026 if (!ArgE.isInvalid())
John Wiegley429bb272011-04-08 18:41:53 +00008027 RHS = ArgE;
Fariborz Jahanianc4e1a682010-09-14 23:02:38 +00008028 }
8029}
8030
8031
Anders Carlsson369dee42008-02-01 07:15:58 +00008032/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Reid Spencer5f016e22007-07-11 17:01:13 +00008033/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00008034/// where the declaration is needed for type checking. We only need to
8035/// handle cases when the expression references a function designator
8036/// or is an lvalue. Here are some examples:
8037/// - &(x) => x
8038/// - &*****f => f for f a function designator.
8039/// - &s.xx => s
8040/// - &s.zz[1].yy -> s, if zz is an array
8041/// - *(x + 1) -> x, if x is an array
8042/// - &"123"[2] -> 0
8043/// - & __real__ x -> x
John McCall5808ce42011-02-03 08:15:49 +00008044static ValueDecl *getPrimaryDecl(Expr *E) {
Chris Lattnerf0467b32008-04-02 04:24:33 +00008045 switch (E->getStmtClass()) {
Reid Spencer5f016e22007-07-11 17:01:13 +00008046 case Stmt::DeclRefExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00008047 return cast<DeclRefExpr>(E)->getDecl();
Reid Spencer5f016e22007-07-11 17:01:13 +00008048 case Stmt::MemberExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00008049 // If this is an arrow operator, the address is an offset from
8050 // the base's value, so the object the base refers to is
8051 // irrelevant.
Chris Lattnerf0467b32008-04-02 04:24:33 +00008052 if (cast<MemberExpr>(E)->isArrow())
Chris Lattnerf82228f2007-11-16 17:46:48 +00008053 return 0;
Eli Friedman23d58ce2009-04-20 08:23:18 +00008054 // Otherwise, the expression refers to a part of the base
Chris Lattnerf0467b32008-04-02 04:24:33 +00008055 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson369dee42008-02-01 07:15:58 +00008056 case Stmt::ArraySubscriptExprClass: {
Mike Stump390b4cc2009-05-16 07:39:55 +00008057 // FIXME: This code shouldn't be necessary! We should catch the implicit
8058 // promotion of register arrays earlier.
Eli Friedman23d58ce2009-04-20 08:23:18 +00008059 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
8060 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
8061 if (ICE->getSubExpr()->getType()->isArrayType())
8062 return getPrimaryDecl(ICE->getSubExpr());
8063 }
8064 return 0;
Anders Carlsson369dee42008-02-01 07:15:58 +00008065 }
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00008066 case Stmt::UnaryOperatorClass: {
8067 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stumpeed9cac2009-02-19 03:04:26 +00008068
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00008069 switch(UO->getOpcode()) {
John McCall2de56d12010-08-25 11:45:40 +00008070 case UO_Real:
8071 case UO_Imag:
8072 case UO_Extension:
Daniel Dunbar1e76ce62008-08-04 20:02:37 +00008073 return getPrimaryDecl(UO->getSubExpr());
8074 default:
8075 return 0;
8076 }
8077 }
Reid Spencer5f016e22007-07-11 17:01:13 +00008078 case Stmt::ParenExprClass:
Chris Lattnerf0467b32008-04-02 04:24:33 +00008079 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattnerf82228f2007-11-16 17:46:48 +00008080 case Stmt::ImplicitCastExprClass:
Eli Friedman23d58ce2009-04-20 08:23:18 +00008081 // If the result of an implicit cast is an l-value, we care about
8082 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattnerf0467b32008-04-02 04:24:33 +00008083 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Reid Spencer5f016e22007-07-11 17:01:13 +00008084 default:
8085 return 0;
8086 }
8087}
8088
8089/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stumpeed9cac2009-02-19 03:04:26 +00008090/// designator or an lvalue designating an object. If it is an lvalue, the
Reid Spencer5f016e22007-07-11 17:01:13 +00008091/// object cannot be declared with storage class register or be a bit field.
Mike Stumpeed9cac2009-02-19 03:04:26 +00008092/// Note: The usual conversions are *not* applied to the operand of the &
Reid Spencer5f016e22007-07-11 17:01:13 +00008093/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stumpeed9cac2009-02-19 03:04:26 +00008094/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregor904eed32008-11-10 20:40:00 +00008095/// we allow the '&' but retain the overloaded-function type.
John McCall09431682010-11-18 19:01:18 +00008096static QualType CheckAddressOfOperand(Sema &S, Expr *OrigOp,
8097 SourceLocation OpLoc) {
John McCall9c72c602010-08-27 09:08:28 +00008098 if (OrigOp->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00008099 return S.Context.DependentTy;
8100 if (OrigOp->getType() == S.Context.OverloadTy)
8101 return S.Context.OverloadTy;
John McCall755d8492011-04-12 00:42:48 +00008102 if (OrigOp->getType() == S.Context.UnknownAnyTy)
8103 return S.Context.UnknownAnyTy;
John McCall9c72c602010-08-27 09:08:28 +00008104
John McCall755d8492011-04-12 00:42:48 +00008105 assert(!OrigOp->getType()->isPlaceholderType());
John McCall2cd11fe2010-10-12 02:09:17 +00008106
John McCall9c72c602010-08-27 09:08:28 +00008107 // Make sure to ignore parentheses in subsequent checks
8108 Expr *op = OrigOp->IgnoreParens();
Douglas Gregor9103bb22008-12-17 22:52:20 +00008109
John McCall09431682010-11-18 19:01:18 +00008110 if (S.getLangOptions().C99) {
Steve Naroff08f19672008-01-13 17:10:08 +00008111 // Implement C99-only parts of addressof rules.
8112 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
John McCall2de56d12010-08-25 11:45:40 +00008113 if (uOp->getOpcode() == UO_Deref)
Steve Naroff08f19672008-01-13 17:10:08 +00008114 // Per C99 6.5.3.2, the address of a deref always returns a valid result
8115 // (assuming the deref expression is valid).
8116 return uOp->getSubExpr()->getType();
8117 }
8118 // Technically, there should be a check for array subscript
8119 // expressions here, but the result of one is always an lvalue anyway.
8120 }
John McCall5808ce42011-02-03 08:15:49 +00008121 ValueDecl *dcl = getPrimaryDecl(op);
John McCall7eb0a9e2010-11-24 05:12:34 +00008122 Expr::LValueClassification lval = op->ClassifyLValue(S.Context);
Nuno Lopes6b6609f2008-12-16 22:59:47 +00008123
Fariborz Jahanian077f4902011-03-26 19:48:30 +00008124 if (lval == Expr::LV_ClassTemporary) {
John McCall09431682010-11-18 19:01:18 +00008125 bool sfinae = S.isSFINAEContext();
8126 S.Diag(OpLoc, sfinae ? diag::err_typecheck_addrof_class_temporary
8127 : diag::ext_typecheck_addrof_class_temporary)
Douglas Gregore873fb72010-02-16 21:39:57 +00008128 << op->getType() << op->getSourceRange();
John McCall09431682010-11-18 19:01:18 +00008129 if (sfinae)
Douglas Gregore873fb72010-02-16 21:39:57 +00008130 return QualType();
John McCall9c72c602010-08-27 09:08:28 +00008131 } else if (isa<ObjCSelectorExpr>(op)) {
John McCall09431682010-11-18 19:01:18 +00008132 return S.Context.getPointerType(op->getType());
John McCall9c72c602010-08-27 09:08:28 +00008133 } else if (lval == Expr::LV_MemberFunction) {
8134 // If it's an instance method, make a member pointer.
8135 // The expression must have exactly the form &A::foo.
8136
8137 // If the underlying expression isn't a decl ref, give up.
8138 if (!isa<DeclRefExpr>(op)) {
John McCall09431682010-11-18 19:01:18 +00008139 S.Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
John McCall9c72c602010-08-27 09:08:28 +00008140 << OrigOp->getSourceRange();
8141 return QualType();
8142 }
8143 DeclRefExpr *DRE = cast<DeclRefExpr>(op);
8144 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
8145
8146 // The id-expression was parenthesized.
8147 if (OrigOp != DRE) {
John McCall09431682010-11-18 19:01:18 +00008148 S.Diag(OpLoc, diag::err_parens_pointer_member_function)
John McCall9c72c602010-08-27 09:08:28 +00008149 << OrigOp->getSourceRange();
8150
8151 // The method was named without a qualifier.
8152 } else if (!DRE->getQualifier()) {
John McCall09431682010-11-18 19:01:18 +00008153 S.Diag(OpLoc, diag::err_unqualified_pointer_member_function)
John McCall9c72c602010-08-27 09:08:28 +00008154 << op->getSourceRange();
8155 }
8156
John McCall09431682010-11-18 19:01:18 +00008157 return S.Context.getMemberPointerType(op->getType(),
8158 S.Context.getTypeDeclType(MD->getParent()).getTypePtr());
John McCall9c72c602010-08-27 09:08:28 +00008159 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
Eli Friedman441cf102009-05-16 23:27:50 +00008160 // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00008161 // The operand must be either an l-value or a function designator
Eli Friedman441cf102009-05-16 23:27:50 +00008162 if (!op->getType()->isFunctionType()) {
Chris Lattnerf82228f2007-11-16 17:46:48 +00008163 // FIXME: emit more specific diag...
John McCall09431682010-11-18 19:01:18 +00008164 S.Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00008165 << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00008166 return QualType();
8167 }
John McCall7eb0a9e2010-11-24 05:12:34 +00008168 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
Eli Friedman23d58ce2009-04-20 08:23:18 +00008169 // The operand cannot be a bit-field
John McCall09431682010-11-18 19:01:18 +00008170 S.Diag(OpLoc, diag::err_typecheck_address_of)
Eli Friedman23d58ce2009-04-20 08:23:18 +00008171 << "bit-field" << op->getSourceRange();
Douglas Gregor86f19402008-12-20 23:49:58 +00008172 return QualType();
John McCall7eb0a9e2010-11-24 05:12:34 +00008173 } else if (op->getObjectKind() == OK_VectorComponent) {
Eli Friedman23d58ce2009-04-20 08:23:18 +00008174 // The operand cannot be an element of a vector
John McCall09431682010-11-18 19:01:18 +00008175 S.Diag(OpLoc, diag::err_typecheck_address_of)
Nate Begemanb104b1f2009-02-15 22:45:20 +00008176 << "vector element" << op->getSourceRange();
Steve Naroffbcb2b612008-02-29 23:30:25 +00008177 return QualType();
John McCall7eb0a9e2010-11-24 05:12:34 +00008178 } else if (op->getObjectKind() == OK_ObjCProperty) {
Fariborz Jahanian0337f212009-07-07 18:50:52 +00008179 // cannot take address of a property expression.
John McCall09431682010-11-18 19:01:18 +00008180 S.Diag(OpLoc, diag::err_typecheck_address_of)
Fariborz Jahanian0337f212009-07-07 18:50:52 +00008181 << "property expression" << op->getSourceRange();
8182 return QualType();
Steve Naroffbcb2b612008-02-29 23:30:25 +00008183 } else if (dcl) { // C99 6.5.3.2p1
Mike Stumpeed9cac2009-02-19 03:04:26 +00008184 // We have an lvalue with a decl. Make sure the decl is not declared
Reid Spencer5f016e22007-07-11 17:01:13 +00008185 // with the register storage-class specifier.
8186 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Fariborz Jahanian4020f872010-08-24 22:21:48 +00008187 // in C++ it is not error to take address of a register
8188 // variable (c++03 7.1.1P3)
John McCalld931b082010-08-26 03:08:43 +00008189 if (vd->getStorageClass() == SC_Register &&
John McCall09431682010-11-18 19:01:18 +00008190 !S.getLangOptions().CPlusPlus) {
8191 S.Diag(OpLoc, diag::err_typecheck_address_of)
Chris Lattnerd3a94e22008-11-20 06:06:08 +00008192 << "register variable" << op->getSourceRange();
Reid Spencer5f016e22007-07-11 17:01:13 +00008193 return QualType();
8194 }
John McCallba135432009-11-21 08:51:07 +00008195 } else if (isa<FunctionTemplateDecl>(dcl)) {
John McCall09431682010-11-18 19:01:18 +00008196 return S.Context.OverloadTy;
John McCall5808ce42011-02-03 08:15:49 +00008197 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
Douglas Gregor29882052008-12-10 21:26:49 +00008198 // Okay: we can take the address of a field.
Sebastian Redlebc07d52009-02-03 20:19:35 +00008199 // Could be a pointer to member, though, if there is an explicit
8200 // scope qualifier for the class.
Douglas Gregora2813ce2009-10-23 18:54:35 +00008201 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redlebc07d52009-02-03 20:19:35 +00008202 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00008203 if (Ctx && Ctx->isRecord()) {
John McCall5808ce42011-02-03 08:15:49 +00008204 if (dcl->getType()->isReferenceType()) {
John McCall09431682010-11-18 19:01:18 +00008205 S.Diag(OpLoc,
8206 diag::err_cannot_form_pointer_to_member_of_reference_type)
John McCall5808ce42011-02-03 08:15:49 +00008207 << dcl->getDeclName() << dcl->getType();
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00008208 return QualType();
8209 }
Mike Stump1eb44332009-09-09 15:08:12 +00008210
Argyrios Kyrtzidis0413db42011-01-31 07:04:29 +00008211 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
8212 Ctx = Ctx->getParent();
John McCall09431682010-11-18 19:01:18 +00008213 return S.Context.getMemberPointerType(op->getType(),
8214 S.Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
Anders Carlssonf9e48bd2009-07-08 21:45:58 +00008215 }
Sebastian Redlebc07d52009-02-03 20:19:35 +00008216 }
Anders Carlsson196f7d02009-05-16 21:43:42 +00008217 } else if (!isa<FunctionDecl>(dcl))
Reid Spencer5f016e22007-07-11 17:01:13 +00008218 assert(0 && "Unknown/unexpected decl type");
Reid Spencer5f016e22007-07-11 17:01:13 +00008219 }
Sebastian Redl33b399a2009-02-04 21:23:32 +00008220
Eli Friedman441cf102009-05-16 23:27:50 +00008221 if (lval == Expr::LV_IncompleteVoidType) {
8222 // Taking the address of a void variable is technically illegal, but we
8223 // allow it in cases which are otherwise valid.
8224 // Example: "extern void x; void* y = &x;".
John McCall09431682010-11-18 19:01:18 +00008225 S.Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
Eli Friedman441cf102009-05-16 23:27:50 +00008226 }
8227
Reid Spencer5f016e22007-07-11 17:01:13 +00008228 // If the operand has type "type", the result has type "pointer to type".
Douglas Gregor8f70ddb2010-07-29 16:05:45 +00008229 if (op->getType()->isObjCObjectType())
John McCall09431682010-11-18 19:01:18 +00008230 return S.Context.getObjCObjectPointerType(op->getType());
8231 return S.Context.getPointerType(op->getType());
Reid Spencer5f016e22007-07-11 17:01:13 +00008232}
8233
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00008234/// CheckIndirectionOperand - Type check unary indirection (prefix '*').
John McCall09431682010-11-18 19:01:18 +00008235static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
8236 SourceLocation OpLoc) {
Sebastian Redl28507842009-02-26 14:39:58 +00008237 if (Op->isTypeDependent())
John McCall09431682010-11-18 19:01:18 +00008238 return S.Context.DependentTy;
Sebastian Redl28507842009-02-26 14:39:58 +00008239
John Wiegley429bb272011-04-08 18:41:53 +00008240 ExprResult ConvResult = S.UsualUnaryConversions(Op);
8241 if (ConvResult.isInvalid())
8242 return QualType();
8243 Op = ConvResult.take();
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00008244 QualType OpTy = Op->getType();
8245 QualType Result;
8246
8247 // Note that per both C89 and C99, indirection is always legal, even if OpTy
8248 // is an incomplete type or void. It would be possible to warn about
8249 // dereferencing a void pointer, but it's completely well-defined, and such a
8250 // warning is unlikely to catch any mistakes.
8251 if (const PointerType *PT = OpTy->getAs<PointerType>())
8252 Result = PT->getPointeeType();
8253 else if (const ObjCObjectPointerType *OPT =
8254 OpTy->getAs<ObjCObjectPointerType>())
8255 Result = OPT->getPointeeType();
John McCall2cd11fe2010-10-12 02:09:17 +00008256 else {
John McCallfb8721c2011-04-10 19:13:55 +00008257 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall2cd11fe2010-10-12 02:09:17 +00008258 if (PR.isInvalid()) return QualType();
John McCall09431682010-11-18 19:01:18 +00008259 if (PR.take() != Op)
8260 return CheckIndirectionOperand(S, PR.take(), VK, OpLoc);
John McCall2cd11fe2010-10-12 02:09:17 +00008261 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00008262
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00008263 if (Result.isNull()) {
John McCall09431682010-11-18 19:01:18 +00008264 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00008265 << OpTy << Op->getSourceRange();
8266 return QualType();
8267 }
John McCall09431682010-11-18 19:01:18 +00008268
8269 // Dereferences are usually l-values...
8270 VK = VK_LValue;
8271
8272 // ...except that certain expressions are never l-values in C.
8273 if (!S.getLangOptions().CPlusPlus &&
8274 IsCForbiddenLValueType(S.Context, Result))
8275 VK = VK_RValue;
Chris Lattnerfd79a9d2010-07-05 19:17:26 +00008276
8277 return Result;
Reid Spencer5f016e22007-07-11 17:01:13 +00008278}
8279
John McCall2de56d12010-08-25 11:45:40 +00008280static inline BinaryOperatorKind ConvertTokenKindToBinaryOpcode(
Reid Spencer5f016e22007-07-11 17:01:13 +00008281 tok::TokenKind Kind) {
John McCall2de56d12010-08-25 11:45:40 +00008282 BinaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00008283 switch (Kind) {
8284 default: assert(0 && "Unknown binop!");
John McCall2de56d12010-08-25 11:45:40 +00008285 case tok::periodstar: Opc = BO_PtrMemD; break;
8286 case tok::arrowstar: Opc = BO_PtrMemI; break;
8287 case tok::star: Opc = BO_Mul; break;
8288 case tok::slash: Opc = BO_Div; break;
8289 case tok::percent: Opc = BO_Rem; break;
8290 case tok::plus: Opc = BO_Add; break;
8291 case tok::minus: Opc = BO_Sub; break;
8292 case tok::lessless: Opc = BO_Shl; break;
8293 case tok::greatergreater: Opc = BO_Shr; break;
8294 case tok::lessequal: Opc = BO_LE; break;
8295 case tok::less: Opc = BO_LT; break;
8296 case tok::greaterequal: Opc = BO_GE; break;
8297 case tok::greater: Opc = BO_GT; break;
8298 case tok::exclaimequal: Opc = BO_NE; break;
8299 case tok::equalequal: Opc = BO_EQ; break;
8300 case tok::amp: Opc = BO_And; break;
8301 case tok::caret: Opc = BO_Xor; break;
8302 case tok::pipe: Opc = BO_Or; break;
8303 case tok::ampamp: Opc = BO_LAnd; break;
8304 case tok::pipepipe: Opc = BO_LOr; break;
8305 case tok::equal: Opc = BO_Assign; break;
8306 case tok::starequal: Opc = BO_MulAssign; break;
8307 case tok::slashequal: Opc = BO_DivAssign; break;
8308 case tok::percentequal: Opc = BO_RemAssign; break;
8309 case tok::plusequal: Opc = BO_AddAssign; break;
8310 case tok::minusequal: Opc = BO_SubAssign; break;
8311 case tok::lesslessequal: Opc = BO_ShlAssign; break;
8312 case tok::greatergreaterequal: Opc = BO_ShrAssign; break;
8313 case tok::ampequal: Opc = BO_AndAssign; break;
8314 case tok::caretequal: Opc = BO_XorAssign; break;
8315 case tok::pipeequal: Opc = BO_OrAssign; break;
8316 case tok::comma: Opc = BO_Comma; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00008317 }
8318 return Opc;
8319}
8320
John McCall2de56d12010-08-25 11:45:40 +00008321static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
Reid Spencer5f016e22007-07-11 17:01:13 +00008322 tok::TokenKind Kind) {
John McCall2de56d12010-08-25 11:45:40 +00008323 UnaryOperatorKind Opc;
Reid Spencer5f016e22007-07-11 17:01:13 +00008324 switch (Kind) {
8325 default: assert(0 && "Unknown unary op!");
John McCall2de56d12010-08-25 11:45:40 +00008326 case tok::plusplus: Opc = UO_PreInc; break;
8327 case tok::minusminus: Opc = UO_PreDec; break;
8328 case tok::amp: Opc = UO_AddrOf; break;
8329 case tok::star: Opc = UO_Deref; break;
8330 case tok::plus: Opc = UO_Plus; break;
8331 case tok::minus: Opc = UO_Minus; break;
8332 case tok::tilde: Opc = UO_Not; break;
8333 case tok::exclaim: Opc = UO_LNot; break;
8334 case tok::kw___real: Opc = UO_Real; break;
8335 case tok::kw___imag: Opc = UO_Imag; break;
8336 case tok::kw___extension__: Opc = UO_Extension; break;
Reid Spencer5f016e22007-07-11 17:01:13 +00008337 }
8338 return Opc;
8339}
8340
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00008341/// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
8342/// This warning is only emitted for builtin assignment operations. It is also
8343/// suppressed in the event of macro expansions.
8344static void DiagnoseSelfAssignment(Sema &S, Expr *lhs, Expr *rhs,
8345 SourceLocation OpLoc) {
8346 if (!S.ActiveTemplateInstantiations.empty())
8347 return;
8348 if (OpLoc.isInvalid() || OpLoc.isMacroID())
8349 return;
8350 lhs = lhs->IgnoreParenImpCasts();
8351 rhs = rhs->IgnoreParenImpCasts();
8352 const DeclRefExpr *LeftDeclRef = dyn_cast<DeclRefExpr>(lhs);
8353 const DeclRefExpr *RightDeclRef = dyn_cast<DeclRefExpr>(rhs);
8354 if (!LeftDeclRef || !RightDeclRef ||
8355 LeftDeclRef->getLocation().isMacroID() ||
8356 RightDeclRef->getLocation().isMacroID())
8357 return;
8358 const ValueDecl *LeftDecl =
8359 cast<ValueDecl>(LeftDeclRef->getDecl()->getCanonicalDecl());
8360 const ValueDecl *RightDecl =
8361 cast<ValueDecl>(RightDeclRef->getDecl()->getCanonicalDecl());
8362 if (LeftDecl != RightDecl)
8363 return;
8364 if (LeftDecl->getType().isVolatileQualified())
8365 return;
8366 if (const ReferenceType *RefTy = LeftDecl->getType()->getAs<ReferenceType>())
8367 if (RefTy->getPointeeType().isVolatileQualified())
8368 return;
8369
8370 S.Diag(OpLoc, diag::warn_self_assignment)
8371 << LeftDeclRef->getType()
8372 << lhs->getSourceRange() << rhs->getSourceRange();
8373}
8374
Douglas Gregoreaebc752008-11-06 23:29:22 +00008375/// CreateBuiltinBinOp - Creates a new built-in binary operation with
8376/// operator @p Opc at location @c TokLoc. This routine only supports
8377/// built-in operations; ActOnBinOp handles overloaded operators.
John McCall60d7b3a2010-08-24 06:29:42 +00008378ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
Argyrios Kyrtzidisb1fa3dc2011-01-05 20:09:36 +00008379 BinaryOperatorKind Opc,
John Wiegley429bb272011-04-08 18:41:53 +00008380 Expr *lhsExpr, Expr *rhsExpr) {
8381 ExprResult lhs = Owned(lhsExpr), rhs = Owned(rhsExpr);
Eli Friedmanab3a8522009-03-28 01:22:36 +00008382 QualType ResultTy; // Result type of the binary operator.
Eli Friedmanab3a8522009-03-28 01:22:36 +00008383 // The following two variables are used for compound assignment operators
8384 QualType CompLHSTy; // Type of LHS after promotions for computation
8385 QualType CompResultTy; // Type of computation result
John McCallf89e55a2010-11-18 06:31:45 +00008386 ExprValueKind VK = VK_RValue;
8387 ExprObjectKind OK = OK_Ordinary;
Douglas Gregoreaebc752008-11-06 23:29:22 +00008388
Douglas Gregorfadb53b2011-03-12 01:48:56 +00008389 // Check if a 'foo<int>' involved in a binary op, identifies a single
8390 // function unambiguously (i.e. an lvalue ala 13.4)
8391 // But since an assignment can trigger target based overload, exclude it in
8392 // our blind search. i.e:
8393 // template<class T> void f(); template<class T, class U> void f(U);
8394 // f<int> == 0; // resolve f<int> blindly
8395 // void (*p)(int); p = f<int>; // resolve f<int> using target
8396 if (Opc != BO_Assign) {
John McCallfb8721c2011-04-10 19:13:55 +00008397 ExprResult resolvedLHS = CheckPlaceholderExpr(lhs.get());
John McCall1de4d4e2011-04-07 08:22:57 +00008398 if (!resolvedLHS.isUsable()) return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00008399 lhs = move(resolvedLHS);
John McCall1de4d4e2011-04-07 08:22:57 +00008400
John McCallfb8721c2011-04-10 19:13:55 +00008401 ExprResult resolvedRHS = CheckPlaceholderExpr(rhs.get());
John McCall1de4d4e2011-04-07 08:22:57 +00008402 if (!resolvedRHS.isUsable()) return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00008403 rhs = move(resolvedRHS);
Douglas Gregorfadb53b2011-03-12 01:48:56 +00008404 }
8405
Douglas Gregoreaebc752008-11-06 23:29:22 +00008406 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00008407 case BO_Assign:
John Wiegley429bb272011-04-08 18:41:53 +00008408 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, QualType());
John McCallf6a16482010-12-04 03:47:34 +00008409 if (getLangOptions().CPlusPlus &&
John Wiegley429bb272011-04-08 18:41:53 +00008410 lhs.get()->getObjectKind() != OK_ObjCProperty) {
8411 VK = lhs.get()->getValueKind();
8412 OK = lhs.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00008413 }
Chandler Carruth9f7a6ee2011-01-04 06:52:15 +00008414 if (!ResultTy.isNull())
John Wiegley429bb272011-04-08 18:41:53 +00008415 DiagnoseSelfAssignment(*this, lhs.get(), rhs.get(), OpLoc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008416 break;
John McCall2de56d12010-08-25 11:45:40 +00008417 case BO_PtrMemD:
8418 case BO_PtrMemI:
John McCallf89e55a2010-11-18 06:31:45 +00008419 ResultTy = CheckPointerToMemberOperands(lhs, rhs, VK, OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008420 Opc == BO_PtrMemI);
Sebastian Redl22460502009-02-07 00:15:38 +00008421 break;
John McCall2de56d12010-08-25 11:45:40 +00008422 case BO_Mul:
8423 case BO_Div:
Chris Lattner7ef655a2010-01-12 21:23:57 +00008424 ResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, false,
John McCall2de56d12010-08-25 11:45:40 +00008425 Opc == BO_Div);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008426 break;
John McCall2de56d12010-08-25 11:45:40 +00008427 case BO_Rem:
Douglas Gregoreaebc752008-11-06 23:29:22 +00008428 ResultTy = CheckRemainderOperands(lhs, rhs, OpLoc);
8429 break;
John McCall2de56d12010-08-25 11:45:40 +00008430 case BO_Add:
Douglas Gregoreaebc752008-11-06 23:29:22 +00008431 ResultTy = CheckAdditionOperands(lhs, rhs, OpLoc);
8432 break;
John McCall2de56d12010-08-25 11:45:40 +00008433 case BO_Sub:
Douglas Gregoreaebc752008-11-06 23:29:22 +00008434 ResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc);
8435 break;
John McCall2de56d12010-08-25 11:45:40 +00008436 case BO_Shl:
8437 case BO_Shr:
Chandler Carruth21206d52011-02-23 23:34:11 +00008438 ResultTy = CheckShiftOperands(lhs, rhs, OpLoc, Opc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008439 break;
John McCall2de56d12010-08-25 11:45:40 +00008440 case BO_LE:
8441 case BO_LT:
8442 case BO_GE:
8443 case BO_GT:
Douglas Gregora86b8322009-04-06 18:45:53 +00008444 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, true);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008445 break;
John McCall2de56d12010-08-25 11:45:40 +00008446 case BO_EQ:
8447 case BO_NE:
Douglas Gregora86b8322009-04-06 18:45:53 +00008448 ResultTy = CheckCompareOperands(lhs, rhs, OpLoc, Opc, false);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008449 break;
John McCall2de56d12010-08-25 11:45:40 +00008450 case BO_And:
8451 case BO_Xor:
8452 case BO_Or:
Douglas Gregoreaebc752008-11-06 23:29:22 +00008453 ResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc);
8454 break;
John McCall2de56d12010-08-25 11:45:40 +00008455 case BO_LAnd:
8456 case BO_LOr:
Chris Lattner90a8f272010-07-13 19:41:32 +00008457 ResultTy = CheckLogicalOperands(lhs, rhs, OpLoc, Opc);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008458 break;
John McCall2de56d12010-08-25 11:45:40 +00008459 case BO_MulAssign:
8460 case BO_DivAssign:
Chris Lattner7ef655a2010-01-12 21:23:57 +00008461 CompResultTy = CheckMultiplyDivideOperands(lhs, rhs, OpLoc, true,
John McCallf89e55a2010-11-18 06:31:45 +00008462 Opc == BO_DivAssign);
Eli Friedmanab3a8522009-03-28 01:22:36 +00008463 CompLHSTy = CompResultTy;
John Wiegley429bb272011-04-08 18:41:53 +00008464 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8465 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008466 break;
John McCall2de56d12010-08-25 11:45:40 +00008467 case BO_RemAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00008468 CompResultTy = CheckRemainderOperands(lhs, rhs, OpLoc, true);
8469 CompLHSTy = CompResultTy;
John Wiegley429bb272011-04-08 18:41:53 +00008470 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8471 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008472 break;
John McCall2de56d12010-08-25 11:45:40 +00008473 case BO_AddAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00008474 CompResultTy = CheckAdditionOperands(lhs, rhs, OpLoc, &CompLHSTy);
John Wiegley429bb272011-04-08 18:41:53 +00008475 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8476 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008477 break;
John McCall2de56d12010-08-25 11:45:40 +00008478 case BO_SubAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00008479 CompResultTy = CheckSubtractionOperands(lhs, rhs, OpLoc, &CompLHSTy);
John Wiegley429bb272011-04-08 18:41:53 +00008480 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8481 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008482 break;
John McCall2de56d12010-08-25 11:45:40 +00008483 case BO_ShlAssign:
8484 case BO_ShrAssign:
Chandler Carruth21206d52011-02-23 23:34:11 +00008485 CompResultTy = CheckShiftOperands(lhs, rhs, OpLoc, Opc, true);
Eli Friedmanab3a8522009-03-28 01:22:36 +00008486 CompLHSTy = CompResultTy;
John Wiegley429bb272011-04-08 18:41:53 +00008487 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8488 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008489 break;
John McCall2de56d12010-08-25 11:45:40 +00008490 case BO_AndAssign:
8491 case BO_XorAssign:
8492 case BO_OrAssign:
Eli Friedmanab3a8522009-03-28 01:22:36 +00008493 CompResultTy = CheckBitwiseOperands(lhs, rhs, OpLoc, true);
8494 CompLHSTy = CompResultTy;
John Wiegley429bb272011-04-08 18:41:53 +00008495 if (!CompResultTy.isNull() && !lhs.isInvalid() && !rhs.isInvalid())
8496 ResultTy = CheckAssignmentOperands(lhs.get(), rhs, OpLoc, CompResultTy);
Douglas Gregoreaebc752008-11-06 23:29:22 +00008497 break;
John McCall2de56d12010-08-25 11:45:40 +00008498 case BO_Comma:
John McCall09431682010-11-18 19:01:18 +00008499 ResultTy = CheckCommaOperands(*this, lhs, rhs, OpLoc);
John Wiegley429bb272011-04-08 18:41:53 +00008500 if (getLangOptions().CPlusPlus && !rhs.isInvalid()) {
8501 VK = rhs.get()->getValueKind();
8502 OK = rhs.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00008503 }
Douglas Gregoreaebc752008-11-06 23:29:22 +00008504 break;
8505 }
John Wiegley429bb272011-04-08 18:41:53 +00008506 if (ResultTy.isNull() || lhs.isInvalid() || rhs.isInvalid())
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00008507 return ExprError();
Eli Friedmanab3a8522009-03-28 01:22:36 +00008508 if (CompResultTy.isNull())
John Wiegley429bb272011-04-08 18:41:53 +00008509 return Owned(new (Context) BinaryOperator(lhs.take(), rhs.take(), Opc,
8510 ResultTy, VK, OK, OpLoc));
8511 if (getLangOptions().CPlusPlus && lhs.get()->getObjectKind() != OK_ObjCProperty) {
John McCallf89e55a2010-11-18 06:31:45 +00008512 VK = VK_LValue;
John Wiegley429bb272011-04-08 18:41:53 +00008513 OK = lhs.get()->getObjectKind();
John McCallf89e55a2010-11-18 06:31:45 +00008514 }
John Wiegley429bb272011-04-08 18:41:53 +00008515 return Owned(new (Context) CompoundAssignOperator(lhs.take(), rhs.take(), Opc,
8516 ResultTy, VK, OK, CompLHSTy,
John McCallf89e55a2010-11-18 06:31:45 +00008517 CompResultTy, OpLoc));
Douglas Gregoreaebc752008-11-06 23:29:22 +00008518}
8519
Sebastian Redlaee3c932009-10-27 12:10:02 +00008520/// SuggestParentheses - Emit a diagnostic together with a fixit hint that wraps
8521/// ParenRange in parentheses.
Sebastian Redl6b169ac2009-10-26 17:01:32 +00008522static void SuggestParentheses(Sema &Self, SourceLocation Loc,
8523 const PartialDiagnostic &PD,
Douglas Gregor55b38842010-04-14 16:09:52 +00008524 const PartialDiagnostic &FirstNote,
8525 SourceRange FirstParenRange,
8526 const PartialDiagnostic &SecondNote,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008527 SourceRange SecondParenRange) {
Douglas Gregor55b38842010-04-14 16:09:52 +00008528 Self.Diag(Loc, PD);
8529
8530 if (!FirstNote.getDiagID())
8531 return;
8532
8533 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(FirstParenRange.getEnd());
8534 if (!FirstParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
8535 // We can't display the parentheses, so just return.
Sebastian Redl6b169ac2009-10-26 17:01:32 +00008536 return;
8537 }
8538
Douglas Gregor55b38842010-04-14 16:09:52 +00008539 Self.Diag(Loc, FirstNote)
8540 << FixItHint::CreateInsertion(FirstParenRange.getBegin(), "(")
Douglas Gregor849b2432010-03-31 17:46:05 +00008541 << FixItHint::CreateInsertion(EndLoc, ")");
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008542
Douglas Gregor55b38842010-04-14 16:09:52 +00008543 if (!SecondNote.getDiagID())
Douglas Gregor827feec2010-01-08 00:20:23 +00008544 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008545
Douglas Gregor827feec2010-01-08 00:20:23 +00008546 EndLoc = Self.PP.getLocForEndOfToken(SecondParenRange.getEnd());
8547 if (!SecondParenRange.getEnd().isFileID() || EndLoc.isInvalid()) {
8548 // We can't display the parentheses, so just dig the
8549 // warning/error and return.
Douglas Gregor55b38842010-04-14 16:09:52 +00008550 Self.Diag(Loc, SecondNote);
Douglas Gregor827feec2010-01-08 00:20:23 +00008551 return;
8552 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008553
Douglas Gregor55b38842010-04-14 16:09:52 +00008554 Self.Diag(Loc, SecondNote)
Douglas Gregor849b2432010-03-31 17:46:05 +00008555 << FixItHint::CreateInsertion(SecondParenRange.getBegin(), "(")
8556 << FixItHint::CreateInsertion(EndLoc, ")");
Sebastian Redl6b169ac2009-10-26 17:01:32 +00008557}
8558
Sebastian Redlaee3c932009-10-27 12:10:02 +00008559/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
8560/// operators are mixed in a way that suggests that the programmer forgot that
8561/// comparison operators have higher precedence. The most typical example of
8562/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
John McCall2de56d12010-08-25 11:45:40 +00008563static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008564 SourceLocation OpLoc,Expr *lhs,Expr *rhs){
Sebastian Redlaee3c932009-10-27 12:10:02 +00008565 typedef BinaryOperator BinOp;
8566 BinOp::Opcode lhsopc = static_cast<BinOp::Opcode>(-1),
8567 rhsopc = static_cast<BinOp::Opcode>(-1);
8568 if (BinOp *BO = dyn_cast<BinOp>(lhs))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008569 lhsopc = BO->getOpcode();
Sebastian Redlaee3c932009-10-27 12:10:02 +00008570 if (BinOp *BO = dyn_cast<BinOp>(rhs))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008571 rhsopc = BO->getOpcode();
8572
8573 // Subs are not binary operators.
8574 if (lhsopc == -1 && rhsopc == -1)
8575 return;
8576
8577 // Bitwise operations are sometimes used as eager logical ops.
8578 // Don't diagnose this.
Sebastian Redlaee3c932009-10-27 12:10:02 +00008579 if ((BinOp::isComparisonOp(lhsopc) || BinOp::isBitwiseOp(lhsopc)) &&
8580 (BinOp::isComparisonOp(rhsopc) || BinOp::isBitwiseOp(rhsopc)))
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008581 return;
8582
Sebastian Redlaee3c932009-10-27 12:10:02 +00008583 if (BinOp::isComparisonOp(lhsopc))
Sebastian Redl6b169ac2009-10-26 17:01:32 +00008584 SuggestParentheses(Self, OpLoc,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008585 Self.PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redlaee3c932009-10-27 12:10:02 +00008586 << SourceRange(lhs->getLocStart(), OpLoc)
8587 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(lhsopc),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008588 Self.PDiag(diag::note_precedence_bitwise_first)
Douglas Gregor827feec2010-01-08 00:20:23 +00008589 << BinOp::getOpcodeStr(Opc),
Douglas Gregor55b38842010-04-14 16:09:52 +00008590 SourceRange(cast<BinOp>(lhs)->getRHS()->getLocStart(), rhs->getLocEnd()),
8591 Self.PDiag(diag::note_precedence_bitwise_silence)
8592 << BinOp::getOpcodeStr(lhsopc),
8593 lhs->getSourceRange());
Sebastian Redlaee3c932009-10-27 12:10:02 +00008594 else if (BinOp::isComparisonOp(rhsopc))
Sebastian Redl6b169ac2009-10-26 17:01:32 +00008595 SuggestParentheses(Self, OpLoc,
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008596 Self.PDiag(diag::warn_precedence_bitwise_rel)
Sebastian Redlaee3c932009-10-27 12:10:02 +00008597 << SourceRange(OpLoc, rhs->getLocEnd())
8598 << BinOp::getOpcodeStr(Opc) << BinOp::getOpcodeStr(rhsopc),
Douglas Gregorfe6b2d42010-03-29 23:34:08 +00008599 Self.PDiag(diag::note_precedence_bitwise_first)
Douglas Gregor827feec2010-01-08 00:20:23 +00008600 << BinOp::getOpcodeStr(Opc),
Douglas Gregor55b38842010-04-14 16:09:52 +00008601 SourceRange(lhs->getLocEnd(), cast<BinOp>(rhs)->getLHS()->getLocStart()),
8602 Self.PDiag(diag::note_precedence_bitwise_silence)
8603 << BinOp::getOpcodeStr(rhsopc),
8604 rhs->getSourceRange());
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008605}
8606
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008607/// \brief It accepts a '&&' expr that is inside a '||' one.
8608/// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
8609/// in parentheses.
8610static void
8611EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
8612 Expr *E) {
8613 assert(isa<BinaryOperator>(E) &&
8614 cast<BinaryOperator>(E)->getOpcode() == BO_LAnd);
8615 SuggestParentheses(Self, OpLoc,
8616 Self.PDiag(diag::warn_logical_and_in_logical_or)
8617 << E->getSourceRange(),
8618 Self.PDiag(diag::note_logical_and_in_logical_or_silence),
8619 E->getSourceRange(),
8620 Self.PDiag(0), SourceRange());
8621}
8622
8623/// \brief Returns true if the given expression can be evaluated as a constant
8624/// 'true'.
8625static bool EvaluatesAsTrue(Sema &S, Expr *E) {
8626 bool Res;
8627 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
8628}
8629
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008630/// \brief Returns true if the given expression can be evaluated as a constant
8631/// 'false'.
8632static bool EvaluatesAsFalse(Sema &S, Expr *E) {
8633 bool Res;
8634 return E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
8635}
8636
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008637/// \brief Look for '&&' in the left hand of a '||' expr.
8638static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008639 Expr *OrLHS, Expr *OrRHS) {
8640 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrLHS)) {
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008641 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008642 // If it's "a && b || 0" don't warn since the precedence doesn't matter.
8643 if (EvaluatesAsFalse(S, OrRHS))
8644 return;
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008645 // If it's "1 && a || b" don't warn since the precedence doesn't matter.
8646 if (!EvaluatesAsTrue(S, Bop->getLHS()))
8647 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
8648 } else if (Bop->getOpcode() == BO_LOr) {
8649 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
8650 // If it's "a || b && 1 || c" we didn't warn earlier for
8651 // "a || b && 1", but warn now.
8652 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
8653 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
8654 }
8655 }
8656 }
8657}
8658
8659/// \brief Look for '&&' in the right hand of a '||' expr.
8660static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008661 Expr *OrLHS, Expr *OrRHS) {
8662 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrRHS)) {
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008663 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008664 // If it's "0 || a && b" don't warn since the precedence doesn't matter.
8665 if (EvaluatesAsFalse(S, OrLHS))
8666 return;
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008667 // If it's "a || b && 1" don't warn since the precedence doesn't matter.
8668 if (!EvaluatesAsTrue(S, Bop->getRHS()))
8669 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008670 }
8671 }
8672}
8673
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008674/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008675/// precedence.
John McCall2de56d12010-08-25 11:45:40 +00008676static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008677 SourceLocation OpLoc, Expr *lhs, Expr *rhs){
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008678 // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
Sebastian Redlaee3c932009-10-27 12:10:02 +00008679 if (BinaryOperator::isBitwiseOp(Opc))
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008680 return DiagnoseBitwisePrecedence(Self, Opc, OpLoc, lhs, rhs);
8681
Argyrios Kyrtzidis567bb712010-11-17 18:26:36 +00008682 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
8683 // We don't warn for 'assert(a || b && "bad")' since this is safe.
Argyrios Kyrtzidisd92ccaa2010-11-17 18:54:22 +00008684 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
Argyrios Kyrtzidis47d512c2010-11-17 19:18:19 +00008685 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, lhs, rhs);
8686 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, lhs, rhs);
Argyrios Kyrtzidisbee77f72010-11-16 21:00:12 +00008687 }
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008688}
8689
Reid Spencer5f016e22007-07-11 17:01:13 +00008690// Binary Operators. 'Tok' is the token for the operator.
John McCall60d7b3a2010-08-24 06:29:42 +00008691ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
John McCall2de56d12010-08-25 11:45:40 +00008692 tok::TokenKind Kind,
8693 Expr *lhs, Expr *rhs) {
8694 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
Steve Narofff69936d2007-09-16 03:34:24 +00008695 assert((lhs != 0) && "ActOnBinOp(): missing left expression");
8696 assert((rhs != 0) && "ActOnBinOp(): missing right expression");
Reid Spencer5f016e22007-07-11 17:01:13 +00008697
Sebastian Redl9e1d29b2009-10-26 15:24:15 +00008698 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
8699 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, lhs, rhs);
8700
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008701 return BuildBinOp(S, TokLoc, Opc, lhs, rhs);
8702}
8703
John McCall60d7b3a2010-08-24 06:29:42 +00008704ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008705 BinaryOperatorKind Opc,
8706 Expr *lhs, Expr *rhs) {
John McCall01b2e4e2010-12-06 05:26:58 +00008707 if (getLangOptions().CPlusPlus) {
8708 bool UseBuiltinOperator;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008709
John McCall01b2e4e2010-12-06 05:26:58 +00008710 if (lhs->isTypeDependent() || rhs->isTypeDependent()) {
8711 UseBuiltinOperator = false;
8712 } else if (Opc == BO_Assign && lhs->getObjectKind() == OK_ObjCProperty) {
8713 UseBuiltinOperator = true;
8714 } else {
8715 UseBuiltinOperator = !lhs->getType()->isOverloadableType() &&
8716 !rhs->getType()->isOverloadableType();
8717 }
8718
8719 if (!UseBuiltinOperator) {
8720 // Find all of the overloaded operators visible from this
8721 // point. We perform both an operator-name lookup from the local
8722 // scope and an argument-dependent lookup based on the types of
8723 // the arguments.
8724 UnresolvedSet<16> Functions;
8725 OverloadedOperatorKind OverOp
8726 = BinaryOperator::getOverloadedOperator(Opc);
8727 if (S && OverOp != OO_None)
8728 LookupOverloadedOperatorName(OverOp, S, lhs->getType(), rhs->getType(),
8729 Functions);
8730
8731 // Build the (potentially-overloaded, potentially-dependent)
8732 // binary operation.
8733 return CreateOverloadedBinOp(OpLoc, Opc, Functions, lhs, rhs);
8734 }
Sebastian Redlb8a6aca2009-01-19 22:31:54 +00008735 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008736
Douglas Gregoreaebc752008-11-06 23:29:22 +00008737 // Build a built-in binary operation.
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008738 return CreateBuiltinBinOp(OpLoc, Opc, lhs, rhs);
Reid Spencer5f016e22007-07-11 17:01:13 +00008739}
8740
John McCall60d7b3a2010-08-24 06:29:42 +00008741ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Argyrios Kyrtzidisb1fa3dc2011-01-05 20:09:36 +00008742 UnaryOperatorKind Opc,
John Wiegley429bb272011-04-08 18:41:53 +00008743 Expr *InputExpr) {
8744 ExprResult Input = Owned(InputExpr);
John McCallf89e55a2010-11-18 06:31:45 +00008745 ExprValueKind VK = VK_RValue;
8746 ExprObjectKind OK = OK_Ordinary;
Reid Spencer5f016e22007-07-11 17:01:13 +00008747 QualType resultType;
8748 switch (Opc) {
John McCall2de56d12010-08-25 11:45:40 +00008749 case UO_PreInc:
8750 case UO_PreDec:
8751 case UO_PostInc:
8752 case UO_PostDec:
John Wiegley429bb272011-04-08 18:41:53 +00008753 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008754 Opc == UO_PreInc ||
8755 Opc == UO_PostInc,
8756 Opc == UO_PreInc ||
8757 Opc == UO_PreDec);
Reid Spencer5f016e22007-07-11 17:01:13 +00008758 break;
John McCall2de56d12010-08-25 11:45:40 +00008759 case UO_AddrOf:
John Wiegley429bb272011-04-08 18:41:53 +00008760 resultType = CheckAddressOfOperand(*this, Input.get(), OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00008761 break;
John McCall1de4d4e2011-04-07 08:22:57 +00008762 case UO_Deref: {
John McCallfb8721c2011-04-10 19:13:55 +00008763 ExprResult resolved = CheckPlaceholderExpr(Input.get());
John McCall1de4d4e2011-04-07 08:22:57 +00008764 if (!resolved.isUsable()) return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00008765 Input = move(resolved);
8766 Input = DefaultFunctionArrayLvalueConversion(Input.take());
8767 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
Reid Spencer5f016e22007-07-11 17:01:13 +00008768 break;
John McCall1de4d4e2011-04-07 08:22:57 +00008769 }
John McCall2de56d12010-08-25 11:45:40 +00008770 case UO_Plus:
8771 case UO_Minus:
John Wiegley429bb272011-04-08 18:41:53 +00008772 Input = UsualUnaryConversions(Input.take());
8773 if (Input.isInvalid()) return ExprError();
8774 resultType = Input.get()->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008775 if (resultType->isDependentType())
8776 break;
Douglas Gregor00619622010-06-22 23:41:02 +00008777 if (resultType->isArithmeticType() || // C99 6.5.3.3p1
8778 resultType->isVectorType())
Douglas Gregor74253732008-11-19 15:42:04 +00008779 break;
8780 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6-7
8781 resultType->isEnumeralType())
8782 break;
8783 else if (getLangOptions().CPlusPlus && // C++ [expr.unary.op]p6
John McCall2de56d12010-08-25 11:45:40 +00008784 Opc == UO_Plus &&
Douglas Gregor74253732008-11-19 15:42:04 +00008785 resultType->isPointerType())
8786 break;
John McCall2cd11fe2010-10-12 02:09:17 +00008787 else if (resultType->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00008788 Input = CheckPlaceholderExpr(Input.take());
John Wiegley429bb272011-04-08 18:41:53 +00008789 if (Input.isInvalid()) return ExprError();
8790 return CreateBuiltinUnaryOp(OpLoc, Opc, Input.take());
John McCall2cd11fe2010-10-12 02:09:17 +00008791 }
Douglas Gregor74253732008-11-19 15:42:04 +00008792
Sebastian Redl0eb23302009-01-19 00:08:26 +00008793 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008794 << resultType << Input.get()->getSourceRange());
8795
John McCall2de56d12010-08-25 11:45:40 +00008796 case UO_Not: // bitwise complement
John Wiegley429bb272011-04-08 18:41:53 +00008797 Input = UsualUnaryConversions(Input.take());
8798 if (Input.isInvalid()) return ExprError();
8799 resultType = Input.get()->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008800 if (resultType->isDependentType())
8801 break;
Chris Lattner02a65142008-07-25 23:52:49 +00008802 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
8803 if (resultType->isComplexType() || resultType->isComplexIntegerType())
8804 // C99 does not support '~' for complex conjugation.
Chris Lattnerd3a94e22008-11-20 06:06:08 +00008805 Diag(OpLoc, diag::ext_integer_complement_complex)
John Wiegley429bb272011-04-08 18:41:53 +00008806 << resultType << Input.get()->getSourceRange();
John McCall2cd11fe2010-10-12 02:09:17 +00008807 else if (resultType->hasIntegerRepresentation())
8808 break;
8809 else if (resultType->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00008810 Input = CheckPlaceholderExpr(Input.take());
John Wiegley429bb272011-04-08 18:41:53 +00008811 if (Input.isInvalid()) return ExprError();
8812 return CreateBuiltinUnaryOp(OpLoc, Opc, Input.take());
John McCall2cd11fe2010-10-12 02:09:17 +00008813 } else {
Sebastian Redl0eb23302009-01-19 00:08:26 +00008814 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008815 << resultType << Input.get()->getSourceRange());
John McCall2cd11fe2010-10-12 02:09:17 +00008816 }
Reid Spencer5f016e22007-07-11 17:01:13 +00008817 break;
John Wiegley429bb272011-04-08 18:41:53 +00008818
John McCall2de56d12010-08-25 11:45:40 +00008819 case UO_LNot: // logical negation
Reid Spencer5f016e22007-07-11 17:01:13 +00008820 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
John Wiegley429bb272011-04-08 18:41:53 +00008821 Input = DefaultFunctionArrayLvalueConversion(Input.take());
8822 if (Input.isInvalid()) return ExprError();
8823 resultType = Input.get()->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008824 if (resultType->isDependentType())
8825 break;
Abramo Bagnara737d5442011-04-07 09:26:19 +00008826 if (resultType->isScalarType()) {
8827 // C99 6.5.3.3p1: ok, fallthrough;
8828 if (Context.getLangOptions().CPlusPlus) {
8829 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
8830 // operand contextually converted to bool.
John Wiegley429bb272011-04-08 18:41:53 +00008831 Input = ImpCastExprToType(Input.take(), Context.BoolTy,
8832 ScalarTypeToBooleanCastKind(resultType));
Abramo Bagnara737d5442011-04-07 09:26:19 +00008833 }
John McCall2cd11fe2010-10-12 02:09:17 +00008834 } else if (resultType->isPlaceholderType()) {
John McCallfb8721c2011-04-10 19:13:55 +00008835 Input = CheckPlaceholderExpr(Input.take());
John Wiegley429bb272011-04-08 18:41:53 +00008836 if (Input.isInvalid()) return ExprError();
8837 return CreateBuiltinUnaryOp(OpLoc, Opc, Input.take());
John McCall2cd11fe2010-10-12 02:09:17 +00008838 } else {
Sebastian Redl0eb23302009-01-19 00:08:26 +00008839 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley429bb272011-04-08 18:41:53 +00008840 << resultType << Input.get()->getSourceRange());
John McCall2cd11fe2010-10-12 02:09:17 +00008841 }
Douglas Gregorea844f32010-09-20 17:13:33 +00008842
Reid Spencer5f016e22007-07-11 17:01:13 +00008843 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redl0eb23302009-01-19 00:08:26 +00008844 // In C++, it's bool. C++ 5.3.1p8
Argyrios Kyrtzidis16f744b2011-02-18 20:55:15 +00008845 resultType = Context.getLogicalOperationType();
Reid Spencer5f016e22007-07-11 17:01:13 +00008846 break;
John McCall2de56d12010-08-25 11:45:40 +00008847 case UO_Real:
8848 case UO_Imag:
John McCall09431682010-11-18 19:01:18 +00008849 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
John McCallf89e55a2010-11-18 06:31:45 +00008850 // _Real and _Imag map ordinary l-values into ordinary l-values.
John Wiegley429bb272011-04-08 18:41:53 +00008851 if (Input.isInvalid()) return ExprError();
8852 if (Input.get()->getValueKind() != VK_RValue &&
8853 Input.get()->getObjectKind() == OK_Ordinary)
8854 VK = Input.get()->getValueKind();
Chris Lattnerdbb36972007-08-24 21:16:53 +00008855 break;
John McCall2de56d12010-08-25 11:45:40 +00008856 case UO_Extension:
John Wiegley429bb272011-04-08 18:41:53 +00008857 resultType = Input.get()->getType();
8858 VK = Input.get()->getValueKind();
8859 OK = Input.get()->getObjectKind();
Reid Spencer5f016e22007-07-11 17:01:13 +00008860 break;
8861 }
John Wiegley429bb272011-04-08 18:41:53 +00008862 if (resultType.isNull() || Input.isInvalid())
Sebastian Redl0eb23302009-01-19 00:08:26 +00008863 return ExprError();
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008864
John Wiegley429bb272011-04-08 18:41:53 +00008865 return Owned(new (Context) UnaryOperator(Input.take(), Opc, resultType,
John McCallf89e55a2010-11-18 06:31:45 +00008866 VK, OK, OpLoc));
Reid Spencer5f016e22007-07-11 17:01:13 +00008867}
8868
John McCall60d7b3a2010-08-24 06:29:42 +00008869ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
John McCall2de56d12010-08-25 11:45:40 +00008870 UnaryOperatorKind Opc,
8871 Expr *Input) {
Anders Carlssona8a1e3d2009-11-14 21:26:41 +00008872 if (getLangOptions().CPlusPlus && Input->getType()->isOverloadableType() &&
Eli Friedman957c0942010-09-05 23:15:52 +00008873 UnaryOperator::getOverloadedOperator(Opc) != OO_None) {
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008874 // Find all of the overloaded operators visible from this
8875 // point. We perform both an operator-name lookup from the local
8876 // scope and an argument-dependent lookup based on the types of
8877 // the arguments.
John McCall6e266892010-01-26 03:27:55 +00008878 UnresolvedSet<16> Functions;
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008879 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
John McCall6e266892010-01-26 03:27:55 +00008880 if (S && OverOp != OO_None)
8881 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
8882 Functions);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008883
John McCall9ae2f072010-08-23 23:25:46 +00008884 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008885 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00008886
John McCall9ae2f072010-08-23 23:25:46 +00008887 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
Douglas Gregorbc736fc2009-03-13 23:49:33 +00008888}
8889
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008890// Unary Operators. 'Tok' is the token for the operator.
John McCall60d7b3a2010-08-24 06:29:42 +00008891ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
John McCallf4c73712011-01-19 06:33:43 +00008892 tok::TokenKind Op, Expr *Input) {
John McCall9ae2f072010-08-23 23:25:46 +00008893 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
Douglas Gregor6ca7cfb2009-11-05 00:51:44 +00008894}
8895
Steve Naroff1b273c42007-09-16 14:56:35 +00008896/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008897ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
Chris Lattner57ad3782011-02-17 20:34:02 +00008898 LabelDecl *TheDecl) {
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008899 TheDecl->setUsed();
Reid Spencer5f016e22007-07-11 17:01:13 +00008900 // Create the AST node. The address of a label always has type 'void*'.
Chris Lattnerad8dcf42011-02-17 07:39:24 +00008901 return Owned(new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
Sebastian Redlf53597f2009-03-15 17:47:39 +00008902 Context.getPointerType(Context.VoidTy)));
Reid Spencer5f016e22007-07-11 17:01:13 +00008903}
8904
John McCall60d7b3a2010-08-24 06:29:42 +00008905ExprResult
John McCall9ae2f072010-08-23 23:25:46 +00008906Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
Sebastian Redlf53597f2009-03-15 17:47:39 +00008907 SourceLocation RPLoc) { // "({..})"
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008908 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
8909 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
8910
Douglas Gregordd8f5692010-03-10 04:54:39 +00008911 bool isFileScope
8912 = (getCurFunctionOrMethodDecl() == 0) && (getCurBlock() == 0);
Chris Lattner4a049f02009-04-25 19:11:05 +00008913 if (isFileScope)
Sebastian Redlf53597f2009-03-15 17:47:39 +00008914 return ExprError(Diag(LPLoc, diag::err_stmtexpr_file_scope));
Eli Friedmandca2b732009-01-24 23:09:00 +00008915
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008916 // FIXME: there are a variety of strange constraints to enforce here, for
8917 // example, it is not possible to goto into a stmt expression apparently.
8918 // More semantic analysis is needed.
Mike Stumpeed9cac2009-02-19 03:04:26 +00008919
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008920 // If there are sub stmts in the compound stmt, take the type of the last one
8921 // as the type of the stmtexpr.
8922 QualType Ty = Context.VoidTy;
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008923 bool StmtExprMayBindToTemp = false;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008924 if (!Compound->body_empty()) {
8925 Stmt *LastStmt = Compound->body_back();
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008926 LabelStmt *LastLabelStmt = 0;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008927 // If LastStmt is a label, skip down through into the body.
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008928 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
8929 LastLabelStmt = Label;
Chris Lattner611b2ec2008-07-26 19:51:01 +00008930 LastStmt = Label->getSubStmt();
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008931 }
John Wiegley429bb272011-04-08 18:41:53 +00008932 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
John McCallf6a16482010-12-04 03:47:34 +00008933 // Do function/array conversion on the last expression, but not
8934 // lvalue-to-rvalue. However, initialize an unqualified type.
John Wiegley429bb272011-04-08 18:41:53 +00008935 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
8936 if (LastExpr.isInvalid())
8937 return ExprError();
8938 Ty = LastExpr.get()->getType().getUnqualifiedType();
John McCallf6a16482010-12-04 03:47:34 +00008939
John Wiegley429bb272011-04-08 18:41:53 +00008940 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
8941 LastExpr = PerformCopyInitialization(
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008942 InitializedEntity::InitializeResult(LPLoc,
8943 Ty,
8944 false),
8945 SourceLocation(),
John Wiegley429bb272011-04-08 18:41:53 +00008946 LastExpr);
8947 if (LastExpr.isInvalid())
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008948 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +00008949 if (LastExpr.get() != 0) {
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008950 if (!LastLabelStmt)
John Wiegley429bb272011-04-08 18:41:53 +00008951 Compound->setLastStmt(LastExpr.take());
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008952 else
John Wiegley429bb272011-04-08 18:41:53 +00008953 LastLabelStmt->setSubStmt(LastExpr.take());
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008954 StmtExprMayBindToTemp = true;
8955 }
8956 }
8957 }
Chris Lattner611b2ec2008-07-26 19:51:01 +00008958 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00008959
Eli Friedmanb1d796d2009-03-23 00:24:07 +00008960 // FIXME: Check that expression type is complete/non-abstract; statement
8961 // expressions are not lvalues.
Fariborz Jahaniane946fc82010-10-25 23:27:26 +00008962 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
8963 if (StmtExprMayBindToTemp)
8964 return MaybeBindToTemporary(ResStmtExpr);
8965 return Owned(ResStmtExpr);
Chris Lattnerab18c4c2007-07-24 16:58:17 +00008966}
Steve Naroffd34e9152007-08-01 22:05:33 +00008967
John McCall60d7b3a2010-08-24 06:29:42 +00008968ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
John McCall2cd11fe2010-10-12 02:09:17 +00008969 TypeSourceInfo *TInfo,
8970 OffsetOfComponent *CompPtr,
8971 unsigned NumComponents,
8972 SourceLocation RParenLoc) {
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008973 QualType ArgTy = TInfo->getType();
Sebastian Redl28507842009-02-26 14:39:58 +00008974 bool Dependent = ArgTy->isDependentType();
Abramo Bagnarabd054db2010-05-20 10:00:11 +00008975 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008976
Chris Lattner73d0d4f2007-08-30 17:45:32 +00008977 // We must have at least one component that refers to the type, and the first
8978 // one is known to be a field designator. Verify that the ArgTy represents
8979 // a struct/union/class.
Sebastian Redl28507842009-02-26 14:39:58 +00008980 if (!Dependent && !ArgTy->isRecordType())
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008981 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
8982 << ArgTy << TypeRange);
8983
8984 // Type must be complete per C99 7.17p3 because a declaring a variable
8985 // with an incomplete type would be ill-formed.
8986 if (!Dependent
8987 && RequireCompleteType(BuiltinLoc, ArgTy,
8988 PDiag(diag::err_offsetof_incomplete_type)
8989 << TypeRange))
8990 return ExprError();
8991
Chris Lattner9e2b75c2007-08-31 21:49:13 +00008992 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
8993 // GCC extension, diagnose them.
Eli Friedman35183ac2009-02-27 06:44:11 +00008994 // FIXME: This diagnostic isn't actually visible because the location is in
8995 // a system header!
Chris Lattner9e2b75c2007-08-31 21:49:13 +00008996 if (NumComponents != 1)
Chris Lattnerdcd5ef12008-11-19 05:27:50 +00008997 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
8998 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00008999
9000 bool DidWarnAboutNonPOD = false;
9001 QualType CurrentType = ArgTy;
9002 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
9003 llvm::SmallVector<OffsetOfNode, 4> Comps;
9004 llvm::SmallVector<Expr*, 4> Exprs;
9005 for (unsigned i = 0; i != NumComponents; ++i) {
9006 const OffsetOfComponent &OC = CompPtr[i];
9007 if (OC.isBrackets) {
9008 // Offset of an array sub-field. TODO: Should we allow vector elements?
9009 if (!CurrentType->isDependentType()) {
9010 const ArrayType *AT = Context.getAsArrayType(CurrentType);
9011 if(!AT)
9012 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
9013 << CurrentType);
9014 CurrentType = AT->getElementType();
9015 } else
9016 CurrentType = Context.DependentTy;
9017
9018 // The expression must be an integral expression.
9019 // FIXME: An integral constant expression?
9020 Expr *Idx = static_cast<Expr*>(OC.U.E);
9021 if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
9022 !Idx->getType()->isIntegerType())
9023 return ExprError(Diag(Idx->getLocStart(),
9024 diag::err_typecheck_subscript_not_integer)
9025 << Idx->getSourceRange());
9026
9027 // Record this array index.
9028 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
9029 Exprs.push_back(Idx);
9030 continue;
9031 }
9032
9033 // Offset of a field.
9034 if (CurrentType->isDependentType()) {
9035 // We have the offset of a field, but we can't look into the dependent
9036 // type. Just record the identifier of the field.
9037 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
9038 CurrentType = Context.DependentTy;
9039 continue;
9040 }
9041
9042 // We need to have a complete type to look into.
9043 if (RequireCompleteType(OC.LocStart, CurrentType,
9044 diag::err_offsetof_incomplete_type))
9045 return ExprError();
9046
9047 // Look for the designated field.
9048 const RecordType *RC = CurrentType->getAs<RecordType>();
9049 if (!RC)
9050 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
9051 << CurrentType);
9052 RecordDecl *RD = RC->getDecl();
9053
9054 // C++ [lib.support.types]p5:
9055 // The macro offsetof accepts a restricted set of type arguments in this
9056 // International Standard. type shall be a POD structure or a POD union
9057 // (clause 9).
9058 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
9059 if (!CRD->isPOD() && !DidWarnAboutNonPOD &&
Ted Kremenek762696f2011-02-23 01:51:43 +00009060 DiagRuntimeBehavior(BuiltinLoc, 0,
Douglas Gregor8ecdb652010-04-28 22:16:22 +00009061 PDiag(diag::warn_offsetof_non_pod_type)
9062 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
9063 << CurrentType))
9064 DidWarnAboutNonPOD = true;
9065 }
9066
9067 // Look for the field.
9068 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
9069 LookupQualifiedName(R, RD);
9070 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
Francois Pichet87c2e122010-11-21 06:08:52 +00009071 IndirectFieldDecl *IndirectMemberDecl = 0;
9072 if (!MemberDecl) {
Benjamin Kramerd9811462010-11-21 14:11:41 +00009073 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
Francois Pichet87c2e122010-11-21 06:08:52 +00009074 MemberDecl = IndirectMemberDecl->getAnonField();
9075 }
9076
Douglas Gregor8ecdb652010-04-28 22:16:22 +00009077 if (!MemberDecl)
9078 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
9079 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
9080 OC.LocEnd));
9081
Douglas Gregor9d5d60f2010-04-28 22:36:06 +00009082 // C99 7.17p3:
9083 // (If the specified member is a bit-field, the behavior is undefined.)
9084 //
9085 // We diagnose this as an error.
9086 if (MemberDecl->getBitWidth()) {
9087 Diag(OC.LocEnd, diag::err_offsetof_bitfield)
9088 << MemberDecl->getDeclName()
9089 << SourceRange(BuiltinLoc, RParenLoc);
9090 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
9091 return ExprError();
9092 }
Eli Friedman19410a72010-08-05 10:11:36 +00009093
9094 RecordDecl *Parent = MemberDecl->getParent();
Francois Pichet87c2e122010-11-21 06:08:52 +00009095 if (IndirectMemberDecl)
9096 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
Eli Friedman19410a72010-08-05 10:11:36 +00009097
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00009098 // If the member was found in a base class, introduce OffsetOfNodes for
9099 // the base class indirections.
9100 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
9101 /*DetectVirtual=*/false);
Eli Friedman19410a72010-08-05 10:11:36 +00009102 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) {
Douglas Gregorcc8a5d52010-04-29 00:18:15 +00009103 CXXBasePath &Path = Paths.front();
9104 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end();
9105 B != BEnd; ++B)
9106 Comps.push_back(OffsetOfNode(B->Base));
9107 }
Eli Friedman19410a72010-08-05 10:11:36 +00009108
Francois Pichet87c2e122010-11-21 06:08:52 +00009109 if (IndirectMemberDecl) {
9110 for (IndirectFieldDecl::chain_iterator FI =
9111 IndirectMemberDecl->chain_begin(),
9112 FEnd = IndirectMemberDecl->chain_end(); FI != FEnd; FI++) {
9113 assert(isa<FieldDecl>(*FI));
9114 Comps.push_back(OffsetOfNode(OC.LocStart,
9115 cast<FieldDecl>(*FI), OC.LocEnd));
9116 }
9117 } else
Douglas Gregor8ecdb652010-04-28 22:16:22 +00009118 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
Francois Pichet87c2e122010-11-21 06:08:52 +00009119
Douglas Gregor8ecdb652010-04-28 22:16:22 +00009120 CurrentType = MemberDecl->getType().getNonReferenceType();
9121 }
9122
9123 return Owned(OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc,
9124 TInfo, Comps.data(), Comps.size(),
9125 Exprs.data(), Exprs.size(), RParenLoc));
9126}
Mike Stumpeed9cac2009-02-19 03:04:26 +00009127
John McCall60d7b3a2010-08-24 06:29:42 +00009128ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
John McCall2cd11fe2010-10-12 02:09:17 +00009129 SourceLocation BuiltinLoc,
9130 SourceLocation TypeLoc,
9131 ParsedType argty,
9132 OffsetOfComponent *CompPtr,
9133 unsigned NumComponents,
9134 SourceLocation RPLoc) {
9135
Douglas Gregor8ecdb652010-04-28 22:16:22 +00009136 TypeSourceInfo *ArgTInfo;
9137 QualType ArgTy = GetTypeFromParser(argty, &ArgTInfo);
9138 if (ArgTy.isNull())
9139 return ExprError();
9140
Eli Friedman5a15dc12010-08-05 10:15:45 +00009141 if (!ArgTInfo)
9142 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
9143
9144 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents,
9145 RPLoc);
Chris Lattner73d0d4f2007-08-30 17:45:32 +00009146}
9147
9148
John McCall60d7b3a2010-08-24 06:29:42 +00009149ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
John McCall2cd11fe2010-10-12 02:09:17 +00009150 Expr *CondExpr,
9151 Expr *LHSExpr, Expr *RHSExpr,
9152 SourceLocation RPLoc) {
Steve Naroffd04fdd52007-08-03 21:21:27 +00009153 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
9154
John McCallf89e55a2010-11-18 06:31:45 +00009155 ExprValueKind VK = VK_RValue;
9156 ExprObjectKind OK = OK_Ordinary;
Sebastian Redl28507842009-02-26 14:39:58 +00009157 QualType resType;
Douglas Gregorce940492009-09-25 04:25:58 +00009158 bool ValueDependent = false;
Douglas Gregorc9ecc572009-05-19 22:43:30 +00009159 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl28507842009-02-26 14:39:58 +00009160 resType = Context.DependentTy;
Douglas Gregorce940492009-09-25 04:25:58 +00009161 ValueDependent = true;
Sebastian Redl28507842009-02-26 14:39:58 +00009162 } else {
9163 // The conditional expression is required to be a constant expression.
9164 llvm::APSInt condEval(32);
9165 SourceLocation ExpLoc;
9166 if (!CondExpr->isIntegerConstantExpr(condEval, Context, &ExpLoc))
Sebastian Redlf53597f2009-03-15 17:47:39 +00009167 return ExprError(Diag(ExpLoc,
9168 diag::err_typecheck_choose_expr_requires_constant)
9169 << CondExpr->getSourceRange());
Steve Naroffd04fdd52007-08-03 21:21:27 +00009170
Sebastian Redl28507842009-02-26 14:39:58 +00009171 // If the condition is > zero, then the AST type is the same as the LSHExpr.
John McCallf89e55a2010-11-18 06:31:45 +00009172 Expr *ActiveExpr = condEval.getZExtValue() ? LHSExpr : RHSExpr;
9173
9174 resType = ActiveExpr->getType();
9175 ValueDependent = ActiveExpr->isValueDependent();
9176 VK = ActiveExpr->getValueKind();
9177 OK = ActiveExpr->getObjectKind();
Sebastian Redl28507842009-02-26 14:39:58 +00009178 }
9179
Sebastian Redlf53597f2009-03-15 17:47:39 +00009180 return Owned(new (Context) ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr,
John McCallf89e55a2010-11-18 06:31:45 +00009181 resType, VK, OK, RPLoc,
Douglas Gregorce940492009-09-25 04:25:58 +00009182 resType->isDependentType(),
9183 ValueDependent));
Steve Naroffd04fdd52007-08-03 21:21:27 +00009184}
9185
Steve Naroff4eb206b2008-09-03 18:15:37 +00009186//===----------------------------------------------------------------------===//
9187// Clang Extensions.
9188//===----------------------------------------------------------------------===//
9189
9190/// ActOnBlockStart - This callback is invoked when a block literal is started.
Steve Naroff090276f2008-10-10 01:28:17 +00009191void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *BlockScope) {
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009192 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
9193 PushBlockScope(BlockScope, Block);
9194 CurContext->addDecl(Block);
Fariborz Jahaniana729da22010-07-09 18:44:02 +00009195 if (BlockScope)
9196 PushDeclContext(BlockScope, Block);
9197 else
9198 CurContext = Block;
Steve Naroff090276f2008-10-10 01:28:17 +00009199}
9200
Mike Stump98eb8a72009-02-04 22:31:32 +00009201void Sema::ActOnBlockArguments(Declarator &ParamInfo, Scope *CurScope) {
Mike Stumpaf199f32009-05-07 18:43:07 +00009202 assert(ParamInfo.getIdentifier()==0 && "block-id should have no identifier!");
John McCall711c52b2011-01-05 12:14:39 +00009203 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009204 BlockScopeInfo *CurBlock = getCurBlock();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009205
John McCallbf1a0282010-06-04 23:28:52 +00009206 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
John McCallbf1a0282010-06-04 23:28:52 +00009207 QualType T = Sig->getType();
Mike Stump98eb8a72009-02-04 22:31:32 +00009208
John McCall711c52b2011-01-05 12:14:39 +00009209 // GetTypeForDeclarator always produces a function type for a block
9210 // literal signature. Furthermore, it is always a FunctionProtoType
9211 // unless the function was written with a typedef.
9212 assert(T->isFunctionType() &&
9213 "GetTypeForDeclarator made a non-function block signature");
9214
9215 // Look for an explicit signature in that function type.
9216 FunctionProtoTypeLoc ExplicitSignature;
9217
9218 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
9219 if (isa<FunctionProtoTypeLoc>(tmp)) {
9220 ExplicitSignature = cast<FunctionProtoTypeLoc>(tmp);
9221
9222 // Check whether that explicit signature was synthesized by
9223 // GetTypeForDeclarator. If so, don't save that as part of the
9224 // written signature.
Abramo Bagnara796aa442011-03-12 11:17:06 +00009225 if (ExplicitSignature.getLocalRangeBegin() ==
9226 ExplicitSignature.getLocalRangeEnd()) {
John McCall711c52b2011-01-05 12:14:39 +00009227 // This would be much cheaper if we stored TypeLocs instead of
9228 // TypeSourceInfos.
9229 TypeLoc Result = ExplicitSignature.getResultLoc();
9230 unsigned Size = Result.getFullDataSize();
9231 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
9232 Sig->getTypeLoc().initializeFullCopy(Result, Size);
9233
9234 ExplicitSignature = FunctionProtoTypeLoc();
9235 }
John McCall82dc0092010-06-04 11:21:44 +00009236 }
Mike Stump1eb44332009-09-09 15:08:12 +00009237
John McCall711c52b2011-01-05 12:14:39 +00009238 CurBlock->TheDecl->setSignatureAsWritten(Sig);
9239 CurBlock->FunctionType = T;
9240
9241 const FunctionType *Fn = T->getAs<FunctionType>();
9242 QualType RetTy = Fn->getResultType();
9243 bool isVariadic =
9244 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
9245
John McCallc71a4912010-06-04 19:02:56 +00009246 CurBlock->TheDecl->setIsVariadic(isVariadic);
Douglas Gregora873dfc2010-02-03 00:27:59 +00009247
John McCall82dc0092010-06-04 11:21:44 +00009248 // Don't allow returning a objc interface by value.
9249 if (RetTy->isObjCObjectType()) {
9250 Diag(ParamInfo.getSourceRange().getBegin(),
9251 diag::err_object_cannot_be_passed_returned_by_value) << 0 << RetTy;
9252 return;
9253 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009254
John McCall82dc0092010-06-04 11:21:44 +00009255 // Context.DependentTy is used as a placeholder for a missing block
John McCallc71a4912010-06-04 19:02:56 +00009256 // return type. TODO: what should we do with declarators like:
9257 // ^ * { ... }
9258 // If the answer is "apply template argument deduction"....
John McCall82dc0092010-06-04 11:21:44 +00009259 if (RetTy != Context.DependentTy)
9260 CurBlock->ReturnType = RetTy;
Mike Stumpeed9cac2009-02-19 03:04:26 +00009261
John McCall82dc0092010-06-04 11:21:44 +00009262 // Push block parameters from the declarator if we had them.
John McCallc71a4912010-06-04 19:02:56 +00009263 llvm::SmallVector<ParmVarDecl*, 8> Params;
John McCall711c52b2011-01-05 12:14:39 +00009264 if (ExplicitSignature) {
9265 for (unsigned I = 0, E = ExplicitSignature.getNumArgs(); I != E; ++I) {
9266 ParmVarDecl *Param = ExplicitSignature.getArg(I);
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00009267 if (Param->getIdentifier() == 0 &&
9268 !Param->isImplicit() &&
9269 !Param->isInvalidDecl() &&
9270 !getLangOptions().CPlusPlus)
9271 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
John McCallc71a4912010-06-04 19:02:56 +00009272 Params.push_back(Param);
Fariborz Jahanian9a66c302010-02-12 21:53:14 +00009273 }
John McCall82dc0092010-06-04 11:21:44 +00009274
9275 // Fake up parameter variables if we have a typedef, like
9276 // ^ fntype { ... }
9277 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
9278 for (FunctionProtoType::arg_type_iterator
9279 I = Fn->arg_type_begin(), E = Fn->arg_type_end(); I != E; ++I) {
9280 ParmVarDecl *Param =
9281 BuildParmVarDeclForTypedef(CurBlock->TheDecl,
9282 ParamInfo.getSourceRange().getBegin(),
9283 *I);
John McCallc71a4912010-06-04 19:02:56 +00009284 Params.push_back(Param);
John McCall82dc0092010-06-04 11:21:44 +00009285 }
Steve Naroff4eb206b2008-09-03 18:15:37 +00009286 }
John McCall82dc0092010-06-04 11:21:44 +00009287
John McCallc71a4912010-06-04 19:02:56 +00009288 // Set the parameters on the block decl.
Douglas Gregor82aa7132010-11-01 18:37:59 +00009289 if (!Params.empty()) {
John McCallc71a4912010-06-04 19:02:56 +00009290 CurBlock->TheDecl->setParams(Params.data(), Params.size());
Douglas Gregor82aa7132010-11-01 18:37:59 +00009291 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
9292 CurBlock->TheDecl->param_end(),
9293 /*CheckParameterNames=*/false);
9294 }
9295
John McCall82dc0092010-06-04 11:21:44 +00009296 // Finally we can process decl attributes.
Douglas Gregor9cdda0c2009-06-17 21:51:59 +00009297 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
John McCall053f4bd2010-03-22 09:20:08 +00009298
John McCallc71a4912010-06-04 19:02:56 +00009299 if (!isVariadic && CurBlock->TheDecl->getAttr<SentinelAttr>()) {
John McCall82dc0092010-06-04 11:21:44 +00009300 Diag(ParamInfo.getAttributes()->getLoc(),
9301 diag::warn_attribute_sentinel_not_variadic) << 1;
9302 // FIXME: remove the attribute.
9303 }
9304
9305 // Put the parameter variables in scope. We can bail out immediately
9306 // if we don't have any.
John McCallc71a4912010-06-04 19:02:56 +00009307 if (Params.empty())
John McCall82dc0092010-06-04 11:21:44 +00009308 return;
9309
Steve Naroff090276f2008-10-10 01:28:17 +00009310 for (BlockDecl::param_iterator AI = CurBlock->TheDecl->param_begin(),
John McCall7a9813c2010-01-22 00:28:27 +00009311 E = CurBlock->TheDecl->param_end(); AI != E; ++AI) {
9312 (*AI)->setOwningFunction(CurBlock->TheDecl);
9313
Steve Naroff090276f2008-10-10 01:28:17 +00009314 // If this has an identifier, add it to the scope stack.
John McCall053f4bd2010-03-22 09:20:08 +00009315 if ((*AI)->getIdentifier()) {
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00009316 CheckShadow(CurBlock->TheScope, *AI);
John McCall053f4bd2010-03-22 09:20:08 +00009317
Steve Naroff090276f2008-10-10 01:28:17 +00009318 PushOnScopeChains(*AI, CurBlock->TheScope);
John McCall053f4bd2010-03-22 09:20:08 +00009319 }
John McCall7a9813c2010-01-22 00:28:27 +00009320 }
Steve Naroff4eb206b2008-09-03 18:15:37 +00009321}
9322
9323/// ActOnBlockError - If there is an error parsing a block, this callback
9324/// is invoked to pop the information about the block from the action impl.
9325void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
Steve Naroff4eb206b2008-09-03 18:15:37 +00009326 // Pop off CurBlock, handle nested blocks.
Chris Lattner5c59e2b2009-04-21 22:38:46 +00009327 PopDeclContext();
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009328 PopFunctionOrBlockScope();
Steve Naroff4eb206b2008-09-03 18:15:37 +00009329}
9330
9331/// ActOnBlockStmtExpr - This is called when the body of a block statement
9332/// literal was successfully completed. ^(int x){...}
John McCall60d7b3a2010-08-24 06:29:42 +00009333ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
Chris Lattnere476bdc2011-02-17 23:58:47 +00009334 Stmt *Body, Scope *CurScope) {
Chris Lattner9af55002009-03-27 04:18:06 +00009335 // If blocks are disabled, emit an error.
9336 if (!LangOpts.Blocks)
9337 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump1eb44332009-09-09 15:08:12 +00009338
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009339 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
Fariborz Jahaniana729da22010-07-09 18:44:02 +00009340
Steve Naroff090276f2008-10-10 01:28:17 +00009341 PopDeclContext();
9342
Steve Naroff4eb206b2008-09-03 18:15:37 +00009343 QualType RetTy = Context.VoidTy;
Fariborz Jahanian7d5c74e2009-06-19 23:37:08 +00009344 if (!BSI->ReturnType.isNull())
9345 RetTy = BSI->ReturnType;
Mike Stumpeed9cac2009-02-19 03:04:26 +00009346
Mike Stump56925862009-07-28 22:04:01 +00009347 bool NoReturn = BSI->TheDecl->getAttr<NoReturnAttr>();
Steve Naroff4eb206b2008-09-03 18:15:37 +00009348 QualType BlockTy;
John McCallc71a4912010-06-04 19:02:56 +00009349
John McCall469a1eb2011-02-02 13:00:07 +00009350 // Set the captured variables on the block.
John McCall6b5a61b2011-02-07 10:33:21 +00009351 BSI->TheDecl->setCaptures(Context, BSI->Captures.begin(), BSI->Captures.end(),
9352 BSI->CapturesCXXThis);
John McCall469a1eb2011-02-02 13:00:07 +00009353
John McCallc71a4912010-06-04 19:02:56 +00009354 // If the user wrote a function type in some form, try to use that.
9355 if (!BSI->FunctionType.isNull()) {
9356 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
9357
9358 FunctionType::ExtInfo Ext = FTy->getExtInfo();
9359 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
9360
9361 // Turn protoless block types into nullary block types.
9362 if (isa<FunctionNoProtoType>(FTy)) {
John McCalle23cf432010-12-14 08:05:40 +00009363 FunctionProtoType::ExtProtoInfo EPI;
9364 EPI.ExtInfo = Ext;
9365 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI);
John McCallc71a4912010-06-04 19:02:56 +00009366
9367 // Otherwise, if we don't need to change anything about the function type,
9368 // preserve its sugar structure.
9369 } else if (FTy->getResultType() == RetTy &&
9370 (!NoReturn || FTy->getNoReturnAttr())) {
9371 BlockTy = BSI->FunctionType;
9372
9373 // Otherwise, make the minimal modifications to the function type.
9374 } else {
9375 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
John McCalle23cf432010-12-14 08:05:40 +00009376 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
9377 EPI.TypeQuals = 0; // FIXME: silently?
9378 EPI.ExtInfo = Ext;
John McCallc71a4912010-06-04 19:02:56 +00009379 BlockTy = Context.getFunctionType(RetTy,
9380 FPT->arg_type_begin(),
9381 FPT->getNumArgs(),
John McCalle23cf432010-12-14 08:05:40 +00009382 EPI);
John McCallc71a4912010-06-04 19:02:56 +00009383 }
9384
9385 // If we don't have a function type, just build one from nothing.
9386 } else {
John McCalle23cf432010-12-14 08:05:40 +00009387 FunctionProtoType::ExtProtoInfo EPI;
Eli Friedmana49218e2011-04-09 08:18:08 +00009388 EPI.ExtInfo = FunctionType::ExtInfo(NoReturn, false, 0, CC_Default);
John McCalle23cf432010-12-14 08:05:40 +00009389 BlockTy = Context.getFunctionType(RetTy, 0, 0, EPI);
John McCallc71a4912010-06-04 19:02:56 +00009390 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009391
John McCallc71a4912010-06-04 19:02:56 +00009392 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
9393 BSI->TheDecl->param_end());
Steve Naroff4eb206b2008-09-03 18:15:37 +00009394 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stumpeed9cac2009-02-19 03:04:26 +00009395
Chris Lattner17a78302009-04-19 05:28:12 +00009396 // If needed, diagnose invalid gotos and switches in the block.
John McCall781472f2010-08-25 08:40:02 +00009397 if (getCurFunction()->NeedsScopeChecking() && !hasAnyErrorsInThisFunction())
John McCall9ae2f072010-08-23 23:25:46 +00009398 DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
Mike Stump1eb44332009-09-09 15:08:12 +00009399
Chris Lattnere476bdc2011-02-17 23:58:47 +00009400 BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009401
John McCall469a1eb2011-02-02 13:00:07 +00009402 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
John McCalle0054f62010-08-25 05:56:39 +00009403
Ted Kremenek3ed6fc02011-02-23 01:51:48 +00009404 const AnalysisBasedWarnings::Policy &WP = AnalysisWarnings.getDefaultPolicy();
9405 PopFunctionOrBlockScope(&WP, Result->getBlockDecl(), Result);
Douglas Gregor9ea9bdb2010-03-01 23:15:13 +00009406 return Owned(Result);
Steve Naroff4eb206b2008-09-03 18:15:37 +00009407}
9408
John McCall60d7b3a2010-08-24 06:29:42 +00009409ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
John McCallb3d87482010-08-24 05:47:05 +00009410 Expr *expr, ParsedType type,
Sebastian Redlf53597f2009-03-15 17:47:39 +00009411 SourceLocation RPLoc) {
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009412 TypeSourceInfo *TInfo;
Jeffrey Yasskindec09842011-01-18 02:00:16 +00009413 GetTypeFromParser(type, &TInfo);
John McCall9ae2f072010-08-23 23:25:46 +00009414 return BuildVAArgExpr(BuiltinLoc, expr, TInfo, RPLoc);
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009415}
9416
John McCall60d7b3a2010-08-24 06:29:42 +00009417ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
John McCallf89e55a2010-11-18 06:31:45 +00009418 Expr *E, TypeSourceInfo *TInfo,
9419 SourceLocation RPLoc) {
Chris Lattner0d20b8a2009-04-05 15:49:53 +00009420 Expr *OrigExpr = E;
Mike Stump1eb44332009-09-09 15:08:12 +00009421
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009422 // Get the va_list type
9423 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedman5c091ba2009-05-16 12:46:54 +00009424 if (VaListType->isArrayType()) {
9425 // Deal with implicit array decay; for example, on x86-64,
9426 // va_list is an array, but it's supposed to decay to
9427 // a pointer for va_arg.
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009428 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedman5c091ba2009-05-16 12:46:54 +00009429 // Make sure the input expression also decays appropriately.
John Wiegley429bb272011-04-08 18:41:53 +00009430 ExprResult Result = UsualUnaryConversions(E);
9431 if (Result.isInvalid())
9432 return ExprError();
9433 E = Result.take();
Eli Friedman5c091ba2009-05-16 12:46:54 +00009434 } else {
9435 // Otherwise, the va_list argument must be an l-value because
9436 // it is modified by va_arg.
Mike Stump1eb44332009-09-09 15:08:12 +00009437 if (!E->isTypeDependent() &&
Douglas Gregordd027302009-05-19 23:10:31 +00009438 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedman5c091ba2009-05-16 12:46:54 +00009439 return ExprError();
9440 }
Eli Friedmanc34bcde2008-08-09 23:32:40 +00009441
Douglas Gregordd027302009-05-19 23:10:31 +00009442 if (!E->isTypeDependent() &&
9443 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redlf53597f2009-03-15 17:47:39 +00009444 return ExprError(Diag(E->getLocStart(),
9445 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner0d20b8a2009-04-05 15:49:53 +00009446 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner9dc8f192009-04-05 00:59:53 +00009447 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009448
Eli Friedmanb1d796d2009-03-23 00:24:07 +00009449 // FIXME: Check that type is complete/non-abstract
Anders Carlsson7c50aca2007-10-15 20:28:48 +00009450 // FIXME: Warn if a non-POD type is passed in.
Mike Stumpeed9cac2009-02-19 03:04:26 +00009451
Abramo Bagnara2cad9002010-08-10 10:06:15 +00009452 QualType T = TInfo->getType().getNonLValueExprType(Context);
9453 return Owned(new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T));
Anders Carlsson7c50aca2007-10-15 20:28:48 +00009454}
9455
John McCall60d7b3a2010-08-24 06:29:42 +00009456ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009457 // The type of __null will be int or long, depending on the size of
9458 // pointers on the target.
9459 QualType Ty;
NAKAMURA Takumi6e5658d2011-01-19 00:11:41 +00009460 unsigned pw = Context.Target.getPointerWidth(0);
9461 if (pw == Context.Target.getIntWidth())
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009462 Ty = Context.IntTy;
NAKAMURA Takumi6e5658d2011-01-19 00:11:41 +00009463 else if (pw == Context.Target.getLongWidth())
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009464 Ty = Context.LongTy;
NAKAMURA Takumi6e5658d2011-01-19 00:11:41 +00009465 else if (pw == Context.Target.getLongLongWidth())
9466 Ty = Context.LongLongTy;
9467 else {
9468 assert(!"I don't know size of pointer!");
9469 Ty = Context.IntTy;
9470 }
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009471
Sebastian Redlf53597f2009-03-15 17:47:39 +00009472 return Owned(new (Context) GNUNullExpr(Ty, TokenLoc));
Douglas Gregor2d8b2732008-11-29 04:51:27 +00009473}
9474
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009475static void MakeObjCStringLiteralFixItHint(Sema& SemaRef, QualType DstType,
Douglas Gregor849b2432010-03-31 17:46:05 +00009476 Expr *SrcExpr, FixItHint &Hint) {
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009477 if (!SemaRef.getLangOptions().ObjC1)
9478 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009479
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009480 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
9481 if (!PT)
9482 return;
9483
9484 // Check if the destination is of type 'id'.
9485 if (!PT->isObjCIdType()) {
9486 // Check if the destination is the 'NSString' interface.
9487 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
9488 if (!ID || !ID->getIdentifier()->isStr("NSString"))
9489 return;
9490 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009491
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009492 // Strip off any parens and casts.
9493 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr->IgnoreParenCasts());
9494 if (!SL || SL->isWide())
9495 return;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009496
Douglas Gregor849b2432010-03-31 17:46:05 +00009497 Hint = FixItHint::CreateInsertion(SL->getLocStart(), "@");
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009498}
9499
Chris Lattner5cf216b2008-01-04 18:04:52 +00009500bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
9501 SourceLocation Loc,
9502 QualType DstType, QualType SrcType,
Douglas Gregora41a8c52010-04-22 00:20:18 +00009503 Expr *SrcExpr, AssignmentAction Action,
9504 bool *Complained) {
9505 if (Complained)
9506 *Complained = false;
9507
Chris Lattner5cf216b2008-01-04 18:04:52 +00009508 // Decode the result (notice that AST's are still created for extensions).
9509 bool isInvalid = false;
9510 unsigned DiagKind;
Douglas Gregor849b2432010-03-31 17:46:05 +00009511 FixItHint Hint;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009512
Chris Lattner5cf216b2008-01-04 18:04:52 +00009513 switch (ConvTy) {
9514 default: assert(0 && "Unknown conversion type");
9515 case Compatible: return false;
Chris Lattnerb7b61152008-01-04 18:22:42 +00009516 case PointerToInt:
Chris Lattner5cf216b2008-01-04 18:04:52 +00009517 DiagKind = diag::ext_typecheck_convert_pointer_int;
9518 break;
Chris Lattnerb7b61152008-01-04 18:22:42 +00009519 case IntToPointer:
9520 DiagKind = diag::ext_typecheck_convert_int_pointer;
9521 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009522 case IncompatiblePointer:
Douglas Gregor849b2432010-03-31 17:46:05 +00009523 MakeObjCStringLiteralFixItHint(*this, DstType, SrcExpr, Hint);
Chris Lattner5cf216b2008-01-04 18:04:52 +00009524 DiagKind = diag::ext_typecheck_convert_incompatible_pointer;
9525 break;
Eli Friedmanf05c05d2009-03-22 23:59:44 +00009526 case IncompatiblePointerSign:
9527 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
9528 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009529 case FunctionVoidPointer:
9530 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
9531 break;
John McCall86c05f32011-02-01 00:10:29 +00009532 case IncompatiblePointerDiscardsQualifiers: {
John McCall40249e72011-02-01 23:28:01 +00009533 // Perform array-to-pointer decay if necessary.
9534 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
9535
John McCall86c05f32011-02-01 00:10:29 +00009536 Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
9537 Qualifiers rhq = DstType->getPointeeType().getQualifiers();
9538 if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
9539 DiagKind = diag::err_typecheck_incompatible_address_space;
9540 break;
9541 }
9542
9543 llvm_unreachable("unknown error case for discarding qualifiers!");
9544 // fallthrough
9545 }
Chris Lattner5cf216b2008-01-04 18:04:52 +00009546 case CompatiblePointerDiscardsQualifiers:
Douglas Gregor77a52232008-09-12 00:47:35 +00009547 // If the qualifiers lost were because we were applying the
9548 // (deprecated) C++ conversion from a string literal to a char*
9549 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
9550 // Ideally, this check would be performed in
John McCalle4be87e2011-01-31 23:13:11 +00009551 // checkPointerTypesForAssignment. However, that would require a
Douglas Gregor77a52232008-09-12 00:47:35 +00009552 // bit of refactoring (so that the second argument is an
9553 // expression, rather than a type), which should be done as part
John McCalle4be87e2011-01-31 23:13:11 +00009554 // of a larger effort to fix checkPointerTypesForAssignment for
Douglas Gregor77a52232008-09-12 00:47:35 +00009555 // C++ semantics.
9556 if (getLangOptions().CPlusPlus &&
9557 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
9558 return false;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009559 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
9560 break;
Sean Huntc9132b62009-11-08 07:46:34 +00009561 case IncompatibleNestedPointerQualifiers:
Fariborz Jahanian3451e922009-11-09 22:16:37 +00009562 DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
Fariborz Jahanian36a862f2009-11-07 20:20:40 +00009563 break;
Steve Naroff1c7d0672008-09-04 15:10:53 +00009564 case IntToBlockPointer:
9565 DiagKind = diag::err_int_to_block_pointer;
9566 break;
9567 case IncompatibleBlockPointer:
Mike Stump25efa102009-04-21 22:51:42 +00009568 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff1c7d0672008-09-04 15:10:53 +00009569 break;
Steve Naroff39579072008-10-14 22:18:38 +00009570 case IncompatibleObjCQualifiedId:
Mike Stumpeed9cac2009-02-19 03:04:26 +00009571 // FIXME: Diagnose the problem in ObjCQualifiedIdTypesAreCompatible, since
Steve Naroff39579072008-10-14 22:18:38 +00009572 // it can give a more specific diagnostic.
9573 DiagKind = diag::warn_incompatible_qualified_id;
9574 break;
Anders Carlssonb0f90cc2009-01-30 23:17:46 +00009575 case IncompatibleVectors:
9576 DiagKind = diag::warn_incompatible_vectors;
9577 break;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009578 case Incompatible:
9579 DiagKind = diag::err_typecheck_convert_incompatible;
9580 isInvalid = true;
9581 break;
9582 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009583
Douglas Gregord4eea832010-04-09 00:35:39 +00009584 QualType FirstType, SecondType;
9585 switch (Action) {
9586 case AA_Assigning:
9587 case AA_Initializing:
9588 // The destination type comes first.
9589 FirstType = DstType;
9590 SecondType = SrcType;
9591 break;
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009592
Douglas Gregord4eea832010-04-09 00:35:39 +00009593 case AA_Returning:
9594 case AA_Passing:
9595 case AA_Converting:
9596 case AA_Sending:
9597 case AA_Casting:
9598 // The source type comes first.
9599 FirstType = SrcType;
9600 SecondType = DstType;
9601 break;
9602 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009603
Douglas Gregord4eea832010-04-09 00:35:39 +00009604 Diag(Loc, DiagKind) << FirstType << SecondType << Action
Anders Carlssonb76cd3d2009-11-10 04:46:30 +00009605 << SrcExpr->getSourceRange() << Hint;
Douglas Gregora41a8c52010-04-22 00:20:18 +00009606 if (Complained)
9607 *Complained = true;
Chris Lattner5cf216b2008-01-04 18:04:52 +00009608 return isInvalid;
9609}
Anders Carlssone21555e2008-11-30 19:50:32 +00009610
Chris Lattner3bf68932009-04-25 21:59:05 +00009611bool Sema::VerifyIntegerConstantExpression(const Expr *E, llvm::APSInt *Result){
Eli Friedman3b5ccca2009-04-25 22:26:58 +00009612 llvm::APSInt ICEResult;
9613 if (E->isIntegerConstantExpr(ICEResult, Context)) {
9614 if (Result)
9615 *Result = ICEResult;
9616 return false;
9617 }
9618
Anders Carlssone21555e2008-11-30 19:50:32 +00009619 Expr::EvalResult EvalResult;
9620
Mike Stumpeed9cac2009-02-19 03:04:26 +00009621 if (!E->Evaluate(EvalResult, Context) || !EvalResult.Val.isInt() ||
Anders Carlssone21555e2008-11-30 19:50:32 +00009622 EvalResult.HasSideEffects) {
9623 Diag(E->getExprLoc(), diag::err_expr_not_ice) << E->getSourceRange();
9624
9625 if (EvalResult.Diag) {
9626 // We only show the note if it's not the usual "invalid subexpression"
9627 // or if it's actually in a subexpression.
9628 if (EvalResult.Diag != diag::note_invalid_subexpr_in_ice ||
9629 E->IgnoreParens() != EvalResult.DiagExpr->IgnoreParens())
9630 Diag(EvalResult.DiagLoc, EvalResult.Diag);
9631 }
Mike Stumpeed9cac2009-02-19 03:04:26 +00009632
Anders Carlssone21555e2008-11-30 19:50:32 +00009633 return true;
9634 }
9635
Eli Friedman3b5ccca2009-04-25 22:26:58 +00009636 Diag(E->getExprLoc(), diag::ext_expr_not_ice) <<
9637 E->getSourceRange();
Anders Carlssone21555e2008-11-30 19:50:32 +00009638
Eli Friedman3b5ccca2009-04-25 22:26:58 +00009639 if (EvalResult.Diag &&
Argyrios Kyrtzidis08274082010-12-15 18:44:22 +00009640 Diags.getDiagnosticLevel(diag::ext_expr_not_ice, EvalResult.DiagLoc)
9641 != Diagnostic::Ignored)
Eli Friedman3b5ccca2009-04-25 22:26:58 +00009642 Diag(EvalResult.DiagLoc, EvalResult.Diag);
Mike Stumpeed9cac2009-02-19 03:04:26 +00009643
Anders Carlssone21555e2008-11-30 19:50:32 +00009644 if (Result)
9645 *Result = EvalResult.Val.getInt();
9646 return false;
9647}
Douglas Gregore0762c92009-06-19 23:52:42 +00009648
Douglas Gregor2afce722009-11-26 00:44:06 +00009649void
Mike Stump1eb44332009-09-09 15:08:12 +00009650Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext) {
Douglas Gregor2afce722009-11-26 00:44:06 +00009651 ExprEvalContexts.push_back(
9652 ExpressionEvaluationContextRecord(NewContext, ExprTemporaries.size()));
Douglas Gregorac7610d2009-06-22 20:57:11 +00009653}
9654
Mike Stump1eb44332009-09-09 15:08:12 +00009655void
Douglas Gregor2afce722009-11-26 00:44:06 +00009656Sema::PopExpressionEvaluationContext() {
9657 // Pop the current expression evaluation context off the stack.
9658 ExpressionEvaluationContextRecord Rec = ExprEvalContexts.back();
9659 ExprEvalContexts.pop_back();
Douglas Gregorac7610d2009-06-22 20:57:11 +00009660
Douglas Gregor06d33692009-12-12 07:57:52 +00009661 if (Rec.Context == PotentiallyPotentiallyEvaluated) {
9662 if (Rec.PotentiallyReferenced) {
9663 // Mark any remaining declarations in the current position of the stack
9664 // as "referenced". If they were not meant to be referenced, semantic
9665 // analysis would have eliminated them (e.g., in ActOnCXXTypeId).
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009666 for (PotentiallyReferencedDecls::iterator
Douglas Gregor06d33692009-12-12 07:57:52 +00009667 I = Rec.PotentiallyReferenced->begin(),
9668 IEnd = Rec.PotentiallyReferenced->end();
9669 I != IEnd; ++I)
9670 MarkDeclarationReferenced(I->first, I->second);
9671 }
9672
9673 if (Rec.PotentiallyDiagnosed) {
9674 // Emit any pending diagnostics.
9675 for (PotentiallyEmittedDiagnostics::iterator
9676 I = Rec.PotentiallyDiagnosed->begin(),
9677 IEnd = Rec.PotentiallyDiagnosed->end();
9678 I != IEnd; ++I)
9679 Diag(I->first, I->second);
9680 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009681 }
Douglas Gregor2afce722009-11-26 00:44:06 +00009682
9683 // When are coming out of an unevaluated context, clear out any
9684 // temporaries that we may have created as part of the evaluation of
9685 // the expression in that context: they aren't relevant because they
9686 // will never be constructed.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009687 if (Rec.Context == Unevaluated &&
Douglas Gregor2afce722009-11-26 00:44:06 +00009688 ExprTemporaries.size() > Rec.NumTemporaries)
9689 ExprTemporaries.erase(ExprTemporaries.begin() + Rec.NumTemporaries,
9690 ExprTemporaries.end());
9691
9692 // Destroy the popped expression evaluation record.
9693 Rec.Destroy();
Douglas Gregorac7610d2009-06-22 20:57:11 +00009694}
Douglas Gregore0762c92009-06-19 23:52:42 +00009695
9696/// \brief Note that the given declaration was referenced in the source code.
9697///
9698/// This routine should be invoke whenever a given declaration is referenced
9699/// in the source code, and where that reference occurred. If this declaration
9700/// reference means that the the declaration is used (C++ [basic.def.odr]p2,
9701/// C99 6.9p3), then the declaration will be marked as used.
9702///
9703/// \param Loc the location where the declaration was referenced.
9704///
9705/// \param D the declaration that has been referenced by the source code.
9706void Sema::MarkDeclarationReferenced(SourceLocation Loc, Decl *D) {
9707 assert(D && "No declaration?");
Mike Stump1eb44332009-09-09 15:08:12 +00009708
Douglas Gregorc070cc62010-06-17 23:14:26 +00009709 if (D->isUsed(false))
Douglas Gregord7f37bf2009-06-22 23:06:13 +00009710 return;
Mike Stump1eb44332009-09-09 15:08:12 +00009711
Douglas Gregorb5352cf2009-10-08 21:35:42 +00009712 // Mark a parameter or variable declaration "used", regardless of whether we're in a
9713 // template or not. The reason for this is that unevaluated expressions
9714 // (e.g. (void)sizeof()) constitute a use for warning purposes (-Wunused-variables and
9715 // -Wunused-parameters)
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009716 if (isa<ParmVarDecl>(D) ||
Douglas Gregorfc2ca562010-04-07 20:29:57 +00009717 (isa<VarDecl>(D) && D->getDeclContext()->isFunctionOrMethod())) {
Anders Carlsson2127ecc2010-10-22 23:37:08 +00009718 D->setUsed();
Douglas Gregorfc2ca562010-04-07 20:29:57 +00009719 return;
9720 }
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009721
Douglas Gregorfc2ca562010-04-07 20:29:57 +00009722 if (!isa<VarDecl>(D) && !isa<FunctionDecl>(D))
9723 return;
Sean Hunt1e3f5ba2010-04-28 23:02:27 +00009724
Douglas Gregore0762c92009-06-19 23:52:42 +00009725 // Do not mark anything as "used" within a dependent context; wait for
9726 // an instantiation.
9727 if (CurContext->isDependentContext())
9728 return;
Mike Stump1eb44332009-09-09 15:08:12 +00009729
Douglas Gregor2afce722009-11-26 00:44:06 +00009730 switch (ExprEvalContexts.back().Context) {
Douglas Gregorac7610d2009-06-22 20:57:11 +00009731 case Unevaluated:
9732 // We are in an expression that is not potentially evaluated; do nothing.
9733 return;
Mike Stump1eb44332009-09-09 15:08:12 +00009734
Douglas Gregorac7610d2009-06-22 20:57:11 +00009735 case PotentiallyEvaluated:
9736 // We are in a potentially-evaluated expression, so this declaration is
9737 // "used"; handle this below.
9738 break;
Mike Stump1eb44332009-09-09 15:08:12 +00009739
Douglas Gregorac7610d2009-06-22 20:57:11 +00009740 case PotentiallyPotentiallyEvaluated:
9741 // We are in an expression that may be potentially evaluated; queue this
9742 // declaration reference until we know whether the expression is
9743 // potentially evaluated.
Douglas Gregor2afce722009-11-26 00:44:06 +00009744 ExprEvalContexts.back().addReferencedDecl(Loc, D);
Douglas Gregorac7610d2009-06-22 20:57:11 +00009745 return;
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009746
9747 case PotentiallyEvaluatedIfUsed:
9748 // Referenced declarations will only be used if the construct in the
9749 // containing expression is used.
9750 return;
Douglas Gregorac7610d2009-06-22 20:57:11 +00009751 }
Mike Stump1eb44332009-09-09 15:08:12 +00009752
Douglas Gregore0762c92009-06-19 23:52:42 +00009753 // Note that this declaration has been used.
Fariborz Jahanianb7f4cc02009-06-22 17:30:33 +00009754 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(D)) {
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009755 unsigned TypeQuals;
Fariborz Jahanian05a5c452009-06-22 20:37:23 +00009756 if (Constructor->isImplicit() && Constructor->isDefaultConstructor()) {
Chandler Carruth4e6fbce2010-08-23 07:55:51 +00009757 if (Constructor->getParent()->hasTrivialConstructor())
9758 return;
9759 if (!Constructor->isUsed(false))
9760 DefineImplicitDefaultConstructor(Loc, Constructor);
Mike Stump1eb44332009-09-09 15:08:12 +00009761 } else if (Constructor->isImplicit() &&
Douglas Gregor9e9199d2009-12-22 00:34:07 +00009762 Constructor->isCopyConstructor(TypeQuals)) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00009763 if (!Constructor->isUsed(false))
Fariborz Jahanian485f0872009-06-22 23:34:40 +00009764 DefineImplicitCopyConstructor(Loc, Constructor, TypeQuals);
9765 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009766
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009767 MarkVTableUsed(Loc, Constructor->getParent());
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009768 } else if (CXXDestructorDecl *Destructor = dyn_cast<CXXDestructorDecl>(D)) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00009769 if (Destructor->isImplicit() && !Destructor->isUsed(false))
Fariborz Jahanian8d2b3562009-06-26 23:49:16 +00009770 DefineImplicitDestructor(Loc, Destructor);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009771 if (Destructor->isVirtual())
9772 MarkVTableUsed(Loc, Destructor->getParent());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009773 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
9774 if (MethodDecl->isImplicit() && MethodDecl->isOverloadedOperator() &&
9775 MethodDecl->getOverloadedOperator() == OO_Equal) {
Douglas Gregorc070cc62010-06-17 23:14:26 +00009776 if (!MethodDecl->isUsed(false))
Douglas Gregor39957dc2010-05-01 15:04:51 +00009777 DefineImplicitCopyAssignment(Loc, MethodDecl);
Douglas Gregor6fb745b2010-05-13 16:44:06 +00009778 } else if (MethodDecl->isVirtual())
9779 MarkVTableUsed(Loc, MethodDecl->getParent());
Fariborz Jahanianc75bc2d2009-06-25 21:45:19 +00009780 }
Fariborz Jahanianf5ed9e02009-06-24 22:09:44 +00009781 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(D)) {
John McCall15e310a2011-02-19 02:53:41 +00009782 // Recursive functions should be marked when used from another function.
9783 if (CurContext == Function) return;
9784
Mike Stump1eb44332009-09-09 15:08:12 +00009785 // Implicit instantiation of function templates and member functions of
Douglas Gregor1637be72009-06-26 00:10:03 +00009786 // class templates.
Douglas Gregor6cfacfe2010-05-17 17:34:56 +00009787 if (Function->isImplicitlyInstantiable()) {
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009788 bool AlreadyInstantiated = false;
9789 if (FunctionTemplateSpecializationInfo *SpecInfo
9790 = Function->getTemplateSpecializationInfo()) {
9791 if (SpecInfo->getPointOfInstantiation().isInvalid())
9792 SpecInfo->setPointOfInstantiation(Loc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009793 else if (SpecInfo->getTemplateSpecializationKind()
Douglas Gregor3b846b62009-10-27 20:53:28 +00009794 == TSK_ImplicitInstantiation)
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009795 AlreadyInstantiated = true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009796 } else if (MemberSpecializationInfo *MSInfo
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009797 = Function->getMemberSpecializationInfo()) {
9798 if (MSInfo->getPointOfInstantiation().isInvalid())
9799 MSInfo->setPointOfInstantiation(Loc);
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009800 else if (MSInfo->getTemplateSpecializationKind()
Douglas Gregor3b846b62009-10-27 20:53:28 +00009801 == TSK_ImplicitInstantiation)
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009802 AlreadyInstantiated = true;
9803 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009804
Douglas Gregor60406be2010-01-16 22:29:39 +00009805 if (!AlreadyInstantiated) {
9806 if (isa<CXXRecordDecl>(Function->getDeclContext()) &&
9807 cast<CXXRecordDecl>(Function->getDeclContext())->isLocalClass())
9808 PendingLocalImplicitInstantiations.push_back(std::make_pair(Function,
9809 Loc));
9810 else
Chandler Carruth62c78d52010-08-25 08:44:16 +00009811 PendingInstantiations.push_back(std::make_pair(Function, Loc));
Douglas Gregor60406be2010-01-16 22:29:39 +00009812 }
John McCall15e310a2011-02-19 02:53:41 +00009813 } else {
9814 // Walk redefinitions, as some of them may be instantiable.
Gabor Greif40181c42010-08-28 00:16:06 +00009815 for (FunctionDecl::redecl_iterator i(Function->redecls_begin()),
9816 e(Function->redecls_end()); i != e; ++i) {
Gabor Greifbe9ebe32010-08-28 01:58:12 +00009817 if (!i->isUsed(false) && i->isImplicitlyInstantiable())
Gabor Greif40181c42010-08-28 00:16:06 +00009818 MarkDeclarationReferenced(Loc, *i);
9819 }
John McCall15e310a2011-02-19 02:53:41 +00009820 }
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009821
John McCall15e310a2011-02-19 02:53:41 +00009822 // Keep track of used but undefined functions.
9823 if (!Function->isPure() && !Function->hasBody() &&
9824 Function->getLinkage() != ExternalLinkage) {
9825 SourceLocation &old = UndefinedInternals[Function->getCanonicalDecl()];
9826 if (old.isInvalid()) old = Loc;
9827 }
Argyrios Kyrtzidis58b52592010-08-25 10:34:54 +00009828
John McCall15e310a2011-02-19 02:53:41 +00009829 Function->setUsed(true);
Douglas Gregore0762c92009-06-19 23:52:42 +00009830 return;
Douglas Gregord7f37bf2009-06-22 23:06:13 +00009831 }
Mike Stump1eb44332009-09-09 15:08:12 +00009832
Douglas Gregore0762c92009-06-19 23:52:42 +00009833 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
Douglas Gregor7caa6822009-07-24 20:34:43 +00009834 // Implicit instantiation of static data members of class templates.
Mike Stump1eb44332009-09-09 15:08:12 +00009835 if (Var->isStaticDataMember() &&
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009836 Var->getInstantiatedFromStaticDataMember()) {
9837 MemberSpecializationInfo *MSInfo = Var->getMemberSpecializationInfo();
9838 assert(MSInfo && "Missing member specialization information?");
9839 if (MSInfo->getPointOfInstantiation().isInvalid() &&
9840 MSInfo->getTemplateSpecializationKind()== TSK_ImplicitInstantiation) {
9841 MSInfo->setPointOfInstantiation(Loc);
Chandler Carruth62c78d52010-08-25 08:44:16 +00009842 PendingInstantiations.push_back(std::make_pair(Var, Loc));
Douglas Gregorb3ae4fc2009-10-12 20:18:28 +00009843 }
9844 }
Mike Stump1eb44332009-09-09 15:08:12 +00009845
John McCall77efc682011-02-21 19:25:48 +00009846 // Keep track of used but undefined variables. We make a hole in
9847 // the warning for static const data members with in-line
9848 // initializers.
John McCall15e310a2011-02-19 02:53:41 +00009849 if (Var->hasDefinition() == VarDecl::DeclarationOnly
John McCall77efc682011-02-21 19:25:48 +00009850 && Var->getLinkage() != ExternalLinkage
9851 && !(Var->isStaticDataMember() && Var->hasInit())) {
John McCall15e310a2011-02-19 02:53:41 +00009852 SourceLocation &old = UndefinedInternals[Var->getCanonicalDecl()];
9853 if (old.isInvalid()) old = Loc;
9854 }
Douglas Gregor7caa6822009-07-24 20:34:43 +00009855
Douglas Gregore0762c92009-06-19 23:52:42 +00009856 D->setUsed(true);
Douglas Gregor7caa6822009-07-24 20:34:43 +00009857 return;
Sam Weinigcce6ebc2009-09-11 03:29:30 +00009858 }
Douglas Gregore0762c92009-06-19 23:52:42 +00009859}
Anders Carlsson8c8d9192009-10-09 23:51:55 +00009860
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009861namespace {
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009862 // Mark all of the declarations referenced
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009863 // FIXME: Not fully implemented yet! We need to have a better understanding
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009864 // of when we're entering
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009865 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
9866 Sema &S;
9867 SourceLocation Loc;
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009868
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009869 public:
9870 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009871
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009872 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009873
9874 bool TraverseTemplateArgument(const TemplateArgument &Arg);
9875 bool TraverseRecordType(RecordType *T);
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009876 };
9877}
9878
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009879bool MarkReferencedDecls::TraverseTemplateArgument(
9880 const TemplateArgument &Arg) {
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009881 if (Arg.getKind() == TemplateArgument::Declaration) {
9882 S.MarkDeclarationReferenced(Loc, Arg.getAsDecl());
9883 }
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009884
9885 return Inherited::TraverseTemplateArgument(Arg);
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009886}
9887
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009888bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009889 if (ClassTemplateSpecializationDecl *Spec
9890 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
9891 const TemplateArgumentList &Args = Spec->getTemplateArgs();
Douglas Gregor910f8002010-11-07 23:05:16 +00009892 return TraverseTemplateArguments(Args.data(), Args.size());
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009893 }
9894
Chandler Carruthe3e210c2010-06-10 10:31:57 +00009895 return true;
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009896}
9897
9898void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
9899 MarkReferencedDecls Marker(*this, Loc);
Chandler Carruthdfc35e32010-06-09 08:17:30 +00009900 Marker.TraverseType(Context.getCanonicalType(T));
Douglas Gregorb4eeaff2010-05-07 23:12:07 +00009901}
9902
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009903namespace {
9904 /// \brief Helper class that marks all of the declarations referenced by
9905 /// potentially-evaluated subexpressions as "referenced".
9906 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
9907 Sema &S;
9908
9909 public:
9910 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
9911
9912 explicit EvaluatedExprMarker(Sema &S) : Inherited(S.Context), S(S) { }
9913
9914 void VisitDeclRefExpr(DeclRefExpr *E) {
9915 S.MarkDeclarationReferenced(E->getLocation(), E->getDecl());
9916 }
9917
9918 void VisitMemberExpr(MemberExpr *E) {
9919 S.MarkDeclarationReferenced(E->getMemberLoc(), E->getMemberDecl());
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00009920 Inherited::VisitMemberExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009921 }
9922
9923 void VisitCXXNewExpr(CXXNewExpr *E) {
9924 if (E->getConstructor())
9925 S.MarkDeclarationReferenced(E->getLocStart(), E->getConstructor());
9926 if (E->getOperatorNew())
9927 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorNew());
9928 if (E->getOperatorDelete())
9929 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00009930 Inherited::VisitCXXNewExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009931 }
9932
9933 void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
9934 if (E->getOperatorDelete())
9935 S.MarkDeclarationReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor5833b0b2010-09-14 22:55:20 +00009936 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
9937 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
9938 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
9939 S.MarkDeclarationReferenced(E->getLocStart(),
9940 S.LookupDestructor(Record));
9941 }
9942
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00009943 Inherited::VisitCXXDeleteExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009944 }
9945
9946 void VisitCXXConstructExpr(CXXConstructExpr *E) {
9947 S.MarkDeclarationReferenced(E->getLocStart(), E->getConstructor());
Douglas Gregor4fcf5b22010-09-11 23:32:50 +00009948 Inherited::VisitCXXConstructExpr(E);
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009949 }
9950
9951 void VisitBlockDeclRefExpr(BlockDeclRefExpr *E) {
9952 S.MarkDeclarationReferenced(E->getLocation(), E->getDecl());
9953 }
Douglas Gregor102ff972010-10-19 17:17:35 +00009954
9955 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
9956 Visit(E->getExpr());
9957 }
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009958 };
9959}
9960
9961/// \brief Mark any declarations that appear within this expression or any
9962/// potentially-evaluated subexpressions as "referenced".
9963void Sema::MarkDeclarationsReferencedInExpr(Expr *E) {
9964 EvaluatedExprMarker(*this).Visit(E);
9965}
9966
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009967/// \brief Emit a diagnostic that describes an effect on the run-time behavior
9968/// of the program being compiled.
9969///
9970/// This routine emits the given diagnostic when the code currently being
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009971/// type-checked is "potentially evaluated", meaning that there is a
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009972/// possibility that the code will actually be executable. Code in sizeof()
9973/// expressions, code used only during overload resolution, etc., are not
9974/// potentially evaluated. This routine will suppress such diagnostics or,
9975/// in the absolutely nutty case of potentially potentially evaluated
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009976/// expressions (C++ typeid), queue the diagnostic to potentially emit it
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009977/// later.
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009978///
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009979/// This routine should be used for all diagnostics that describe the run-time
9980/// behavior of a program, such as passing a non-POD value through an ellipsis.
9981/// Failure to do so will likely result in spurious diagnostics or failures
9982/// during overload resolution or within sizeof/alignof/typeof/typeid.
Ted Kremenek762696f2011-02-23 01:51:43 +00009983bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *stmt,
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009984 const PartialDiagnostic &PD) {
9985 switch (ExprEvalContexts.back().Context ) {
9986 case Unevaluated:
9987 // The argument will never be evaluated, so don't complain.
9988 break;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +00009989
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009990 case PotentiallyEvaluated:
Douglas Gregorbe0f7bd2010-09-11 20:24:53 +00009991 case PotentiallyEvaluatedIfUsed:
Ted Kremenek351ba912011-02-23 01:52:04 +00009992 if (stmt && getCurFunctionOrMethodDecl()) {
9993 FunctionScopes.back()->PossiblyUnreachableDiags.
9994 push_back(sema::PossiblyUnreachableDiag(PD, Loc, stmt));
9995 }
9996 else
9997 Diag(Loc, PD);
9998
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +00009999 return true;
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010000
Douglas Gregor1c7c3fb2009-12-22 01:01:55 +000010001 case PotentiallyPotentiallyEvaluated:
10002 ExprEvalContexts.back().addDiagnostic(Loc, PD);
10003 break;
10004 }
10005
10006 return false;
10007}
10008
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010009bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
10010 CallExpr *CE, FunctionDecl *FD) {
10011 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
10012 return false;
10013
10014 PartialDiagnostic Note =
10015 FD ? PDiag(diag::note_function_with_incomplete_return_type_declared_here)
10016 << FD->getDeclName() : PDiag();
10017 SourceLocation NoteLoc = FD ? FD->getLocation() : SourceLocation();
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010018
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010019 if (RequireCompleteType(Loc, ReturnType,
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010020 FD ?
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010021 PDiag(diag::err_call_function_incomplete_return)
10022 << CE->getSourceRange() << FD->getDeclName() :
Kovarththanan Rajaratnam19357542010-03-13 10:17:05 +000010023 PDiag(diag::err_call_incomplete_return)
Anders Carlsson8c8d9192009-10-09 23:51:55 +000010024 << CE->getSourceRange(),
10025 std::make_pair(NoteLoc, Note)))
10026 return true;
10027
10028 return false;
10029}
10030
Douglas Gregor92c3a042011-01-19 16:50:08 +000010031// Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
John McCall5a881bb2009-10-12 21:59:07 +000010032// will prevent this condition from triggering, which is what we want.
10033void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
10034 SourceLocation Loc;
10035
John McCalla52ef082009-11-11 02:41:58 +000010036 unsigned diagnostic = diag::warn_condition_is_assignment;
Douglas Gregor92c3a042011-01-19 16:50:08 +000010037 bool IsOrAssign = false;
John McCalla52ef082009-11-11 02:41:58 +000010038
John McCall5a881bb2009-10-12 21:59:07 +000010039 if (isa<BinaryOperator>(E)) {
10040 BinaryOperator *Op = cast<BinaryOperator>(E);
Douglas Gregor92c3a042011-01-19 16:50:08 +000010041 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
John McCall5a881bb2009-10-12 21:59:07 +000010042 return;
10043
Douglas Gregor92c3a042011-01-19 16:50:08 +000010044 IsOrAssign = Op->getOpcode() == BO_OrAssign;
10045
John McCallc8d8ac52009-11-12 00:06:05 +000010046 // Greylist some idioms by putting them into a warning subcategory.
10047 if (ObjCMessageExpr *ME
10048 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
10049 Selector Sel = ME->getSelector();
10050
John McCallc8d8ac52009-11-12 00:06:05 +000010051 // self = [<foo> init...]
Douglas Gregor813d8342011-02-18 22:29:55 +000010052 if (isSelfExpr(Op->getLHS()) && Sel.getNameForSlot(0).startswith("init"))
John McCallc8d8ac52009-11-12 00:06:05 +000010053 diagnostic = diag::warn_condition_is_idiomatic_assignment;
10054
10055 // <foo> = [<bar> nextObject]
Douglas Gregor813d8342011-02-18 22:29:55 +000010056 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
John McCallc8d8ac52009-11-12 00:06:05 +000010057 diagnostic = diag::warn_condition_is_idiomatic_assignment;
10058 }
John McCalla52ef082009-11-11 02:41:58 +000010059
John McCall5a881bb2009-10-12 21:59:07 +000010060 Loc = Op->getOperatorLoc();
10061 } else if (isa<CXXOperatorCallExpr>(E)) {
10062 CXXOperatorCallExpr *Op = cast<CXXOperatorCallExpr>(E);
Douglas Gregor92c3a042011-01-19 16:50:08 +000010063 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
John McCall5a881bb2009-10-12 21:59:07 +000010064 return;
10065
Douglas Gregor92c3a042011-01-19 16:50:08 +000010066 IsOrAssign = Op->getOperator() == OO_PipeEqual;
John McCall5a881bb2009-10-12 21:59:07 +000010067 Loc = Op->getOperatorLoc();
10068 } else {
10069 // Not an assignment.
10070 return;
10071 }
10072
Douglas Gregor55b38842010-04-14 16:09:52 +000010073 Diag(Loc, diagnostic) << E->getSourceRange();
Douglas Gregor92c3a042011-01-19 16:50:08 +000010074
10075 if (IsOrAssign)
10076 Diag(Loc, diag::note_condition_or_assign_to_comparison)
10077 << FixItHint::CreateReplacement(Loc, "!=");
10078 else
10079 Diag(Loc, diag::note_condition_assign_to_comparison)
10080 << FixItHint::CreateReplacement(Loc, "==");
10081
Fariborz Jahanian81ab3cf2011-04-13 20:31:26 +000010082 SourceLocation Open = E->getSourceRange().getBegin();
10083 SourceLocation Close = E->getSourceRange().getEnd();
Fariborz Jahanian60274612011-04-13 22:18:37 +000010084 SourceLocation LocForEndOfToken =
10085 Close.isMacroID() ? Close : PP.getLocForEndOfToken(Close);
10086 Diag(Loc, diag::note_condition_assign_silence)
10087 << FixItHint::CreateInsertion(Open, "(")
10088 << FixItHint::CreateInsertion(LocForEndOfToken, ")");
John McCall5a881bb2009-10-12 21:59:07 +000010089}
10090
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010091/// \brief Redundant parentheses over an equality comparison can indicate
10092/// that the user intended an assignment used as condition.
10093void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *parenE) {
Argyrios Kyrtzidiscf1620a2011-02-01 22:23:56 +000010094 // Don't warn if the parens came from a macro.
10095 SourceLocation parenLoc = parenE->getLocStart();
10096 if (parenLoc.isInvalid() || parenLoc.isMacroID())
10097 return;
Argyrios Kyrtzidis170a6a22011-03-28 23:52:04 +000010098 // Don't warn for dependent expressions.
10099 if (parenE->isTypeDependent())
10100 return;
Argyrios Kyrtzidiscf1620a2011-02-01 22:23:56 +000010101
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010102 Expr *E = parenE->IgnoreParens();
10103
10104 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
Argyrios Kyrtzidis70f23302011-02-01 19:32:59 +000010105 if (opE->getOpcode() == BO_EQ &&
10106 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
10107 == Expr::MLV_Valid) {
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010108 SourceLocation Loc = opE->getOperatorLoc();
Ted Kremenek006ae382011-02-01 22:36:09 +000010109
Ted Kremenekf7275cd2011-02-02 02:20:30 +000010110 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
10111 Diag(Loc, diag::note_equality_comparison_to_assign)
10112 << FixItHint::CreateReplacement(Loc, "=");
10113 Diag(Loc, diag::note_equality_comparison_silence)
10114 << FixItHint::CreateRemoval(parenE->getSourceRange().getBegin())
10115 << FixItHint::CreateRemoval(parenE->getSourceRange().getEnd());
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010116 }
10117}
10118
John Wiegley429bb272011-04-08 18:41:53 +000010119ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
John McCall5a881bb2009-10-12 21:59:07 +000010120 DiagnoseAssignmentAsCondition(E);
Argyrios Kyrtzidis0e2dc3a2011-02-01 18:24:22 +000010121 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
10122 DiagnoseEqualityWithExtraParens(parenE);
John McCall5a881bb2009-10-12 21:59:07 +000010123
10124 if (!E->isTypeDependent()) {
John Wiegley429bb272011-04-08 18:41:53 +000010125 if (E->isBoundMemberFunction(Context)) {
10126 Diag(E->getLocStart(), diag::err_invalid_use_of_bound_member_func)
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +000010127 << E->getSourceRange();
John Wiegley429bb272011-04-08 18:41:53 +000010128 return ExprError();
10129 }
Argyrios Kyrtzidis11ab7902010-11-01 18:49:26 +000010130
John McCallf6a16482010-12-04 03:47:34 +000010131 if (getLangOptions().CPlusPlus)
10132 return CheckCXXBooleanCondition(E); // C++ 6.4p4
10133
John Wiegley429bb272011-04-08 18:41:53 +000010134 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
10135 if (ERes.isInvalid())
10136 return ExprError();
10137 E = ERes.take();
John McCallabc56c72010-12-04 06:09:13 +000010138
10139 QualType T = E->getType();
John Wiegley429bb272011-04-08 18:41:53 +000010140 if (!T->isScalarType()) { // C99 6.8.4.1p1
10141 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
10142 << T << E->getSourceRange();
10143 return ExprError();
10144 }
John McCall5a881bb2009-10-12 21:59:07 +000010145 }
10146
John Wiegley429bb272011-04-08 18:41:53 +000010147 return Owned(E);
John McCall5a881bb2009-10-12 21:59:07 +000010148}
Douglas Gregor586596f2010-05-06 17:25:47 +000010149
John McCall60d7b3a2010-08-24 06:29:42 +000010150ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
10151 Expr *Sub) {
Douglas Gregoreecf38f2010-05-06 21:39:56 +000010152 if (!Sub)
Douglas Gregor586596f2010-05-06 17:25:47 +000010153 return ExprError();
John Wiegley429bb272011-04-08 18:41:53 +000010154
10155 return CheckBooleanCondition(Sub, Loc);
Douglas Gregor586596f2010-05-06 17:25:47 +000010156}
John McCall2a984ca2010-10-12 00:20:44 +000010157
John McCall1de4d4e2011-04-07 08:22:57 +000010158namespace {
John McCall755d8492011-04-12 00:42:48 +000010159 /// A visitor for rebuilding a call to an __unknown_any expression
10160 /// to have an appropriate type.
10161 struct RebuildUnknownAnyFunction
10162 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
10163
10164 Sema &S;
10165
10166 RebuildUnknownAnyFunction(Sema &S) : S(S) {}
10167
10168 ExprResult VisitStmt(Stmt *S) {
10169 llvm_unreachable("unexpected statement!");
10170 return ExprError();
10171 }
10172
10173 ExprResult VisitExpr(Expr *expr) {
10174 S.Diag(expr->getExprLoc(), diag::err_unsupported_unknown_any_call)
10175 << expr->getSourceRange();
10176 return ExprError();
10177 }
10178
10179 /// Rebuild an expression which simply semantically wraps another
10180 /// expression which it shares the type and value kind of.
10181 template <class T> ExprResult rebuildSugarExpr(T *expr) {
10182 ExprResult subResult = Visit(expr->getSubExpr());
10183 if (subResult.isInvalid()) return ExprError();
10184
10185 Expr *subExpr = subResult.take();
10186 expr->setSubExpr(subExpr);
10187 expr->setType(subExpr->getType());
10188 expr->setValueKind(subExpr->getValueKind());
10189 assert(expr->getObjectKind() == OK_Ordinary);
10190 return expr;
10191 }
10192
10193 ExprResult VisitParenExpr(ParenExpr *paren) {
10194 return rebuildSugarExpr(paren);
10195 }
10196
10197 ExprResult VisitUnaryExtension(UnaryOperator *op) {
10198 return rebuildSugarExpr(op);
10199 }
10200
10201 ExprResult VisitUnaryAddrOf(UnaryOperator *op) {
10202 ExprResult subResult = Visit(op->getSubExpr());
10203 if (subResult.isInvalid()) return ExprError();
10204
10205 Expr *subExpr = subResult.take();
10206 op->setSubExpr(subExpr);
10207 op->setType(S.Context.getPointerType(subExpr->getType()));
10208 assert(op->getValueKind() == VK_RValue);
10209 assert(op->getObjectKind() == OK_Ordinary);
10210 return op;
10211 }
10212
10213 ExprResult resolveDecl(Expr *expr, ValueDecl *decl) {
10214 if (!isa<FunctionDecl>(decl)) return VisitExpr(expr);
10215
10216 expr->setType(decl->getType());
10217
10218 assert(expr->getValueKind() == VK_RValue);
10219 if (S.getLangOptions().CPlusPlus &&
10220 !(isa<CXXMethodDecl>(decl) &&
10221 cast<CXXMethodDecl>(decl)->isInstance()))
10222 expr->setValueKind(VK_LValue);
10223
10224 return expr;
10225 }
10226
10227 ExprResult VisitMemberExpr(MemberExpr *mem) {
10228 return resolveDecl(mem, mem->getMemberDecl());
10229 }
10230
10231 ExprResult VisitDeclRefExpr(DeclRefExpr *ref) {
10232 return resolveDecl(ref, ref->getDecl());
10233 }
10234 };
10235}
10236
10237/// Given a function expression of unknown-any type, try to rebuild it
10238/// to have a function type.
10239static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn) {
10240 ExprResult result = RebuildUnknownAnyFunction(S).Visit(fn);
10241 if (result.isInvalid()) return ExprError();
10242 return S.DefaultFunctionArrayConversion(result.take());
10243}
10244
10245namespace {
John McCall379b5152011-04-11 07:02:50 +000010246 /// A visitor for rebuilding an expression of type __unknown_anytype
10247 /// into one which resolves the type directly on the referring
10248 /// expression. Strict preservation of the original source
10249 /// structure is not a goal.
John McCall1de4d4e2011-04-07 08:22:57 +000010250 struct RebuildUnknownAnyExpr
John McCalla5fc4722011-04-09 22:50:59 +000010251 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
John McCall1de4d4e2011-04-07 08:22:57 +000010252
10253 Sema &S;
10254
10255 /// The current destination type.
10256 QualType DestType;
10257
10258 RebuildUnknownAnyExpr(Sema &S, QualType castType)
10259 : S(S), DestType(castType) {}
10260
John McCalla5fc4722011-04-09 22:50:59 +000010261 ExprResult VisitStmt(Stmt *S) {
John McCall379b5152011-04-11 07:02:50 +000010262 llvm_unreachable("unexpected statement!");
John McCalla5fc4722011-04-09 22:50:59 +000010263 return ExprError();
John McCall1de4d4e2011-04-07 08:22:57 +000010264 }
10265
John McCall379b5152011-04-11 07:02:50 +000010266 ExprResult VisitExpr(Expr *expr) {
10267 S.Diag(expr->getExprLoc(), diag::err_unsupported_unknown_any_expr)
10268 << expr->getSourceRange();
10269 return ExprError();
John McCall1de4d4e2011-04-07 08:22:57 +000010270 }
10271
John McCall379b5152011-04-11 07:02:50 +000010272 ExprResult VisitCallExpr(CallExpr *call);
10273 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *message);
10274
John McCalla5fc4722011-04-09 22:50:59 +000010275 /// Rebuild an expression which simply semantically wraps another
10276 /// expression which it shares the type and value kind of.
10277 template <class T> ExprResult rebuildSugarExpr(T *expr) {
10278 ExprResult subResult = Visit(expr->getSubExpr());
John McCall755d8492011-04-12 00:42:48 +000010279 if (subResult.isInvalid()) return ExprError();
John McCalla5fc4722011-04-09 22:50:59 +000010280 Expr *subExpr = subResult.take();
10281 expr->setSubExpr(subExpr);
10282 expr->setType(subExpr->getType());
10283 expr->setValueKind(subExpr->getValueKind());
10284 assert(expr->getObjectKind() == OK_Ordinary);
10285 return expr;
10286 }
John McCall1de4d4e2011-04-07 08:22:57 +000010287
John McCalla5fc4722011-04-09 22:50:59 +000010288 ExprResult VisitParenExpr(ParenExpr *paren) {
10289 return rebuildSugarExpr(paren);
10290 }
10291
10292 ExprResult VisitUnaryExtension(UnaryOperator *op) {
10293 return rebuildSugarExpr(op);
10294 }
10295
John McCall755d8492011-04-12 00:42:48 +000010296 ExprResult VisitUnaryAddrOf(UnaryOperator *op) {
10297 const PointerType *ptr = DestType->getAs<PointerType>();
10298 if (!ptr) {
10299 S.Diag(op->getOperatorLoc(), diag::err_unknown_any_addrof)
10300 << op->getSourceRange();
10301 return ExprError();
10302 }
10303 assert(op->getValueKind() == VK_RValue);
10304 assert(op->getObjectKind() == OK_Ordinary);
10305 op->setType(DestType);
10306
10307 // Build the sub-expression as if it were an object of the pointee type.
10308 DestType = ptr->getPointeeType();
10309 ExprResult subResult = Visit(op->getSubExpr());
10310 if (subResult.isInvalid()) return ExprError();
10311 op->setSubExpr(subResult.take());
10312 return op;
10313 }
10314
John McCall379b5152011-04-11 07:02:50 +000010315 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *ice);
John McCalla5fc4722011-04-09 22:50:59 +000010316
John McCall755d8492011-04-12 00:42:48 +000010317 ExprResult resolveDecl(Expr *expr, ValueDecl *decl);
John McCalla5fc4722011-04-09 22:50:59 +000010318
John McCall755d8492011-04-12 00:42:48 +000010319 ExprResult VisitMemberExpr(MemberExpr *mem) {
10320 return resolveDecl(mem, mem->getMemberDecl());
10321 }
John McCalla5fc4722011-04-09 22:50:59 +000010322
10323 ExprResult VisitDeclRefExpr(DeclRefExpr *ref) {
John McCall379b5152011-04-11 07:02:50 +000010324 return resolveDecl(ref, ref->getDecl());
John McCall1de4d4e2011-04-07 08:22:57 +000010325 }
10326 };
10327}
10328
John McCall379b5152011-04-11 07:02:50 +000010329/// Rebuilds a call expression which yielded __unknown_anytype.
10330ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *call) {
10331 Expr *callee = call->getCallee();
10332
10333 enum FnKind {
10334 FK_Function,
10335 FK_FunctionPointer,
10336 FK_BlockPointer
10337 };
10338
10339 FnKind kind;
10340 QualType type = callee->getType();
10341 if (type->isFunctionType()) {
10342 assert(isa<CXXMemberCallExpr>(call) || isa<CXXOperatorCallExpr>(call));
10343 kind = FK_Function;
10344 } else if (const PointerType *ptr = type->getAs<PointerType>()) {
10345 type = ptr->getPointeeType();
10346 kind = FK_FunctionPointer;
10347 } else {
10348 type = type->castAs<BlockPointerType>()->getPointeeType();
10349 kind = FK_BlockPointer;
10350 }
10351 const FunctionType *fnType = type->castAs<FunctionType>();
10352
10353 // Verify that this is a legal result type of a function.
10354 if (DestType->isArrayType() || DestType->isFunctionType()) {
10355 unsigned diagID = diag::err_func_returning_array_function;
10356 if (kind == FK_BlockPointer)
10357 diagID = diag::err_block_returning_array_function;
10358
10359 S.Diag(call->getExprLoc(), diagID)
10360 << DestType->isFunctionType() << DestType;
10361 return ExprError();
10362 }
10363
10364 // Otherwise, go ahead and set DestType as the call's result.
10365 call->setType(DestType.getNonLValueExprType(S.Context));
10366 call->setValueKind(Expr::getValueKindForType(DestType));
10367 assert(call->getObjectKind() == OK_Ordinary);
10368
10369 // Rebuild the function type, replacing the result type with DestType.
10370 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fnType))
10371 DestType = S.Context.getFunctionType(DestType,
10372 proto->arg_type_begin(),
10373 proto->getNumArgs(),
10374 proto->getExtProtoInfo());
10375 else
10376 DestType = S.Context.getFunctionNoProtoType(DestType,
10377 fnType->getExtInfo());
10378
10379 // Rebuild the appropriate pointer-to-function type.
10380 switch (kind) {
10381 case FK_Function:
10382 // Nothing to do.
10383 break;
10384
10385 case FK_FunctionPointer:
10386 DestType = S.Context.getPointerType(DestType);
10387 break;
10388
10389 case FK_BlockPointer:
10390 DestType = S.Context.getBlockPointerType(DestType);
10391 break;
10392 }
10393
10394 // Finally, we can recurse.
10395 ExprResult calleeResult = Visit(callee);
10396 if (!calleeResult.isUsable()) return ExprError();
10397 call->setCallee(calleeResult.take());
10398
10399 // Bind a temporary if necessary.
10400 return S.MaybeBindToTemporary(call);
10401}
10402
10403ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *msg) {
John McCall755d8492011-04-12 00:42:48 +000010404 ObjCMethodDecl *method = msg->getMethodDecl();
10405 assert(method && "__unknown_anytype message without result type?");
John McCall379b5152011-04-11 07:02:50 +000010406
John McCall755d8492011-04-12 00:42:48 +000010407 // Verify that this is a legal result type of a call.
10408 if (DestType->isArrayType() || DestType->isFunctionType()) {
10409 S.Diag(msg->getExprLoc(), diag::err_func_returning_array_function)
10410 << DestType->isFunctionType() << DestType;
10411 return ExprError();
John McCall379b5152011-04-11 07:02:50 +000010412 }
10413
John McCall755d8492011-04-12 00:42:48 +000010414 assert(method->getResultType() == S.Context.UnknownAnyTy);
10415 method->setResultType(DestType);
10416
John McCall379b5152011-04-11 07:02:50 +000010417 // Change the type of the message.
John McCall755d8492011-04-12 00:42:48 +000010418 msg->setType(DestType.getNonReferenceType());
10419 msg->setValueKind(Expr::getValueKindForType(DestType));
John McCall379b5152011-04-11 07:02:50 +000010420
John McCall755d8492011-04-12 00:42:48 +000010421 return S.MaybeBindToTemporary(msg);
John McCall379b5152011-04-11 07:02:50 +000010422}
10423
10424ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *ice) {
John McCall755d8492011-04-12 00:42:48 +000010425 // The only case we should ever see here is a function-to-pointer decay.
John McCall379b5152011-04-11 07:02:50 +000010426 assert(ice->getCastKind() == CK_FunctionToPointerDecay);
John McCall379b5152011-04-11 07:02:50 +000010427 assert(ice->getValueKind() == VK_RValue);
10428 assert(ice->getObjectKind() == OK_Ordinary);
10429
John McCall755d8492011-04-12 00:42:48 +000010430 ice->setType(DestType);
10431
John McCall379b5152011-04-11 07:02:50 +000010432 // Rebuild the sub-expression as the pointee (function) type.
10433 DestType = DestType->castAs<PointerType>()->getPointeeType();
10434
10435 ExprResult result = Visit(ice->getSubExpr());
10436 if (!result.isUsable()) return ExprError();
10437
10438 ice->setSubExpr(result.take());
10439 return S.Owned(ice);
10440}
10441
John McCall755d8492011-04-12 00:42:48 +000010442ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *expr, ValueDecl *decl) {
John McCall379b5152011-04-11 07:02:50 +000010443 ExprValueKind valueKind = VK_LValue;
John McCall379b5152011-04-11 07:02:50 +000010444 QualType type = DestType;
10445
10446 // We know how to make this work for certain kinds of decls:
10447
10448 // - functions
John McCall755d8492011-04-12 00:42:48 +000010449 if (FunctionDecl *fn = dyn_cast<FunctionDecl>(decl)) {
10450 if (CXXMethodDecl *method = dyn_cast<CXXMethodDecl>(fn))
John McCall379b5152011-04-11 07:02:50 +000010451 if (method->isInstance()) valueKind = VK_RValue;
10452
10453 // This is true because FunctionDecls must always have function
10454 // type, so we can't be resolving the entire thing at once.
10455 assert(type->isFunctionType());
10456
10457 // Function references aren't l-values in C.
10458 if (!S.getLangOptions().CPlusPlus)
10459 valueKind = VK_RValue;
10460
10461 // - variables
10462 } else if (isa<VarDecl>(decl)) {
John McCall755d8492011-04-12 00:42:48 +000010463 if (const ReferenceType *refTy = type->getAs<ReferenceType>()) {
10464 type = refTy->getPointeeType();
John McCall379b5152011-04-11 07:02:50 +000010465 } else if (type->isFunctionType()) {
John McCall755d8492011-04-12 00:42:48 +000010466 S.Diag(expr->getExprLoc(), diag::err_unknown_any_var_function_type)
10467 << decl << expr->getSourceRange();
10468 return ExprError();
John McCall379b5152011-04-11 07:02:50 +000010469 }
10470
10471 // - nothing else
10472 } else {
10473 S.Diag(expr->getExprLoc(), diag::err_unsupported_unknown_any_decl)
10474 << decl << expr->getSourceRange();
10475 return ExprError();
10476 }
10477
John McCall755d8492011-04-12 00:42:48 +000010478 decl->setType(DestType);
10479 expr->setType(type);
10480 expr->setValueKind(valueKind);
10481 return S.Owned(expr);
John McCall379b5152011-04-11 07:02:50 +000010482}
10483
John McCall1de4d4e2011-04-07 08:22:57 +000010484/// Check a cast of an unknown-any type. We intentionally only
10485/// trigger this for C-style casts.
John Wiegley429bb272011-04-08 18:41:53 +000010486ExprResult Sema::checkUnknownAnyCast(SourceRange typeRange, QualType castType,
10487 Expr *castExpr, CastKind &castKind,
10488 ExprValueKind &VK, CXXCastPath &path) {
John McCall1de4d4e2011-04-07 08:22:57 +000010489 // Rewrite the casted expression from scratch.
John McCalla5fc4722011-04-09 22:50:59 +000010490 ExprResult result = RebuildUnknownAnyExpr(*this, castType).Visit(castExpr);
10491 if (!result.isUsable()) return ExprError();
John McCall1de4d4e2011-04-07 08:22:57 +000010492
John McCalla5fc4722011-04-09 22:50:59 +000010493 castExpr = result.take();
10494 VK = castExpr->getValueKind();
10495 castKind = CK_NoOp;
10496
10497 return castExpr;
John McCall1de4d4e2011-04-07 08:22:57 +000010498}
10499
10500static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *e) {
10501 Expr *orig = e;
John McCall379b5152011-04-11 07:02:50 +000010502 unsigned diagID = diag::err_uncasted_use_of_unknown_any;
John McCall1de4d4e2011-04-07 08:22:57 +000010503 while (true) {
10504 e = e->IgnoreParenImpCasts();
John McCall379b5152011-04-11 07:02:50 +000010505 if (CallExpr *call = dyn_cast<CallExpr>(e)) {
John McCall1de4d4e2011-04-07 08:22:57 +000010506 e = call->getCallee();
John McCall379b5152011-04-11 07:02:50 +000010507 diagID = diag::err_uncasted_call_of_unknown_any;
10508 } else {
John McCall1de4d4e2011-04-07 08:22:57 +000010509 break;
John McCall379b5152011-04-11 07:02:50 +000010510 }
John McCall1de4d4e2011-04-07 08:22:57 +000010511 }
10512
John McCall379b5152011-04-11 07:02:50 +000010513 SourceLocation loc;
10514 NamedDecl *d;
10515 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(e)) {
10516 loc = ref->getLocation();
10517 d = ref->getDecl();
10518 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(e)) {
10519 loc = mem->getMemberLoc();
10520 d = mem->getMemberDecl();
10521 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(e)) {
10522 diagID = diag::err_uncasted_call_of_unknown_any;
10523 loc = msg->getSelectorLoc();
10524 d = msg->getMethodDecl();
10525 assert(d && "unknown method returning __unknown_any?");
10526 } else {
10527 S.Diag(e->getExprLoc(), diag::err_unsupported_unknown_any_expr)
10528 << e->getSourceRange();
10529 return ExprError();
10530 }
10531
10532 S.Diag(loc, diagID) << d << orig->getSourceRange();
John McCall1de4d4e2011-04-07 08:22:57 +000010533
10534 // Never recoverable.
10535 return ExprError();
10536}
10537
John McCall2a984ca2010-10-12 00:20:44 +000010538/// Check for operands with placeholder types and complain if found.
10539/// Returns true if there was an error and no recovery was possible.
John McCallfb8721c2011-04-10 19:13:55 +000010540ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
John McCall1de4d4e2011-04-07 08:22:57 +000010541 // Placeholder types are always *exactly* the appropriate builtin type.
10542 QualType type = E->getType();
John McCall2a984ca2010-10-12 00:20:44 +000010543
John McCall1de4d4e2011-04-07 08:22:57 +000010544 // Overloaded expressions.
10545 if (type == Context.OverloadTy)
10546 return ResolveAndFixSingleFunctionTemplateSpecialization(E, false, true,
Douglas Gregordb2eae62011-03-16 19:16:25 +000010547 E->getSourceRange(),
John McCall1de4d4e2011-04-07 08:22:57 +000010548 QualType(),
10549 diag::err_ovl_unresolvable);
10550
10551 // Expressions of unknown type.
10552 if (type == Context.UnknownAnyTy)
10553 return diagnoseUnknownAnyExpr(*this, E);
10554
10555 assert(!type->isPlaceholderType());
10556 return Owned(E);
John McCall2a984ca2010-10-12 00:20:44 +000010557}