blob: 1ae983cad227aa3fbd730bee030b16c4efe544c4 [file] [log] [blame]
Chris Lattner5b183d82006-11-10 05:03:26 +00001//===--- SemaExpr.cpp - Semantic Analysis for Expressions -----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner5b12ab82007-12-29 19:59:25 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner5b183d82006-11-10 05:03:26 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file implements semantic analysis for expressions.
11//
12//===----------------------------------------------------------------------===//
13
John McCall83024632010-08-25 22:03:47 +000014#include "clang/Sema/SemaInternal.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000015#include "TreeTransform.h"
Argyrios Kyrtzidise5dc5b32012-02-10 20:10:44 +000016#include "clang/AST/ASTConsumer.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000017#include "clang/AST/ASTContext.h"
Faisal Valia17d19f2013-11-07 05:17:06 +000018#include "clang/AST/ASTLambda.h"
Sebastian Redl2ac2c722011-04-29 08:19:30 +000019#include "clang/AST/ASTMutationListener.h"
Douglas Gregord1702062010-04-29 00:18:15 +000020#include "clang/AST/CXXInheritance.h"
Daniel Dunbar6e8aa532008-08-11 05:35:13 +000021#include "clang/AST/DeclObjC.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000022#include "clang/AST/DeclTemplate.h"
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000023#include "clang/AST/EvaluatedExprVisitor.h"
Douglas Gregor882211c2010-04-28 22:16:22 +000024#include "clang/AST/Expr.h"
Chris Lattneraa9c7ae2008-04-08 04:40:51 +000025#include "clang/AST/ExprCXX.h"
Steve Naroff021ca182008-05-29 21:12:08 +000026#include "clang/AST/ExprObjC.h"
Douglas Gregor5597ab42010-05-07 23:12:07 +000027#include "clang/AST/RecursiveASTVisitor.h"
Douglas Gregor882211c2010-04-28 22:16:22 +000028#include "clang/AST/TypeLoc.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000029#include "clang/Basic/PartialDiagnostic.h"
Steve Narofff2fb89e2007-03-13 20:29:44 +000030#include "clang/Basic/SourceManager.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000031#include "clang/Basic/TargetInfo.h"
Anders Carlsson029fc692009-08-26 22:59:12 +000032#include "clang/Lex/LiteralSupport.h"
33#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000034#include "clang/Sema/AnalysisBasedWarnings.h"
John McCall8b0666c2010-08-20 18:27:03 +000035#include "clang/Sema/DeclSpec.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000036#include "clang/Sema/DelayedDiagnostic.h"
John McCall8b0666c2010-08-20 18:27:03 +000037#include "clang/Sema/Designator.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000038#include "clang/Sema/Initialization.h"
39#include "clang/Sema/Lookup.h"
40#include "clang/Sema/ParsedTemplate.h"
John McCall8b0666c2010-08-20 18:27:03 +000041#include "clang/Sema/Scope.h"
John McCallaab3e412010-08-25 08:40:02 +000042#include "clang/Sema/ScopeInfo.h"
Anna Zaks3b402712011-07-28 19:51:27 +000043#include "clang/Sema/SemaFixItUtils.h"
John McCallde6836a2010-08-24 07:21:54 +000044#include "clang/Sema/Template.h"
Alexey Bataevec474782014-10-09 08:45:04 +000045#include "llvm/Support/ConvertUTF.h"
Chris Lattner5b183d82006-11-10 05:03:26 +000046using namespace clang;
John McCallaab3e412010-08-25 08:40:02 +000047using namespace sema;
Chris Lattner5b183d82006-11-10 05:03:26 +000048
Sebastian Redlb49c46c2011-09-24 17:48:00 +000049/// \brief Determine whether the use of this declaration is valid, without
50/// emitting diagnostics.
51bool Sema::CanUseDecl(NamedDecl *D) {
52 // See if this is an auto-typed variable whose initializer we are parsing.
53 if (ParsingInitForAutoVars.count(D))
54 return false;
55
56 // See if this is a deleted function.
57 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
58 if (FD->isDeleted())
59 return false;
Richard Smith2a7d4812013-05-04 07:00:32 +000060
61 // If the function has a deduced return type, and we can't deduce it,
62 // then we can't use it either.
Aaron Ballmandd69ef32014-08-19 15:55:55 +000063 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
Alp Toker314cc812014-01-25 16:55:45 +000064 DeduceReturnType(FD, SourceLocation(), /*Diagnose*/ false))
Richard Smith2a7d4812013-05-04 07:00:32 +000065 return false;
Sebastian Redlb49c46c2011-09-24 17:48:00 +000066 }
Sebastian Redl5999aec2011-10-16 18:19:16 +000067
68 // See if this function is unavailable.
69 if (D->getAvailability() == AR_Unavailable &&
70 cast<Decl>(CurContext)->getAvailability() != AR_Unavailable)
71 return false;
72
Sebastian Redlb49c46c2011-09-24 17:48:00 +000073 return true;
74}
David Chisnall9f57c292009-08-17 16:35:33 +000075
Fariborz Jahanian66c93f42012-09-06 16:43:18 +000076static void DiagnoseUnusedOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc) {
77 // Warn if this is used but marked unused.
78 if (D->hasAttr<UnusedAttr>()) {
Ben Langmuirc91ac9e2015-01-20 20:41:36 +000079 const Decl *DC = cast_or_null<Decl>(S.getCurObjCLexicalContext());
80 if (DC && !DC->hasAttr<UnusedAttr>())
Fariborz Jahanian66c93f42012-09-06 16:43:18 +000081 S.Diag(Loc, diag::warn_used_but_marked_unused) << D->getDeclName();
82 }
83}
84
Nico Weber0055a192015-03-19 19:18:22 +000085static bool HasRedeclarationWithoutAvailabilityInCategory(const Decl *D) {
86 const auto *OMD = dyn_cast<ObjCMethodDecl>(D);
87 if (!OMD)
88 return false;
89 const ObjCInterfaceDecl *OID = OMD->getClassInterface();
90 if (!OID)
91 return false;
92
93 for (const ObjCCategoryDecl *Cat : OID->visible_categories())
94 if (ObjCMethodDecl *CatMeth =
95 Cat->getMethod(OMD->getSelector(), OMD->isInstanceMethod()))
96 if (!CatMeth->hasAttr<AvailabilityAttr>())
97 return true;
98 return false;
99}
100
101static AvailabilityResult
102DiagnoseAvailabilityOfDecl(Sema &S, NamedDecl *D, SourceLocation Loc,
103 const ObjCInterfaceDecl *UnknownObjCClass,
104 bool ObjCPropertyAccess) {
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000105 // See if this declaration is unavailable or deprecated.
106 std::string Message;
Ted Kremenekc004b4d2015-05-14 22:07:25 +0000107 AvailabilityResult Result = D->getAvailability(&Message);
108
109 // For typedefs, if the typedef declaration appears available look
110 // to the underlying type to see if it is more restrictive.
David Blaikief0f00dc2015-05-14 22:47:19 +0000111 while (const TypedefNameDecl *TD = dyn_cast<TypedefNameDecl>(D)) {
Ted Kremenekc004b4d2015-05-14 22:07:25 +0000112 if (Result == AR_Available) {
113 if (const TagType *TT = TD->getUnderlyingType()->getAs<TagType>()) {
114 D = TT->getDecl();
115 Result = D->getAvailability(&Message);
116 continue;
117 }
118 }
119 break;
120 }
Fariborz Jahanian285b6b62014-06-18 17:58:27 +0000121
122 // Forward class declarations get their attributes from their definition.
123 if (ObjCInterfaceDecl *IDecl = dyn_cast<ObjCInterfaceDecl>(D)) {
Ted Kremenekc004b4d2015-05-14 22:07:25 +0000124 if (IDecl->getDefinition()) {
Fariborz Jahanian285b6b62014-06-18 17:58:27 +0000125 D = IDecl->getDefinition();
Ted Kremenekc004b4d2015-05-14 22:07:25 +0000126 Result = D->getAvailability(&Message);
127 }
Fariborz Jahanian285b6b62014-06-18 17:58:27 +0000128 }
Ted Kremenekc004b4d2015-05-14 22:07:25 +0000129
Fariborz Jahanian25d09c22011-11-28 19:45:58 +0000130 if (const EnumConstantDecl *ECD = dyn_cast<EnumConstantDecl>(D))
131 if (Result == AR_Available) {
132 const DeclContext *DC = ECD->getDeclContext();
133 if (const EnumDecl *TheEnumDecl = dyn_cast<EnumDecl>(DC))
134 Result = TheEnumDecl->getAvailability(&Message);
135 }
Jordan Rose2bd991a2012-10-10 16:42:54 +0000136
Craig Topperc3ec1492014-05-26 06:22:03 +0000137 const ObjCPropertyDecl *ObjCPDecl = nullptr;
Nico Weber0055a192015-03-19 19:18:22 +0000138 if (Result == AR_Deprecated || Result == AR_Unavailable ||
139 AR_NotYetIntroduced) {
Jordan Rose2bd991a2012-10-10 16:42:54 +0000140 if (const ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
141 if (const ObjCPropertyDecl *PD = MD->findPropertyDecl()) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000142 AvailabilityResult PDeclResult = PD->getAvailability(nullptr);
Jordan Rose2bd991a2012-10-10 16:42:54 +0000143 if (PDeclResult == Result)
144 ObjCPDecl = PD;
145 }
Fariborz Jahanian974c9482012-09-21 20:46:37 +0000146 }
Jordan Rose2bd991a2012-10-10 16:42:54 +0000147 }
Fariborz Jahanian25d09c22011-11-28 19:45:58 +0000148
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000149 switch (Result) {
150 case AR_Available:
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000151 break;
Nico Weber55905142015-03-06 06:01:06 +0000152
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000153 case AR_Deprecated:
Ted Kremenekcb42dbe2013-11-20 17:24:03 +0000154 if (S.getCurContextAvailability() != AR_Deprecated)
Ted Kremenekb79ee572013-12-18 23:30:06 +0000155 S.EmitAvailabilityWarning(Sema::AD_Deprecation,
Fariborz Jahanian89ea9612014-06-16 17:25:41 +0000156 D, Message, Loc, UnknownObjCClass, ObjCPDecl,
157 ObjCPropertyAccess);
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000158 break;
Ted Kremenekb79ee572013-12-18 23:30:06 +0000159
Nico Weber0055a192015-03-19 19:18:22 +0000160 case AR_NotYetIntroduced: {
161 // Don't do this for enums, they can't be redeclared.
162 if (isa<EnumConstantDecl>(D) || isa<EnumDecl>(D))
163 break;
164
165 bool Warn = !D->getAttr<AvailabilityAttr>()->isInherited();
166 // Objective-C method declarations in categories are not modelled as
167 // redeclarations, so manually look for a redeclaration in a category
168 // if necessary.
169 if (Warn && HasRedeclarationWithoutAvailabilityInCategory(D))
170 Warn = false;
171 // In general, D will point to the most recent redeclaration. However,
172 // for `@class A;` decls, this isn't true -- manually go through the
173 // redecl chain in that case.
174 if (Warn && isa<ObjCInterfaceDecl>(D))
175 for (Decl *Redecl = D->getMostRecentDecl(); Redecl && Warn;
176 Redecl = Redecl->getPreviousDecl())
177 if (!Redecl->hasAttr<AvailabilityAttr>() ||
178 Redecl->getAttr<AvailabilityAttr>()->isInherited())
179 Warn = false;
180
181 if (Warn)
182 S.EmitAvailabilityWarning(Sema::AD_Partial, D, Message, Loc,
183 UnknownObjCClass, ObjCPDecl,
184 ObjCPropertyAccess);
185 break;
186 }
187
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000188 case AR_Unavailable:
Ted Kremenekb79ee572013-12-18 23:30:06 +0000189 if (S.getCurContextAvailability() != AR_Unavailable)
190 S.EmitAvailabilityWarning(Sema::AD_Unavailable,
Fariborz Jahanian89ea9612014-06-16 17:25:41 +0000191 D, Message, Loc, UnknownObjCClass, ObjCPDecl,
192 ObjCPropertyAccess);
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000193 break;
Ted Kremenekb79ee572013-12-18 23:30:06 +0000194
Fariborz Jahanian6b854c52011-09-29 22:45:21 +0000195 }
196 return Result;
197}
198
Eli Friedmanebea0f22013-07-18 23:29:14 +0000199/// \brief Emit a note explaining that this function is deleted.
Richard Smith852265f2012-03-30 20:53:28 +0000200void Sema::NoteDeletedFunction(FunctionDecl *Decl) {
Eli Friedmanebea0f22013-07-18 23:29:14 +0000201 assert(Decl->isDeleted());
202
Richard Smith852265f2012-03-30 20:53:28 +0000203 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Decl);
204
Eli Friedmanebea0f22013-07-18 23:29:14 +0000205 if (Method && Method->isDeleted() && Method->isDefaulted()) {
Richard Smith6f1e2c62012-04-02 20:59:25 +0000206 // If the method was explicitly defaulted, point at that declaration.
207 if (!Method->isImplicit())
208 Diag(Decl->getLocation(), diag::note_implicitly_deleted);
209
210 // Try to diagnose why this special member function was implicitly
211 // deleted. This might fail, if that reason no longer applies.
Richard Smith852265f2012-03-30 20:53:28 +0000212 CXXSpecialMember CSM = getSpecialMember(Method);
Richard Smith6f1e2c62012-04-02 20:59:25 +0000213 if (CSM != CXXInvalid)
214 ShouldDeleteSpecialMember(Method, CSM, /*Diagnose=*/true);
215
216 return;
Richard Smith852265f2012-03-30 20:53:28 +0000217 }
218
Eli Friedmanebea0f22013-07-18 23:29:14 +0000219 if (CXXConstructorDecl *CD = dyn_cast<CXXConstructorDecl>(Decl)) {
220 if (CXXConstructorDecl *BaseCD =
221 const_cast<CXXConstructorDecl*>(CD->getInheritedConstructor())) {
222 Diag(Decl->getLocation(), diag::note_inherited_deleted_here);
223 if (BaseCD->isDeleted()) {
224 NoteDeletedFunction(BaseCD);
225 } else {
226 // FIXME: An explanation of why exactly it can't be inherited
227 // would be nice.
228 Diag(BaseCD->getLocation(), diag::note_cannot_inherit);
229 }
230 return;
231 }
232 }
233
Ted Kremenekb79ee572013-12-18 23:30:06 +0000234 Diag(Decl->getLocation(), diag::note_availability_specified_here)
235 << Decl << true;
Richard Smith852265f2012-03-30 20:53:28 +0000236}
237
Jordan Rose28cd12f2012-06-18 22:09:19 +0000238/// \brief Determine whether a FunctionDecl was ever declared with an
239/// explicit storage class.
240static bool hasAnyExplicitStorageClass(const FunctionDecl *D) {
Aaron Ballman86c93902014-03-06 23:45:36 +0000241 for (auto I : D->redecls()) {
Rafael Espindola6ae7e502013-04-03 19:27:57 +0000242 if (I->getStorageClass() != SC_None)
Jordan Rose28cd12f2012-06-18 22:09:19 +0000243 return true;
244 }
245 return false;
246}
247
248/// \brief Check whether we're in an extern inline function and referring to a
Jordan Rosede9e9762012-06-20 18:50:06 +0000249/// variable or function with internal linkage (C11 6.7.4p3).
Jordan Rose28cd12f2012-06-18 22:09:19 +0000250///
Jordan Rose28cd12f2012-06-18 22:09:19 +0000251/// This is only a warning because we used to silently accept this code, but
Jordan Rosede9e9762012-06-20 18:50:06 +0000252/// in many cases it will not behave correctly. This is not enabled in C++ mode
253/// because the restriction language is a bit weaker (C++11 [basic.def.odr]p6)
254/// and so while there may still be user mistakes, most of the time we can't
255/// prove that there are errors.
Jordan Rose28cd12f2012-06-18 22:09:19 +0000256static void diagnoseUseOfInternalDeclInInlineFunction(Sema &S,
257 const NamedDecl *D,
258 SourceLocation Loc) {
Jordan Rosede9e9762012-06-20 18:50:06 +0000259 // This is disabled under C++; there are too many ways for this to fire in
260 // contexts where the warning is a false positive, or where it is technically
261 // correct but benign.
262 if (S.getLangOpts().CPlusPlus)
263 return;
Jordan Rose28cd12f2012-06-18 22:09:19 +0000264
265 // Check if this is an inlined function or method.
266 FunctionDecl *Current = S.getCurFunctionDecl();
267 if (!Current)
268 return;
269 if (!Current->isInlined())
270 return;
Rafael Espindola3ae00052013-05-13 00:12:11 +0000271 if (!Current->isExternallyVisible())
Jordan Rose28cd12f2012-06-18 22:09:19 +0000272 return;
Rafael Espindola3ae00052013-05-13 00:12:11 +0000273
Jordan Rose28cd12f2012-06-18 22:09:19 +0000274 // Check if the decl has internal linkage.
Rafael Espindola3ae00052013-05-13 00:12:11 +0000275 if (D->getFormalLinkage() != InternalLinkage)
Jordan Rose28cd12f2012-06-18 22:09:19 +0000276 return;
Jordan Rose28cd12f2012-06-18 22:09:19 +0000277
Jordan Rose815fe262012-06-21 05:54:50 +0000278 // Downgrade from ExtWarn to Extension if
279 // (1) the supposedly external inline function is in the main file,
280 // and probably won't be included anywhere else.
281 // (2) the thing we're referencing is a pure function.
282 // (3) the thing we're referencing is another inline function.
283 // This last can give us false negatives, but it's better than warning on
284 // wrappers for simple C library functions.
285 const FunctionDecl *UsedFn = dyn_cast<FunctionDecl>(D);
Eli Friedman5ba37d52013-08-22 00:27:10 +0000286 bool DowngradeWarning = S.getSourceManager().isInMainFile(Loc);
Jordan Rose815fe262012-06-21 05:54:50 +0000287 if (!DowngradeWarning && UsedFn)
288 DowngradeWarning = UsedFn->isInlined() || UsedFn->hasAttr<ConstAttr>();
289
Richard Smith1b98ccc2014-07-19 01:39:17 +0000290 S.Diag(Loc, DowngradeWarning ? diag::ext_internal_in_extern_inline_quiet
291 : diag::ext_internal_in_extern_inline)
Jordan Rose815fe262012-06-21 05:54:50 +0000292 << /*IsVar=*/!UsedFn << D;
Jordan Rose28cd12f2012-06-18 22:09:19 +0000293
John McCallc87d9722013-04-02 02:48:58 +0000294 S.MaybeSuggestAddingStaticToDecl(Current);
Jordan Rose28cd12f2012-06-18 22:09:19 +0000295
Alp Toker2afa8782014-05-28 12:20:14 +0000296 S.Diag(D->getCanonicalDecl()->getLocation(), diag::note_entity_declared_at)
297 << D;
Jordan Rose28cd12f2012-06-18 22:09:19 +0000298}
299
John McCallc87d9722013-04-02 02:48:58 +0000300void Sema::MaybeSuggestAddingStaticToDecl(const FunctionDecl *Cur) {
Rafael Espindola8db352d2013-10-17 15:37:26 +0000301 const FunctionDecl *First = Cur->getFirstDecl();
John McCallc87d9722013-04-02 02:48:58 +0000302
303 // Suggest "static" on the function, if possible.
304 if (!hasAnyExplicitStorageClass(First)) {
305 SourceLocation DeclBegin = First->getSourceRange().getBegin();
306 Diag(DeclBegin, diag::note_convert_inline_to_static)
307 << Cur << FixItHint::CreateInsertion(DeclBegin, "static ");
308 }
309}
310
Douglas Gregor171c45a2009-02-18 21:56:37 +0000311/// \brief Determine whether the use of this declaration is valid, and
312/// emit any corresponding diagnostics.
313///
314/// This routine diagnoses various problems with referencing
315/// declarations that can occur when using a declaration. For example,
316/// it might warn if a deprecated or unavailable declaration is being
317/// used, or produce an error (and return true) if a C++0x deleted
318/// function is being used.
319///
320/// \returns true if there was an error (this declaration cannot be
321/// referenced), false otherwise.
Chris Lattnerb7df3c62009-10-25 22:31:57 +0000322///
Fariborz Jahanian7d6e11a2010-12-21 00:44:01 +0000323bool Sema::DiagnoseUseOfDecl(NamedDecl *D, SourceLocation Loc,
Fariborz Jahanian89ea9612014-06-16 17:25:41 +0000324 const ObjCInterfaceDecl *UnknownObjCClass,
325 bool ObjCPropertyAccess) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000326 if (getLangOpts().CPlusPlus && isa<FunctionDecl>(D)) {
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000327 // If there were any diagnostics suppressed by template argument deduction,
328 // emit them now.
Craig Topper79be4cd2013-07-05 04:33:53 +0000329 SuppressedDiagnosticsMap::iterator
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000330 Pos = SuppressedDiagnostics.find(D->getCanonicalDecl());
331 if (Pos != SuppressedDiagnostics.end()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000332 SmallVectorImpl<PartialDiagnosticAt> &Suppressed = Pos->second;
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000333 for (unsigned I = 0, N = Suppressed.size(); I != N; ++I)
334 Diag(Suppressed[I].first, Suppressed[I].second);
Richard Smithb63b6ee2014-01-22 01:43:19 +0000335
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000336 // Clear out the list of suppressed diagnostics, so that we don't emit
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000337 // them again for this specialization. However, we don't obsolete this
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000338 // entry from the table, because we want to avoid ever emitting these
339 // diagnostics again.
340 Suppressed.clear();
341 }
Richard Smithb63b6ee2014-01-22 01:43:19 +0000342
343 // C++ [basic.start.main]p3:
344 // The function 'main' shall not be used within a program.
345 if (cast<FunctionDecl>(D)->isMain())
346 Diag(Loc, diag::ext_main_used);
Douglas Gregor5bb5e4a2010-10-12 23:32:35 +0000347 }
348
Richard Smith30482bc2011-02-20 03:19:35 +0000349 // See if this is an auto-typed variable whose initializer we are parsing.
Richard Smithb2bc2e62011-02-21 20:05:19 +0000350 if (ParsingInitForAutoVars.count(D)) {
351 Diag(Loc, diag::err_auto_variable_cannot_appear_in_own_initializer)
352 << D->getDeclName();
353 return true;
Richard Smith30482bc2011-02-20 03:19:35 +0000354 }
355
Douglas Gregor171c45a2009-02-18 21:56:37 +0000356 // See if this is a deleted function.
Douglas Gregorde681d42009-02-24 04:26:15 +0000357 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
Douglas Gregor171c45a2009-02-18 21:56:37 +0000358 if (FD->isDeleted()) {
359 Diag(Loc, diag::err_deleted_function_use);
Richard Smith852265f2012-03-30 20:53:28 +0000360 NoteDeletedFunction(FD);
Douglas Gregor171c45a2009-02-18 21:56:37 +0000361 return true;
362 }
Richard Smith2a7d4812013-05-04 07:00:32 +0000363
364 // If the function has a deduced return type, and we can't deduce it,
365 // then we can't use it either.
Aaron Ballmandd69ef32014-08-19 15:55:55 +0000366 if (getLangOpts().CPlusPlus14 && FD->getReturnType()->isUndeducedType() &&
Richard Smith2a7d4812013-05-04 07:00:32 +0000367 DeduceReturnType(FD, Loc))
368 return true;
Douglas Gregorde681d42009-02-24 04:26:15 +0000369 }
Nico Weber0055a192015-03-19 19:18:22 +0000370 DiagnoseAvailabilityOfDecl(*this, D, Loc, UnknownObjCClass,
371 ObjCPropertyAccess);
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000372
Fariborz Jahanian66c93f42012-09-06 16:43:18 +0000373 DiagnoseUnusedOfDecl(*this, D, Loc);
Jordan Rose2684c682012-06-15 18:19:48 +0000374
Jordan Rose28cd12f2012-06-18 22:09:19 +0000375 diagnoseUseOfInternalDeclInInlineFunction(*this, D, Loc);
Jordan Rose2684c682012-06-15 18:19:48 +0000376
Douglas Gregor171c45a2009-02-18 21:56:37 +0000377 return false;
Chris Lattner4bf74fd2009-02-15 22:43:40 +0000378}
379
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000380/// \brief Retrieve the message suffix that should be added to a
381/// diagnostic complaining about the given function being deleted or
382/// unavailable.
383std::string Sema::getDeletedOrUnavailableSuffix(const FunctionDecl *FD) {
Douglas Gregor20b2ebd2011-03-23 00:50:03 +0000384 std::string Message;
385 if (FD->getAvailability(&Message))
386 return ": " + Message;
387
388 return std::string();
389}
390
John McCallb46f2872011-09-09 07:56:05 +0000391/// DiagnoseSentinelCalls - This routine checks whether a call or
392/// message-send is to a declaration with the sentinel attribute, and
393/// if so, it checks that the requirements of the sentinel are
394/// satisfied.
Fariborz Jahanian027b8862009-05-13 18:09:35 +0000395void Sema::DiagnoseSentinelCalls(NamedDecl *D, SourceLocation Loc,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +0000396 ArrayRef<Expr *> Args) {
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +0000397 const SentinelAttr *attr = D->getAttr<SentinelAttr>();
Mike Stump11289f42009-09-09 15:08:12 +0000398 if (!attr)
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000399 return;
Douglas Gregorc298ffc2010-04-22 16:44:27 +0000400
John McCallb46f2872011-09-09 07:56:05 +0000401 // The number of formal parameters of the declaration.
402 unsigned numFormalParams;
Mike Stump11289f42009-09-09 15:08:12 +0000403
John McCallb46f2872011-09-09 07:56:05 +0000404 // The kind of declaration. This is also an index into a %select in
405 // the diagnostic.
406 enum CalleeType { CT_Function, CT_Method, CT_Block } calleeType;
407
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000408 if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +0000409 numFormalParams = MD->param_size();
410 calleeType = CT_Method;
Mike Stump12b8ce12009-08-04 21:02:39 +0000411 } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
John McCallb46f2872011-09-09 07:56:05 +0000412 numFormalParams = FD->param_size();
413 calleeType = CT_Function;
414 } else if (isa<VarDecl>(D)) {
415 QualType type = cast<ValueDecl>(D)->getType();
Craig Topperc3ec1492014-05-26 06:22:03 +0000416 const FunctionType *fn = nullptr;
John McCallb46f2872011-09-09 07:56:05 +0000417 if (const PointerType *ptr = type->getAs<PointerType>()) {
418 fn = ptr->getPointeeType()->getAs<FunctionType>();
419 if (!fn) return;
420 calleeType = CT_Function;
421 } else if (const BlockPointerType *ptr = type->getAs<BlockPointerType>()) {
422 fn = ptr->getPointeeType()->castAs<FunctionType>();
423 calleeType = CT_Block;
424 } else {
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +0000425 return;
John McCallb46f2872011-09-09 07:56:05 +0000426 }
Fariborz Jahanian4a528032009-05-14 18:00:00 +0000427
John McCallb46f2872011-09-09 07:56:05 +0000428 if (const FunctionProtoType *proto = dyn_cast<FunctionProtoType>(fn)) {
Alp Toker9cacbab2014-01-20 20:26:09 +0000429 numFormalParams = proto->getNumParams();
John McCallb46f2872011-09-09 07:56:05 +0000430 } else {
431 numFormalParams = 0;
432 }
433 } else {
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000434 return;
435 }
John McCallb46f2872011-09-09 07:56:05 +0000436
437 // "nullPos" is the number of formal parameters at the end which
438 // effectively count as part of the variadic arguments. This is
439 // useful if you would prefer to not have *any* formal parameters,
440 // but the language forces you to have at least one.
441 unsigned nullPos = attr->getNullPos();
442 assert((nullPos == 0 || nullPos == 1) && "invalid null position on sentinel");
443 numFormalParams = (nullPos > numFormalParams ? 0 : numFormalParams - nullPos);
444
445 // The number of arguments which should follow the sentinel.
446 unsigned numArgsAfterSentinel = attr->getSentinel();
447
448 // If there aren't enough arguments for all the formal parameters,
449 // the sentinel, and the args after the sentinel, complain.
Dmitri Gribenko9c785c22013-05-09 21:02:07 +0000450 if (Args.size() < numFormalParams + numArgsAfterSentinel + 1) {
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000451 Diag(Loc, diag::warn_not_enough_argument) << D->getDeclName();
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000452 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
Fariborz Jahanian9e877212009-05-13 23:20:50 +0000453 return;
454 }
John McCallb46f2872011-09-09 07:56:05 +0000455
456 // Otherwise, find the sentinel expression.
Dmitri Gribenko9c785c22013-05-09 21:02:07 +0000457 Expr *sentinelExpr = Args[Args.size() - numArgsAfterSentinel - 1];
John McCall7ddbcf42010-05-06 23:53:00 +0000458 if (!sentinelExpr) return;
John McCall7ddbcf42010-05-06 23:53:00 +0000459 if (sentinelExpr->isValueDependent()) return;
Argyrios Kyrtzidis2e809ce2012-02-03 05:58:16 +0000460 if (Context.isSentinelNullExpr(sentinelExpr)) return;
John McCall7ddbcf42010-05-06 23:53:00 +0000461
Reid Kleckner92493e52014-11-13 23:19:36 +0000462 // Pick a reasonable string to insert. Optimistically use 'nil', 'nullptr',
463 // or 'NULL' if those are actually defined in the context. Only use
John McCallb46f2872011-09-09 07:56:05 +0000464 // 'nil' for ObjC methods, where it's much more likely that the
465 // variadic arguments form a list of object pointers.
466 SourceLocation MissingNilLoc
Douglas Gregor5ff4e982011-07-30 08:57:03 +0000467 = PP.getLocForEndOfToken(sentinelExpr->getLocEnd());
468 std::string NullValue;
Richard Smith20e883e2015-04-29 23:20:19 +0000469 if (calleeType == CT_Method && PP.isMacroDefined("nil"))
Douglas Gregor5ff4e982011-07-30 08:57:03 +0000470 NullValue = "nil";
Reid Kleckner92493e52014-11-13 23:19:36 +0000471 else if (getLangOpts().CPlusPlus11)
472 NullValue = "nullptr";
Richard Smith20e883e2015-04-29 23:20:19 +0000473 else if (PP.isMacroDefined("NULL"))
Douglas Gregor5ff4e982011-07-30 08:57:03 +0000474 NullValue = "NULL";
Douglas Gregor5ff4e982011-07-30 08:57:03 +0000475 else
John McCallb46f2872011-09-09 07:56:05 +0000476 NullValue = "(void*) 0";
Eli Friedman9ab36372011-09-27 23:46:37 +0000477
478 if (MissingNilLoc.isInvalid())
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000479 Diag(Loc, diag::warn_missing_sentinel) << int(calleeType);
Eli Friedman9ab36372011-09-27 23:46:37 +0000480 else
481 Diag(MissingNilLoc, diag::warn_missing_sentinel)
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000482 << int(calleeType)
Eli Friedman9ab36372011-09-27 23:46:37 +0000483 << FixItHint::CreateInsertion(MissingNilLoc, ", " + NullValue);
Joerg Sonnenbergerffc6d492013-06-26 21:31:47 +0000484 Diag(D->getLocation(), diag::note_sentinel_here) << int(calleeType);
Fariborz Jahanian027b8862009-05-13 18:09:35 +0000485}
486
Richard Trieuba63ce62011-09-09 01:45:06 +0000487SourceRange Sema::getExprRange(Expr *E) const {
488 return E ? E->getSourceRange() : SourceRange();
Douglas Gregor87f95b02009-02-26 21:00:50 +0000489}
490
Chris Lattner513165e2008-07-25 21:10:04 +0000491//===----------------------------------------------------------------------===//
492// Standard Promotions and Conversions
493//===----------------------------------------------------------------------===//
494
Chris Lattner513165e2008-07-25 21:10:04 +0000495/// DefaultFunctionArrayConversion (C99 6.3.2.1p3, C99 6.3.2.1p4).
John Wiegley01296292011-04-08 18:41:53 +0000496ExprResult Sema::DefaultFunctionArrayConversion(Expr *E) {
John McCall50a2c2c2011-10-11 23:14:30 +0000497 // Handle any placeholder expressions which made it here.
498 if (E->getType()->isPlaceholderType()) {
499 ExprResult result = CheckPlaceholderExpr(E);
500 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000501 E = result.get();
John McCall50a2c2c2011-10-11 23:14:30 +0000502 }
503
Chris Lattner513165e2008-07-25 21:10:04 +0000504 QualType Ty = E->getType();
505 assert(!Ty.isNull() && "DefaultFunctionArrayConversion - missing type");
506
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000507 if (Ty->isFunctionType()) {
508 // If we are here, we are not calling a function but taking
509 // its address (which is not allowed in OpenCL v1.0 s6.8.a.3).
510 if (getLangOpts().OpenCL) {
511 Diag(E->getExprLoc(), diag::err_opencl_taking_function_address);
512 return ExprError();
513 }
John Wiegley01296292011-04-08 18:41:53 +0000514 E = ImpCastExprToType(E, Context.getPointerType(Ty),
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000515 CK_FunctionToPointerDecay).get();
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000516 } else if (Ty->isArrayType()) {
Chris Lattner61f60a02008-07-25 21:33:13 +0000517 // In C90 mode, arrays only promote to pointers if the array expression is
518 // an lvalue. The relevant legalese is C90 6.2.2.1p3: "an lvalue that has
519 // type 'array of type' is converted to an expression that has type 'pointer
520 // to type'...". In C99 this was changed to: C99 6.3.2.1p3: "an expression
521 // that has type 'array of type' ...". The relevant change is "an lvalue"
522 // (C90) to "an expression" (C99).
Argyrios Kyrtzidis9321c742008-09-11 04:25:59 +0000523 //
524 // C++ 4.2p1:
525 // An lvalue or rvalue of type "array of N T" or "array of unknown bound of
526 // T" can be converted to an rvalue of type "pointer to T".
527 //
David Blaikiebbafb8a2012-03-11 07:00:24 +0000528 if (getLangOpts().C99 || getLangOpts().CPlusPlus || E->isLValue())
John Wiegley01296292011-04-08 18:41:53 +0000529 E = ImpCastExprToType(E, Context.getArrayDecayedType(Ty),
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000530 CK_ArrayToPointerDecay).get();
Chris Lattner61f60a02008-07-25 21:33:13 +0000531 }
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000532 return E;
Chris Lattner513165e2008-07-25 21:10:04 +0000533}
534
Argyrios Kyrtzidisa9b630e2011-04-26 17:41:22 +0000535static void CheckForNullPointerDereference(Sema &S, Expr *E) {
536 // Check to see if we are dereferencing a null pointer. If so,
537 // and if not volatile-qualified, this is undefined behavior that the
538 // optimizer will delete, so warn about it. People sometimes try to use this
539 // to get a deterministic trap and are surprised by clang's behavior. This
540 // only handles the pattern "*null", which is a very syntactic check.
541 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParenCasts()))
542 if (UO->getOpcode() == UO_Deref &&
543 UO->getSubExpr()->IgnoreParenCasts()->
544 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull) &&
545 !UO->getType().isVolatileQualified()) {
546 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
547 S.PDiag(diag::warn_indirection_through_null)
548 << UO->getSubExpr()->getSourceRange());
549 S.DiagRuntimeBehavior(UO->getOperatorLoc(), UO,
550 S.PDiag(diag::note_indirection_through_null));
551 }
552}
553
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +0000554static void DiagnoseDirectIsaAccess(Sema &S, const ObjCIvarRefExpr *OIRE,
Fariborz Jahanianf12ff4df2013-04-02 18:57:54 +0000555 SourceLocation AssignLoc,
556 const Expr* RHS) {
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +0000557 const ObjCIvarDecl *IV = OIRE->getDecl();
558 if (!IV)
559 return;
560
561 DeclarationName MemberName = IV->getDeclName();
562 IdentifierInfo *Member = MemberName.getAsIdentifierInfo();
563 if (!Member || !Member->isStr("isa"))
564 return;
565
566 const Expr *Base = OIRE->getBase();
567 QualType BaseType = Base->getType();
568 if (OIRE->isArrow())
569 BaseType = BaseType->getPointeeType();
570 if (const ObjCObjectType *OTy = BaseType->getAs<ObjCObjectType>())
571 if (ObjCInterfaceDecl *IDecl = OTy->getInterface()) {
Craig Topperc3ec1492014-05-26 06:22:03 +0000572 ObjCInterfaceDecl *ClassDeclared = nullptr;
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +0000573 ObjCIvarDecl *IV = IDecl->lookupInstanceVariable(Member, ClassDeclared);
574 if (!ClassDeclared->getSuperClass()
575 && (*ClassDeclared->ivar_begin()) == IV) {
Fariborz Jahanianf12ff4df2013-04-02 18:57:54 +0000576 if (RHS) {
577 NamedDecl *ObjectSetClass =
578 S.LookupSingleName(S.TUScope,
579 &S.Context.Idents.get("object_setClass"),
580 SourceLocation(), S.LookupOrdinaryName);
581 if (ObjectSetClass) {
582 SourceLocation RHSLocEnd = S.PP.getLocForEndOfToken(RHS->getLocEnd());
583 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_assign) <<
584 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_setClass(") <<
585 FixItHint::CreateReplacement(SourceRange(OIRE->getOpLoc(),
586 AssignLoc), ",") <<
587 FixItHint::CreateInsertion(RHSLocEnd, ")");
588 }
589 else
590 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_assign);
591 } else {
592 NamedDecl *ObjectGetClass =
593 S.LookupSingleName(S.TUScope,
594 &S.Context.Idents.get("object_getClass"),
595 SourceLocation(), S.LookupOrdinaryName);
596 if (ObjectGetClass)
597 S.Diag(OIRE->getExprLoc(), diag::warn_objc_isa_use) <<
598 FixItHint::CreateInsertion(OIRE->getLocStart(), "object_getClass(") <<
599 FixItHint::CreateReplacement(
600 SourceRange(OIRE->getOpLoc(),
601 OIRE->getLocEnd()), ")");
602 else
603 S.Diag(OIRE->getLocation(), diag::warn_objc_isa_use);
604 }
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +0000605 S.Diag(IV->getLocation(), diag::note_ivar_decl);
606 }
607 }
608}
609
John Wiegley01296292011-04-08 18:41:53 +0000610ExprResult Sema::DefaultLvalueConversion(Expr *E) {
John McCall50a2c2c2011-10-11 23:14:30 +0000611 // Handle any placeholder expressions which made it here.
612 if (E->getType()->isPlaceholderType()) {
613 ExprResult result = CheckPlaceholderExpr(E);
614 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000615 E = result.get();
John McCall50a2c2c2011-10-11 23:14:30 +0000616 }
617
John McCallf3735e02010-12-01 04:43:34 +0000618 // C++ [conv.lval]p1:
619 // A glvalue of a non-function, non-array type T can be
620 // converted to a prvalue.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000621 if (!E->isGLValue()) return E;
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +0000622
John McCall27584242010-12-06 20:48:59 +0000623 QualType T = E->getType();
624 assert(!T.isNull() && "r-value conversion on typeless expression?");
John McCall34376a62010-12-04 03:47:34 +0000625
John McCall27584242010-12-06 20:48:59 +0000626 // We don't want to throw lvalue-to-rvalue casts on top of
627 // expressions of certain types in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000628 if (getLangOpts().CPlusPlus &&
John McCall27584242010-12-06 20:48:59 +0000629 (E->getType() == Context.OverloadTy ||
630 T->isDependentType() ||
631 T->isRecordType()))
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000632 return E;
John McCall27584242010-12-06 20:48:59 +0000633
634 // The C standard is actually really unclear on this point, and
635 // DR106 tells us what the result should be but not why. It's
636 // generally best to say that void types just doesn't undergo
637 // lvalue-to-rvalue at all. Note that expressions of unqualified
638 // 'void' type are never l-values, but qualified void can be.
639 if (T->isVoidType())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000640 return E;
John McCall27584242010-12-06 20:48:59 +0000641
John McCall6ced97a2013-02-12 01:29:43 +0000642 // OpenCL usually rejects direct accesses to values of 'half' type.
643 if (getLangOpts().OpenCL && !getOpenCLOptions().cl_khr_fp16 &&
644 T->isHalfType()) {
645 Diag(E->getExprLoc(), diag::err_opencl_half_load_store)
646 << 0 << T;
647 return ExprError();
648 }
649
Argyrios Kyrtzidisa9b630e2011-04-26 17:41:22 +0000650 CheckForNullPointerDereference(*this, E);
Fariborz Jahanian06bb7f72013-03-28 19:50:55 +0000651 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(E->IgnoreParenCasts())) {
652 NamedDecl *ObjectGetClass = LookupSingleName(TUScope,
653 &Context.Idents.get("object_getClass"),
654 SourceLocation(), LookupOrdinaryName);
655 if (ObjectGetClass)
656 Diag(E->getExprLoc(), diag::warn_objc_isa_use) <<
657 FixItHint::CreateInsertion(OISA->getLocStart(), "object_getClass(") <<
658 FixItHint::CreateReplacement(
659 SourceRange(OISA->getOpLoc(), OISA->getIsaMemberLoc()), ")");
660 else
661 Diag(E->getExprLoc(), diag::warn_objc_isa_use);
662 }
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +0000663 else if (const ObjCIvarRefExpr *OIRE =
664 dyn_cast<ObjCIvarRefExpr>(E->IgnoreParenCasts()))
Craig Topperc3ec1492014-05-26 06:22:03 +0000665 DiagnoseDirectIsaAccess(*this, OIRE, SourceLocation(), /* Expr*/nullptr);
666
John McCall27584242010-12-06 20:48:59 +0000667 // C++ [conv.lval]p1:
668 // [...] If T is a non-class type, the type of the prvalue is the
669 // cv-unqualified version of T. Otherwise, the type of the
670 // rvalue is T.
671 //
672 // C99 6.3.2.1p2:
673 // If the lvalue has qualified type, the value has the unqualified
674 // version of the type of the lvalue; otherwise, the value has the
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000675 // type of the lvalue.
John McCall27584242010-12-06 20:48:59 +0000676 if (T.hasQualifiers())
677 T = T.getUnqualifiedType();
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000678
Eli Friedman3bda6b12012-02-02 23:15:15 +0000679 UpdateMarkingForLValueToRValue(E);
Fariborz Jahanianfbd19742012-11-27 23:02:53 +0000680
681 // Loading a __weak object implicitly retains the value, so we need a cleanup to
682 // balance that.
683 if (getLangOpts().ObjCAutoRefCount &&
684 E->getType().getObjCLifetime() == Qualifiers::OCL_Weak)
685 ExprNeedsCleanups = true;
Eli Friedman3bda6b12012-02-02 23:15:15 +0000686
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000687 ExprResult Res = ImplicitCastExpr::Create(Context, T, CK_LValueToRValue, E,
688 nullptr, VK_RValue);
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000689
Douglas Gregorc79862f2012-04-12 17:51:55 +0000690 // C11 6.3.2.1p2:
691 // ... if the lvalue has atomic type, the value has the non-atomic version
692 // of the type of the lvalue ...
693 if (const AtomicType *Atomic = T->getAs<AtomicType>()) {
694 T = Atomic->getValueType().getUnqualifiedType();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000695 Res = ImplicitCastExpr::Create(Context, T, CK_AtomicToNonAtomic, Res.get(),
696 nullptr, VK_RValue);
Douglas Gregorc79862f2012-04-12 17:51:55 +0000697 }
698
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000699 return Res;
John McCall27584242010-12-06 20:48:59 +0000700}
701
John Wiegley01296292011-04-08 18:41:53 +0000702ExprResult Sema::DefaultFunctionArrayLvalueConversion(Expr *E) {
703 ExprResult Res = DefaultFunctionArrayConversion(E);
704 if (Res.isInvalid())
705 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000706 Res = DefaultLvalueConversion(Res.get());
John Wiegley01296292011-04-08 18:41:53 +0000707 if (Res.isInvalid())
708 return ExprError();
Benjamin Kramer62b95d82012-08-23 21:35:17 +0000709 return Res;
Douglas Gregorb92a1562010-02-03 00:27:59 +0000710}
711
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000712/// CallExprUnaryConversions - a special case of an unary conversion
713/// performed on a function designator of a call expression.
714ExprResult Sema::CallExprUnaryConversions(Expr *E) {
715 QualType Ty = E->getType();
716 ExprResult Res = E;
717 // Only do implicit cast for a function type, but not for a pointer
718 // to function type.
719 if (Ty->isFunctionType()) {
720 Res = ImpCastExprToType(E, Context.getPointerType(Ty),
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000721 CK_FunctionToPointerDecay).get();
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000722 if (Res.isInvalid())
723 return ExprError();
724 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000725 Res = DefaultLvalueConversion(Res.get());
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000726 if (Res.isInvalid())
727 return ExprError();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000728 return Res.get();
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +0000729}
Douglas Gregorb92a1562010-02-03 00:27:59 +0000730
Chris Lattner513165e2008-07-25 21:10:04 +0000731/// UsualUnaryConversions - Performs various conversions that are common to most
Mike Stump11289f42009-09-09 15:08:12 +0000732/// operators (C99 6.3). The conversions of array and function types are
Chris Lattner57540c52011-04-15 05:22:18 +0000733/// sometimes suppressed. For example, the array->pointer conversion doesn't
Chris Lattner513165e2008-07-25 21:10:04 +0000734/// apply if the array is an argument to the sizeof or address (&) operators.
735/// In these instances, this routine should *not* be called.
John Wiegley01296292011-04-08 18:41:53 +0000736ExprResult Sema::UsualUnaryConversions(Expr *E) {
John McCallf3735e02010-12-01 04:43:34 +0000737 // First, convert to an r-value.
John Wiegley01296292011-04-08 18:41:53 +0000738 ExprResult Res = DefaultFunctionArrayLvalueConversion(E);
739 if (Res.isInvalid())
Fariborz Jahanian47ef4662013-03-06 00:37:40 +0000740 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000741 E = Res.get();
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000742
John McCallf3735e02010-12-01 04:43:34 +0000743 QualType Ty = E->getType();
Chris Lattner513165e2008-07-25 21:10:04 +0000744 assert(!Ty.isNull() && "UsualUnaryConversions - missing type");
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000745
Joey Goulydd7f4562013-01-23 11:56:20 +0000746 // Half FP have to be promoted to float unless it is natively supported
747 if (Ty->isHalfType() && !getLangOpts().NativeHalfType)
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000748 return ImpCastExprToType(Res.get(), Context.FloatTy, CK_FloatingCast);
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000749
John McCallf3735e02010-12-01 04:43:34 +0000750 // Try to perform integral promotions if the object has a theoretically
751 // promotable type.
752 if (Ty->isIntegralOrUnscopedEnumerationType()) {
753 // C99 6.3.1.1p2:
754 //
755 // The following may be used in an expression wherever an int or
756 // unsigned int may be used:
757 // - an object or expression with an integer type whose integer
758 // conversion rank is less than or equal to the rank of int
759 // and unsigned int.
760 // - A bit-field of type _Bool, int, signed int, or unsigned int.
761 //
762 // If an int can represent all values of the original type, the
763 // value is converted to an int; otherwise, it is converted to an
764 // unsigned int. These are called the integer promotions. All
765 // other types are unchanged by the integer promotions.
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +0000766
John McCallf3735e02010-12-01 04:43:34 +0000767 QualType PTy = Context.isPromotableBitField(E);
768 if (!PTy.isNull()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000769 E = ImpCastExprToType(E, PTy, CK_IntegralCast).get();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000770 return E;
John McCallf3735e02010-12-01 04:43:34 +0000771 }
772 if (Ty->isPromotableIntegerType()) {
773 QualType PT = Context.getPromotedIntegerType(Ty);
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000774 E = ImpCastExprToType(E, PT, CK_IntegralCast).get();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000775 return E;
John McCallf3735e02010-12-01 04:43:34 +0000776 }
Eli Friedman629ffb92009-08-20 04:21:42 +0000777 }
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000778 return E;
Chris Lattner513165e2008-07-25 21:10:04 +0000779}
780
Chris Lattner2ce500f2008-07-25 22:25:12 +0000781/// DefaultArgumentPromotion (C99 6.5.2.2p6). Used for function calls that
Tim Northoverda165072013-01-30 09:46:55 +0000782/// do not have a prototype. Arguments that have type float or __fp16
783/// are promoted to double. All other argument types are converted by
784/// UsualUnaryConversions().
John Wiegley01296292011-04-08 18:41:53 +0000785ExprResult Sema::DefaultArgumentPromotion(Expr *E) {
786 QualType Ty = E->getType();
Chris Lattner2ce500f2008-07-25 22:25:12 +0000787 assert(!Ty.isNull() && "DefaultArgumentPromotion - missing type");
Mike Stump11289f42009-09-09 15:08:12 +0000788
John Wiegley01296292011-04-08 18:41:53 +0000789 ExprResult Res = UsualUnaryConversions(E);
790 if (Res.isInvalid())
Fariborz Jahanian47ef4662013-03-06 00:37:40 +0000791 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000792 E = Res.get();
John McCall9bc26772010-12-06 18:36:11 +0000793
Tim Northoverda165072013-01-30 09:46:55 +0000794 // If this is a 'float' or '__fp16' (CVR qualified or typedef) promote to
795 // double.
796 const BuiltinType *BTy = Ty->getAs<BuiltinType>();
797 if (BTy && (BTy->getKind() == BuiltinType::Half ||
798 BTy->getKind() == BuiltinType::Float))
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000799 E = ImpCastExprToType(E, Context.DoubleTy, CK_FloatingCast).get();
John Wiegley01296292011-04-08 18:41:53 +0000800
John McCall4bb057d2011-08-27 22:06:17 +0000801 // C++ performs lvalue-to-rvalue conversion as a default argument
John McCall0562caa2011-08-29 23:55:37 +0000802 // promotion, even on class types, but note:
803 // C++11 [conv.lval]p2:
804 // When an lvalue-to-rvalue conversion occurs in an unevaluated
805 // operand or a subexpression thereof the value contained in the
806 // referenced object is not accessed. Otherwise, if the glvalue
807 // has a class type, the conversion copy-initializes a temporary
808 // of type T from the glvalue and the result of the conversion
809 // is a prvalue for the temporary.
Eli Friedman05e28012012-01-17 02:13:45 +0000810 // FIXME: add some way to gate this entire thing for correctness in
811 // potentially potentially evaluated contexts.
David Blaikie131fcb42012-08-06 22:47:24 +0000812 if (getLangOpts().CPlusPlus && E->isGLValue() && !isUnevaluatedContext()) {
Eli Friedman05e28012012-01-17 02:13:45 +0000813 ExprResult Temp = PerformCopyInitialization(
814 InitializedEntity::InitializeTemporary(E->getType()),
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000815 E->getExprLoc(), E);
Eli Friedman05e28012012-01-17 02:13:45 +0000816 if (Temp.isInvalid())
817 return ExprError();
818 E = Temp.get();
John McCall29ad95b2011-08-27 01:09:30 +0000819 }
820
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000821 return E;
Chris Lattner2ce500f2008-07-25 22:25:12 +0000822}
823
Richard Smith55ce3522012-06-25 20:30:08 +0000824/// Determine the degree of POD-ness for an expression.
825/// Incomplete types are considered POD, since this check can be performed
826/// when we're in an unevaluated context.
827Sema::VarArgKind Sema::isValidVarArgType(const QualType &Ty) {
Jordan Rose3e0ec582012-07-19 18:10:23 +0000828 if (Ty->isIncompleteType()) {
Richard Smithd7293d72013-08-05 18:49:43 +0000829 // C++11 [expr.call]p7:
830 // After these conversions, if the argument does not have arithmetic,
831 // enumeration, pointer, pointer to member, or class type, the program
832 // is ill-formed.
833 //
834 // Since we've already performed array-to-pointer and function-to-pointer
835 // decay, the only such type in C++ is cv void. This also handles
836 // initializer lists as variadic arguments.
837 if (Ty->isVoidType())
838 return VAK_Invalid;
839
Jordan Rose3e0ec582012-07-19 18:10:23 +0000840 if (Ty->isObjCObjectType())
841 return VAK_Invalid;
Richard Smith55ce3522012-06-25 20:30:08 +0000842 return VAK_Valid;
Jordan Rose3e0ec582012-07-19 18:10:23 +0000843 }
844
845 if (Ty.isCXX98PODType(Context))
846 return VAK_Valid;
847
Richard Smith16488472012-11-16 00:53:38 +0000848 // C++11 [expr.call]p7:
849 // Passing a potentially-evaluated argument of class type (Clause 9)
Richard Smith55ce3522012-06-25 20:30:08 +0000850 // having a non-trivial copy constructor, a non-trivial move constructor,
Richard Smith16488472012-11-16 00:53:38 +0000851 // or a non-trivial destructor, with no corresponding parameter,
Richard Smith55ce3522012-06-25 20:30:08 +0000852 // is conditionally-supported with implementation-defined semantics.
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000853 if (getLangOpts().CPlusPlus11 && !Ty->isDependentType())
Richard Smith55ce3522012-06-25 20:30:08 +0000854 if (CXXRecordDecl *Record = Ty->getAsCXXRecordDecl())
Richard Smith16488472012-11-16 00:53:38 +0000855 if (!Record->hasNonTrivialCopyConstructor() &&
856 !Record->hasNonTrivialMoveConstructor() &&
857 !Record->hasNonTrivialDestructor())
Richard Smith55ce3522012-06-25 20:30:08 +0000858 return VAK_ValidInCXX11;
859
860 if (getLangOpts().ObjCAutoRefCount && Ty->isObjCLifetimeType())
861 return VAK_Valid;
Richard Smithd7293d72013-08-05 18:49:43 +0000862
863 if (Ty->isObjCObjectType())
864 return VAK_Invalid;
865
Hans Wennborgd9dd4d22014-09-29 23:06:57 +0000866 if (getLangOpts().MSVCCompat)
867 return VAK_MSVCUndefined;
868
Richard Smithd7293d72013-08-05 18:49:43 +0000869 // FIXME: In C++11, these cases are conditionally-supported, meaning we're
870 // permitted to reject them. We should consider doing so.
871 return VAK_Undefined;
Richard Smith55ce3522012-06-25 20:30:08 +0000872}
873
Richard Smithd7293d72013-08-05 18:49:43 +0000874void Sema::checkVariadicArgument(const Expr *E, VariadicCallType CT) {
Richard Smith55ce3522012-06-25 20:30:08 +0000875 // Don't allow one to pass an Objective-C interface to a vararg.
Richard Smithd7293d72013-08-05 18:49:43 +0000876 const QualType &Ty = E->getType();
877 VarArgKind VAK = isValidVarArgType(Ty);
Richard Smith55ce3522012-06-25 20:30:08 +0000878
879 // Complain about passing non-POD types through varargs.
Richard Smithd7293d72013-08-05 18:49:43 +0000880 switch (VAK) {
Richard Smithd7293d72013-08-05 18:49:43 +0000881 case VAK_ValidInCXX11:
882 DiagRuntimeBehavior(
Craig Topperc3ec1492014-05-26 06:22:03 +0000883 E->getLocStart(), nullptr,
Richard Smithd7293d72013-08-05 18:49:43 +0000884 PDiag(diag::warn_cxx98_compat_pass_non_pod_arg_to_vararg)
Richard Smith2868a732014-02-28 01:36:39 +0000885 << Ty << CT);
886 // Fall through.
887 case VAK_Valid:
888 if (Ty->isRecordType()) {
889 // This is unlikely to be what the user intended. If the class has a
890 // 'c_str' member function, the user probably meant to call that.
Craig Topperc3ec1492014-05-26 06:22:03 +0000891 DiagRuntimeBehavior(E->getLocStart(), nullptr,
Richard Smith2868a732014-02-28 01:36:39 +0000892 PDiag(diag::warn_pass_class_arg_to_vararg)
893 << Ty << CT << hasCStrMethod(E) << ".c_str()");
894 }
Richard Smithd7293d72013-08-05 18:49:43 +0000895 break;
896
897 case VAK_Undefined:
Hans Wennborgd9dd4d22014-09-29 23:06:57 +0000898 case VAK_MSVCUndefined:
Richard Smithd7293d72013-08-05 18:49:43 +0000899 DiagRuntimeBehavior(
Craig Topperc3ec1492014-05-26 06:22:03 +0000900 E->getLocStart(), nullptr,
Richard Smithd7293d72013-08-05 18:49:43 +0000901 PDiag(diag::warn_cannot_pass_non_pod_arg_to_vararg)
902 << getLangOpts().CPlusPlus11 << Ty << CT);
903 break;
904
905 case VAK_Invalid:
906 if (Ty->isObjCObjectType())
907 DiagRuntimeBehavior(
Craig Topperc3ec1492014-05-26 06:22:03 +0000908 E->getLocStart(), nullptr,
Richard Smithd7293d72013-08-05 18:49:43 +0000909 PDiag(diag::err_cannot_pass_objc_interface_to_vararg)
910 << Ty << CT);
911 else
912 Diag(E->getLocStart(), diag::err_cannot_pass_to_vararg)
913 << isa<InitListExpr>(E) << Ty << CT;
914 break;
Richard Smith55ce3522012-06-25 20:30:08 +0000915 }
Richard Smith55ce3522012-06-25 20:30:08 +0000916}
917
Chris Lattnera8a7d0f2009-04-12 08:11:20 +0000918/// DefaultVariadicArgumentPromotion - Like DefaultArgumentPromotion, but
Jordan Rose3e0ec582012-07-19 18:10:23 +0000919/// will create a trap if the resulting type is not a POD type.
John Wiegley01296292011-04-08 18:41:53 +0000920ExprResult Sema::DefaultVariadicArgumentPromotion(Expr *E, VariadicCallType CT,
John McCall31168b02011-06-15 23:02:42 +0000921 FunctionDecl *FDecl) {
Richard Smith7659b122012-06-27 20:29:39 +0000922 if (const BuiltinType *PlaceholderTy = E->getType()->getAsPlaceholderType()) {
John McCall4124c492011-10-17 18:40:02 +0000923 // Strip the unbridged-cast placeholder expression off, if applicable.
924 if (PlaceholderTy->getKind() == BuiltinType::ARCUnbridgedCast &&
925 (CT == VariadicMethod ||
926 (FDecl && FDecl->hasAttr<CFAuditedTransferAttr>()))) {
927 E = stripARCUnbridgedCast(E);
928
929 // Otherwise, do normal placeholder checking.
930 } else {
931 ExprResult ExprRes = CheckPlaceholderExpr(E);
932 if (ExprRes.isInvalid())
933 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000934 E = ExprRes.get();
John McCall4124c492011-10-17 18:40:02 +0000935 }
936 }
Douglas Gregorcbd446d2011-06-17 00:15:10 +0000937
John McCall4124c492011-10-17 18:40:02 +0000938 ExprResult ExprRes = DefaultArgumentPromotion(E);
John Wiegley01296292011-04-08 18:41:53 +0000939 if (ExprRes.isInvalid())
940 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000941 E = ExprRes.get();
Mike Stump11289f42009-09-09 15:08:12 +0000942
Richard Smith55ce3522012-06-25 20:30:08 +0000943 // Diagnostics regarding non-POD argument types are
944 // emitted along with format string checking in Sema::CheckFunctionCall().
Richard Smithd7293d72013-08-05 18:49:43 +0000945 if (isValidVarArgType(E->getType()) == VAK_Undefined) {
Richard Smith55ce3522012-06-25 20:30:08 +0000946 // Turn this into a trap.
947 CXXScopeSpec SS;
948 SourceLocation TemplateKWLoc;
949 UnqualifiedId Name;
950 Name.setIdentifier(PP.getIdentifierInfo("__builtin_trap"),
951 E->getLocStart());
952 ExprResult TrapFn = ActOnIdExpression(TUScope, SS, TemplateKWLoc,
953 Name, true, false);
954 if (TrapFn.isInvalid())
955 return ExprError();
John McCall31168b02011-06-15 23:02:42 +0000956
Richard Smith55ce3522012-06-25 20:30:08 +0000957 ExprResult Call = ActOnCallExpr(TUScope, TrapFn.get(),
Dmitri Gribenko78852e92013-05-05 20:40:26 +0000958 E->getLocStart(), None,
Richard Smith55ce3522012-06-25 20:30:08 +0000959 E->getLocEnd());
960 if (Call.isInvalid())
961 return ExprError();
Douglas Gregor347e0f22011-05-21 19:26:31 +0000962
Richard Smith55ce3522012-06-25 20:30:08 +0000963 ExprResult Comma = ActOnBinOp(TUScope, E->getLocStart(), tok::comma,
964 Call.get(), E);
965 if (Comma.isInvalid())
966 return ExprError();
967 return Comma.get();
Douglas Gregor253cadf2011-05-21 16:27:21 +0000968 }
Richard Smith55ce3522012-06-25 20:30:08 +0000969
David Blaikiebbafb8a2012-03-11 07:00:24 +0000970 if (!getLangOpts().CPlusPlus &&
Fariborz Jahanian3854a552012-03-01 23:42:00 +0000971 RequireCompleteType(E->getExprLoc(), E->getType(),
Fariborz Jahanianbf482812012-03-02 17:05:03 +0000972 diag::err_call_incomplete_argument))
Fariborz Jahanian3854a552012-03-01 23:42:00 +0000973 return ExprError();
Richard Smith55ce3522012-06-25 20:30:08 +0000974
Nikola Smiljanic03ff2592014-05-29 14:05:12 +0000975 return E;
Anders Carlssona7d069d2009-01-16 16:48:51 +0000976}
977
Richard Trieu7aa58f12011-09-02 20:58:51 +0000978/// \brief Converts an integer to complex float type. Helper function of
979/// UsualArithmeticConversions()
980///
981/// \return false if the integer expression is an integer type and is
982/// successfully converted to the complex type.
Richard Trieuba63ce62011-09-09 01:45:06 +0000983static bool handleIntegerToComplexFloatConversion(Sema &S, ExprResult &IntExpr,
984 ExprResult &ComplexExpr,
985 QualType IntTy,
986 QualType ComplexTy,
987 bool SkipCast) {
988 if (IntTy->isComplexType() || IntTy->isRealFloatingType()) return true;
989 if (SkipCast) return false;
990 if (IntTy->isIntegerType()) {
991 QualType fpTy = cast<ComplexType>(ComplexTy)->getElementType();
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000992 IntExpr = S.ImpCastExprToType(IntExpr.get(), fpTy, CK_IntegralToFloating);
993 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
Richard Trieu7aa58f12011-09-02 20:58:51 +0000994 CK_FloatingRealToComplex);
995 } else {
Richard Trieuba63ce62011-09-09 01:45:06 +0000996 assert(IntTy->isComplexIntegerType());
Nikola Smiljanic01a75982014-05-29 10:55:11 +0000997 IntExpr = S.ImpCastExprToType(IntExpr.get(), ComplexTy,
Richard Trieu7aa58f12011-09-02 20:58:51 +0000998 CK_IntegralComplexToFloatingComplex);
999 }
1000 return false;
1001}
1002
Richard Trieu7aa58f12011-09-02 20:58:51 +00001003/// \brief Handle arithmetic conversion with complex types. Helper function of
1004/// UsualArithmeticConversions()
Richard Trieu5065cdd2011-09-06 18:25:09 +00001005static QualType handleComplexFloatConversion(Sema &S, ExprResult &LHS,
1006 ExprResult &RHS, QualType LHSType,
1007 QualType RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001008 bool IsCompAssign) {
Richard Trieu7aa58f12011-09-02 20:58:51 +00001009 // if we have an integer operand, the result is the complex type.
Richard Trieu5065cdd2011-09-06 18:25:09 +00001010 if (!handleIntegerToComplexFloatConversion(S, RHS, LHS, RHSType, LHSType,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001011 /*skipCast*/false))
Richard Trieu5065cdd2011-09-06 18:25:09 +00001012 return LHSType;
1013 if (!handleIntegerToComplexFloatConversion(S, LHS, RHS, LHSType, RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001014 /*skipCast*/IsCompAssign))
Richard Trieu5065cdd2011-09-06 18:25:09 +00001015 return RHSType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001016
1017 // This handles complex/complex, complex/float, or float/complex.
1018 // When both operands are complex, the shorter operand is converted to the
1019 // type of the longer, and that is the type of the result. This corresponds
1020 // to what is done when combining two real floating-point operands.
1021 // The fun begins when size promotion occur across type domains.
1022 // From H&S 6.3.4: When one operand is complex and the other is a real
1023 // floating-point type, the less precise type is converted, within it's
1024 // real or complex domain, to the precision of the other type. For example,
1025 // when combining a "long double" with a "double _Complex", the
1026 // "double _Complex" is promoted to "long double _Complex".
1027
Chandler Carrutha216cad2014-10-11 00:57:18 +00001028 // Compute the rank of the two types, regardless of whether they are complex.
1029 int Order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001030
Chandler Carrutha216cad2014-10-11 00:57:18 +00001031 auto *LHSComplexType = dyn_cast<ComplexType>(LHSType);
1032 auto *RHSComplexType = dyn_cast<ComplexType>(RHSType);
1033 QualType LHSElementType =
1034 LHSComplexType ? LHSComplexType->getElementType() : LHSType;
1035 QualType RHSElementType =
1036 RHSComplexType ? RHSComplexType->getElementType() : RHSType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001037
Chandler Carrutha216cad2014-10-11 00:57:18 +00001038 QualType ResultType = S.Context.getComplexType(LHSElementType);
1039 if (Order < 0) {
1040 // Promote the precision of the LHS if not an assignment.
1041 ResultType = S.Context.getComplexType(RHSElementType);
1042 if (!IsCompAssign) {
1043 if (LHSComplexType)
1044 LHS =
1045 S.ImpCastExprToType(LHS.get(), ResultType, CK_FloatingComplexCast);
1046 else
1047 LHS = S.ImpCastExprToType(LHS.get(), RHSElementType, CK_FloatingCast);
1048 }
1049 } else if (Order > 0) {
1050 // Promote the precision of the RHS.
1051 if (RHSComplexType)
1052 RHS = S.ImpCastExprToType(RHS.get(), ResultType, CK_FloatingComplexCast);
1053 else
1054 RHS = S.ImpCastExprToType(RHS.get(), LHSElementType, CK_FloatingCast);
1055 }
1056 return ResultType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001057}
1058
1059/// \brief Hande arithmetic conversion from integer to float. Helper function
1060/// of UsualArithmeticConversions()
Richard Trieuba63ce62011-09-09 01:45:06 +00001061static QualType handleIntToFloatConversion(Sema &S, ExprResult &FloatExpr,
1062 ExprResult &IntExpr,
1063 QualType FloatTy, QualType IntTy,
1064 bool ConvertFloat, bool ConvertInt) {
1065 if (IntTy->isIntegerType()) {
1066 if (ConvertInt)
Richard Trieu7aa58f12011-09-02 20:58:51 +00001067 // Convert intExpr to the lhs floating point type.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001068 IntExpr = S.ImpCastExprToType(IntExpr.get(), FloatTy,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001069 CK_IntegralToFloating);
Richard Trieuba63ce62011-09-09 01:45:06 +00001070 return FloatTy;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001071 }
1072
1073 // Convert both sides to the appropriate complex float.
Richard Trieuba63ce62011-09-09 01:45:06 +00001074 assert(IntTy->isComplexIntegerType());
1075 QualType result = S.Context.getComplexType(FloatTy);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001076
1077 // _Complex int -> _Complex float
Richard Trieuba63ce62011-09-09 01:45:06 +00001078 if (ConvertInt)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001079 IntExpr = S.ImpCastExprToType(IntExpr.get(), result,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001080 CK_IntegralComplexToFloatingComplex);
1081
1082 // float -> _Complex float
Richard Trieuba63ce62011-09-09 01:45:06 +00001083 if (ConvertFloat)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001084 FloatExpr = S.ImpCastExprToType(FloatExpr.get(), result,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001085 CK_FloatingRealToComplex);
1086
1087 return result;
1088}
1089
1090/// \brief Handle arithmethic conversion with floating point types. Helper
1091/// function of UsualArithmeticConversions()
Richard Trieucfe3f212011-09-06 18:38:41 +00001092static QualType handleFloatConversion(Sema &S, ExprResult &LHS,
1093 ExprResult &RHS, QualType LHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001094 QualType RHSType, bool IsCompAssign) {
Richard Trieucfe3f212011-09-06 18:38:41 +00001095 bool LHSFloat = LHSType->isRealFloatingType();
1096 bool RHSFloat = RHSType->isRealFloatingType();
Richard Trieu7aa58f12011-09-02 20:58:51 +00001097
1098 // If we have two real floating types, convert the smaller operand
1099 // to the bigger result.
1100 if (LHSFloat && RHSFloat) {
Richard Trieucfe3f212011-09-06 18:38:41 +00001101 int order = S.Context.getFloatingTypeOrder(LHSType, RHSType);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001102 if (order > 0) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001103 RHS = S.ImpCastExprToType(RHS.get(), LHSType, CK_FloatingCast);
Richard Trieucfe3f212011-09-06 18:38:41 +00001104 return LHSType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001105 }
1106
1107 assert(order < 0 && "illegal float comparison");
Richard Trieuba63ce62011-09-09 01:45:06 +00001108 if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001109 LHS = S.ImpCastExprToType(LHS.get(), RHSType, CK_FloatingCast);
Richard Trieucfe3f212011-09-06 18:38:41 +00001110 return RHSType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001111 }
1112
Ahmed Bougacha5b639082015-05-29 22:54:57 +00001113 if (LHSFloat) {
1114 // Half FP has to be promoted to float unless it is natively supported
1115 if (LHSType->isHalfType() && !S.getLangOpts().NativeHalfType)
1116 LHSType = S.Context.FloatTy;
1117
Richard Trieucfe3f212011-09-06 18:38:41 +00001118 return handleIntToFloatConversion(S, LHS, RHS, LHSType, RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001119 /*convertFloat=*/!IsCompAssign,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001120 /*convertInt=*/ true);
Ahmed Bougacha5b639082015-05-29 22:54:57 +00001121 }
Richard Trieu7aa58f12011-09-02 20:58:51 +00001122 assert(RHSFloat);
Richard Trieucfe3f212011-09-06 18:38:41 +00001123 return handleIntToFloatConversion(S, RHS, LHS, RHSType, LHSType,
Richard Trieu7aa58f12011-09-02 20:58:51 +00001124 /*convertInt=*/ true,
Richard Trieuba63ce62011-09-09 01:45:06 +00001125 /*convertFloat=*/!IsCompAssign);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001126}
1127
Bill Schmidteb03ae22013-02-01 15:34:29 +00001128typedef ExprResult PerformCastFn(Sema &S, Expr *operand, QualType toType);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001129
Bill Schmidteb03ae22013-02-01 15:34:29 +00001130namespace {
1131/// These helper callbacks are placed in an anonymous namespace to
1132/// permit their use as function template parameters.
1133ExprResult doIntegralCast(Sema &S, Expr *op, QualType toType) {
1134 return S.ImpCastExprToType(op, toType, CK_IntegralCast);
1135}
Richard Trieu7aa58f12011-09-02 20:58:51 +00001136
Bill Schmidteb03ae22013-02-01 15:34:29 +00001137ExprResult doComplexIntegralCast(Sema &S, Expr *op, QualType toType) {
1138 return S.ImpCastExprToType(op, S.Context.getComplexType(toType),
1139 CK_IntegralComplexCast);
1140}
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001141}
Richard Trieu7aa58f12011-09-02 20:58:51 +00001142
1143/// \brief Handle integer arithmetic conversions. Helper function of
1144/// UsualArithmeticConversions()
Bill Schmidteb03ae22013-02-01 15:34:29 +00001145template <PerformCastFn doLHSCast, PerformCastFn doRHSCast>
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001146static QualType handleIntegerConversion(Sema &S, ExprResult &LHS,
1147 ExprResult &RHS, QualType LHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001148 QualType RHSType, bool IsCompAssign) {
Richard Trieu7aa58f12011-09-02 20:58:51 +00001149 // The rules for this case are in C99 6.3.1.8
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001150 int order = S.Context.getIntegerTypeOrder(LHSType, RHSType);
1151 bool LHSSigned = LHSType->hasSignedIntegerRepresentation();
1152 bool RHSSigned = RHSType->hasSignedIntegerRepresentation();
1153 if (LHSSigned == RHSSigned) {
Richard Trieu7aa58f12011-09-02 20:58:51 +00001154 // Same signedness; use the higher-ranked type
1155 if (order >= 0) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001156 RHS = (*doRHSCast)(S, RHS.get(), LHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001157 return LHSType;
Richard Trieuba63ce62011-09-09 01:45:06 +00001158 } else if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001159 LHS = (*doLHSCast)(S, LHS.get(), RHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001160 return RHSType;
1161 } else if (order != (LHSSigned ? 1 : -1)) {
Richard Trieu7aa58f12011-09-02 20:58:51 +00001162 // The unsigned type has greater than or equal rank to the
1163 // signed type, so use the unsigned type
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001164 if (RHSSigned) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001165 RHS = (*doRHSCast)(S, RHS.get(), LHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001166 return LHSType;
Richard Trieuba63ce62011-09-09 01:45:06 +00001167 } else if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001168 LHS = (*doLHSCast)(S, LHS.get(), RHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001169 return RHSType;
1170 } else if (S.Context.getIntWidth(LHSType) != S.Context.getIntWidth(RHSType)) {
Richard Trieu7aa58f12011-09-02 20:58:51 +00001171 // The two types are different widths; if we are here, that
1172 // means the signed type is larger than the unsigned type, so
1173 // use the signed type.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001174 if (LHSSigned) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001175 RHS = (*doRHSCast)(S, RHS.get(), LHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001176 return LHSType;
Richard Trieuba63ce62011-09-09 01:45:06 +00001177 } else if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001178 LHS = (*doLHSCast)(S, LHS.get(), RHSType);
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001179 return RHSType;
Richard Trieu7aa58f12011-09-02 20:58:51 +00001180 } else {
1181 // The signed type is higher-ranked than the unsigned type,
1182 // but isn't actually any bigger (like unsigned int and long
1183 // on most 32-bit systems). Use the unsigned type corresponding
1184 // to the signed type.
1185 QualType result =
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001186 S.Context.getCorrespondingUnsignedType(LHSSigned ? LHSType : RHSType);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001187 RHS = (*doRHSCast)(S, RHS.get(), result);
Richard Trieuba63ce62011-09-09 01:45:06 +00001188 if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001189 LHS = (*doLHSCast)(S, LHS.get(), result);
Richard Trieu7aa58f12011-09-02 20:58:51 +00001190 return result;
1191 }
1192}
1193
Bill Schmidteb03ae22013-02-01 15:34:29 +00001194/// \brief Handle conversions with GCC complex int extension. Helper function
1195/// of UsualArithmeticConversions()
1196static QualType handleComplexIntConversion(Sema &S, ExprResult &LHS,
1197 ExprResult &RHS, QualType LHSType,
1198 QualType RHSType,
1199 bool IsCompAssign) {
1200 const ComplexType *LHSComplexInt = LHSType->getAsComplexIntegerType();
1201 const ComplexType *RHSComplexInt = RHSType->getAsComplexIntegerType();
1202
1203 if (LHSComplexInt && RHSComplexInt) {
1204 QualType LHSEltType = LHSComplexInt->getElementType();
1205 QualType RHSEltType = RHSComplexInt->getElementType();
1206 QualType ScalarType =
1207 handleIntegerConversion<doComplexIntegralCast, doComplexIntegralCast>
1208 (S, LHS, RHS, LHSEltType, RHSEltType, IsCompAssign);
1209
1210 return S.Context.getComplexType(ScalarType);
1211 }
1212
1213 if (LHSComplexInt) {
1214 QualType LHSEltType = LHSComplexInt->getElementType();
1215 QualType ScalarType =
1216 handleIntegerConversion<doComplexIntegralCast, doIntegralCast>
1217 (S, LHS, RHS, LHSEltType, RHSType, IsCompAssign);
1218 QualType ComplexType = S.Context.getComplexType(ScalarType);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001219 RHS = S.ImpCastExprToType(RHS.get(), ComplexType,
Bill Schmidteb03ae22013-02-01 15:34:29 +00001220 CK_IntegralRealToComplex);
1221
1222 return ComplexType;
1223 }
1224
1225 assert(RHSComplexInt);
1226
1227 QualType RHSEltType = RHSComplexInt->getElementType();
1228 QualType ScalarType =
1229 handleIntegerConversion<doIntegralCast, doComplexIntegralCast>
1230 (S, LHS, RHS, LHSType, RHSEltType, IsCompAssign);
1231 QualType ComplexType = S.Context.getComplexType(ScalarType);
1232
1233 if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001234 LHS = S.ImpCastExprToType(LHS.get(), ComplexType,
Bill Schmidteb03ae22013-02-01 15:34:29 +00001235 CK_IntegralRealToComplex);
1236 return ComplexType;
1237}
1238
Chris Lattner513165e2008-07-25 21:10:04 +00001239/// UsualArithmeticConversions - Performs various conversions that are common to
1240/// binary operators (C99 6.3.1.8). If both operands aren't arithmetic, this
Mike Stump11289f42009-09-09 15:08:12 +00001241/// routine returns the first non-arithmetic type found. The client is
Chris Lattner513165e2008-07-25 21:10:04 +00001242/// responsible for emitting appropriate error diagnostics.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001243QualType Sema::UsualArithmeticConversions(ExprResult &LHS, ExprResult &RHS,
Richard Trieuba63ce62011-09-09 01:45:06 +00001244 bool IsCompAssign) {
1245 if (!IsCompAssign) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001246 LHS = UsualUnaryConversions(LHS.get());
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001247 if (LHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00001248 return QualType();
1249 }
Eli Friedman8b7b1b12009-03-28 01:22:36 +00001250
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001251 RHS = UsualUnaryConversions(RHS.get());
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001252 if (RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00001253 return QualType();
Douglas Gregora11693b2008-11-12 17:17:38 +00001254
Mike Stump11289f42009-09-09 15:08:12 +00001255 // For conversion purposes, we ignore any qualifiers.
Chris Lattner513165e2008-07-25 21:10:04 +00001256 // For example, "const float" and "float" are equivalent.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001257 QualType LHSType =
1258 Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
1259 QualType RHSType =
1260 Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
Douglas Gregora11693b2008-11-12 17:17:38 +00001261
Eli Friedman93ee5ca2012-06-16 02:19:17 +00001262 // For conversion purposes, we ignore any atomic qualifier on the LHS.
1263 if (const AtomicType *AtomicLHS = LHSType->getAs<AtomicType>())
1264 LHSType = AtomicLHS->getValueType();
1265
Douglas Gregora11693b2008-11-12 17:17:38 +00001266 // If both types are identical, no conversion is needed.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001267 if (LHSType == RHSType)
1268 return LHSType;
Douglas Gregora11693b2008-11-12 17:17:38 +00001269
1270 // If either side is a non-arithmetic type (e.g. a pointer), we are done.
1271 // The caller can deal with this (e.g. pointer + int).
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001272 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType())
Eli Friedman93ee5ca2012-06-16 02:19:17 +00001273 return QualType();
Douglas Gregora11693b2008-11-12 17:17:38 +00001274
John McCalld005ac92010-11-13 08:17:45 +00001275 // Apply unary and bitfield promotions to the LHS's type.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001276 QualType LHSUnpromotedType = LHSType;
1277 if (LHSType->isPromotableIntegerType())
1278 LHSType = Context.getPromotedIntegerType(LHSType);
1279 QualType LHSBitfieldPromoteTy = Context.isPromotableBitField(LHS.get());
Douglas Gregord2c2d172009-05-02 00:36:19 +00001280 if (!LHSBitfieldPromoteTy.isNull())
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001281 LHSType = LHSBitfieldPromoteTy;
Richard Trieuba63ce62011-09-09 01:45:06 +00001282 if (LHSType != LHSUnpromotedType && !IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001283 LHS = ImpCastExprToType(LHS.get(), LHSType, CK_IntegralCast);
Douglas Gregord2c2d172009-05-02 00:36:19 +00001284
John McCalld005ac92010-11-13 08:17:45 +00001285 // If both types are identical, no conversion is needed.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001286 if (LHSType == RHSType)
1287 return LHSType;
John McCalld005ac92010-11-13 08:17:45 +00001288
1289 // At this point, we have two different arithmetic types.
1290
1291 // Handle complex types first (C99 6.3.1.8p1).
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001292 if (LHSType->isComplexType() || RHSType->isComplexType())
1293 return handleComplexFloatConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001294 IsCompAssign);
John McCalld005ac92010-11-13 08:17:45 +00001295
1296 // Now handle "real" floating types (i.e. float, double, long double).
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001297 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
1298 return handleFloatConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001299 IsCompAssign);
John McCalld005ac92010-11-13 08:17:45 +00001300
1301 // Handle GCC complex int extension.
Richard Trieu9a52fbb2011-09-06 19:52:52 +00001302 if (LHSType->isComplexIntegerType() || RHSType->isComplexIntegerType())
Benjamin Kramer499c68b2011-09-06 19:57:14 +00001303 return handleComplexIntConversion(*this, LHS, RHS, LHSType, RHSType,
Richard Trieuba63ce62011-09-09 01:45:06 +00001304 IsCompAssign);
John McCalld005ac92010-11-13 08:17:45 +00001305
1306 // Finally, we have two differing integer types.
Bill Schmidteb03ae22013-02-01 15:34:29 +00001307 return handleIntegerConversion<doIntegralCast, doIntegralCast>
1308 (*this, LHS, RHS, LHSType, RHSType, IsCompAssign);
Douglas Gregora11693b2008-11-12 17:17:38 +00001309}
1310
Bill Schmidteb03ae22013-02-01 15:34:29 +00001311
Chris Lattner513165e2008-07-25 21:10:04 +00001312//===----------------------------------------------------------------------===//
1313// Semantic Analysis for various Expression Types
1314//===----------------------------------------------------------------------===//
1315
1316
Peter Collingbourne91147592011-04-15 00:35:48 +00001317ExprResult
1318Sema::ActOnGenericSelectionExpr(SourceLocation KeyLoc,
1319 SourceLocation DefaultLoc,
1320 SourceLocation RParenLoc,
1321 Expr *ControllingExpr,
Dmitri Gribenko82360372013-05-10 13:06:58 +00001322 ArrayRef<ParsedType> ArgTypes,
1323 ArrayRef<Expr *> ArgExprs) {
Richard Trieuba63ce62011-09-09 01:45:06 +00001324 unsigned NumAssocs = ArgTypes.size();
1325 assert(NumAssocs == ArgExprs.size());
Peter Collingbourne91147592011-04-15 00:35:48 +00001326
Peter Collingbourne91147592011-04-15 00:35:48 +00001327 TypeSourceInfo **Types = new TypeSourceInfo*[NumAssocs];
1328 for (unsigned i = 0; i < NumAssocs; ++i) {
Dmitri Gribenko82360372013-05-10 13:06:58 +00001329 if (ArgTypes[i])
1330 (void) GetTypeFromParser(ArgTypes[i], &Types[i]);
Peter Collingbourne91147592011-04-15 00:35:48 +00001331 else
Craig Topperc3ec1492014-05-26 06:22:03 +00001332 Types[i] = nullptr;
Peter Collingbourne91147592011-04-15 00:35:48 +00001333 }
1334
1335 ExprResult ER = CreateGenericSelectionExpr(KeyLoc, DefaultLoc, RParenLoc,
Dmitri Gribenko82360372013-05-10 13:06:58 +00001336 ControllingExpr,
1337 llvm::makeArrayRef(Types, NumAssocs),
1338 ArgExprs);
Benjamin Kramer34623762011-04-15 11:21:57 +00001339 delete [] Types;
Peter Collingbourne91147592011-04-15 00:35:48 +00001340 return ER;
1341}
1342
1343ExprResult
1344Sema::CreateGenericSelectionExpr(SourceLocation KeyLoc,
1345 SourceLocation DefaultLoc,
1346 SourceLocation RParenLoc,
1347 Expr *ControllingExpr,
Dmitri Gribenko82360372013-05-10 13:06:58 +00001348 ArrayRef<TypeSourceInfo *> Types,
1349 ArrayRef<Expr *> Exprs) {
1350 unsigned NumAssocs = Types.size();
1351 assert(NumAssocs == Exprs.size());
John McCall587b3482013-02-12 02:08:12 +00001352 if (ControllingExpr->getType()->isPlaceholderType()) {
1353 ExprResult result = CheckPlaceholderExpr(ControllingExpr);
1354 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00001355 ControllingExpr = result.get();
John McCall587b3482013-02-12 02:08:12 +00001356 }
1357
Aaron Ballman6c93b3e2014-12-17 21:57:17 +00001358 // The controlling expression is an unevaluated operand, so side effects are
1359 // likely unintended.
1360 if (ActiveTemplateInstantiations.empty() &&
1361 ControllingExpr->HasSideEffects(Context, false))
1362 Diag(ControllingExpr->getExprLoc(),
1363 diag::warn_side_effects_unevaluated_context);
1364
Peter Collingbourne91147592011-04-15 00:35:48 +00001365 bool TypeErrorFound = false,
1366 IsResultDependent = ControllingExpr->isTypeDependent(),
1367 ContainsUnexpandedParameterPack
1368 = ControllingExpr->containsUnexpandedParameterPack();
1369
1370 for (unsigned i = 0; i < NumAssocs; ++i) {
1371 if (Exprs[i]->containsUnexpandedParameterPack())
1372 ContainsUnexpandedParameterPack = true;
1373
1374 if (Types[i]) {
1375 if (Types[i]->getType()->containsUnexpandedParameterPack())
1376 ContainsUnexpandedParameterPack = true;
1377
1378 if (Types[i]->getType()->isDependentType()) {
1379 IsResultDependent = true;
1380 } else {
Benjamin Kramere56f3932011-12-23 17:00:35 +00001381 // C11 6.5.1.1p2 "The type name in a generic association shall specify a
Peter Collingbourne91147592011-04-15 00:35:48 +00001382 // complete object type other than a variably modified type."
1383 unsigned D = 0;
1384 if (Types[i]->getType()->isIncompleteType())
1385 D = diag::err_assoc_type_incomplete;
1386 else if (!Types[i]->getType()->isObjectType())
1387 D = diag::err_assoc_type_nonobject;
1388 else if (Types[i]->getType()->isVariablyModifiedType())
1389 D = diag::err_assoc_type_variably_modified;
1390
1391 if (D != 0) {
1392 Diag(Types[i]->getTypeLoc().getBeginLoc(), D)
1393 << Types[i]->getTypeLoc().getSourceRange()
1394 << Types[i]->getType();
1395 TypeErrorFound = true;
1396 }
1397
Benjamin Kramere56f3932011-12-23 17:00:35 +00001398 // C11 6.5.1.1p2 "No two generic associations in the same generic
Peter Collingbourne91147592011-04-15 00:35:48 +00001399 // selection shall specify compatible types."
1400 for (unsigned j = i+1; j < NumAssocs; ++j)
1401 if (Types[j] && !Types[j]->getType()->isDependentType() &&
1402 Context.typesAreCompatible(Types[i]->getType(),
1403 Types[j]->getType())) {
1404 Diag(Types[j]->getTypeLoc().getBeginLoc(),
1405 diag::err_assoc_compatible_types)
1406 << Types[j]->getTypeLoc().getSourceRange()
1407 << Types[j]->getType()
1408 << Types[i]->getType();
1409 Diag(Types[i]->getTypeLoc().getBeginLoc(),
1410 diag::note_compat_assoc)
1411 << Types[i]->getTypeLoc().getSourceRange()
1412 << Types[i]->getType();
1413 TypeErrorFound = true;
1414 }
1415 }
1416 }
1417 }
1418 if (TypeErrorFound)
1419 return ExprError();
1420
1421 // If we determined that the generic selection is result-dependent, don't
1422 // try to compute the result expression.
1423 if (IsResultDependent)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001424 return new (Context) GenericSelectionExpr(
1425 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1426 ContainsUnexpandedParameterPack);
Peter Collingbourne91147592011-04-15 00:35:48 +00001427
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001428 SmallVector<unsigned, 1> CompatIndices;
Peter Collingbourne91147592011-04-15 00:35:48 +00001429 unsigned DefaultIndex = -1U;
1430 for (unsigned i = 0; i < NumAssocs; ++i) {
1431 if (!Types[i])
1432 DefaultIndex = i;
1433 else if (Context.typesAreCompatible(ControllingExpr->getType(),
1434 Types[i]->getType()))
1435 CompatIndices.push_back(i);
1436 }
1437
Benjamin Kramere56f3932011-12-23 17:00:35 +00001438 // C11 6.5.1.1p2 "The controlling expression of a generic selection shall have
Peter Collingbourne91147592011-04-15 00:35:48 +00001439 // type compatible with at most one of the types named in its generic
1440 // association list."
1441 if (CompatIndices.size() > 1) {
1442 // We strip parens here because the controlling expression is typically
1443 // parenthesized in macro definitions.
1444 ControllingExpr = ControllingExpr->IgnoreParens();
1445 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_multi_match)
1446 << ControllingExpr->getSourceRange() << ControllingExpr->getType()
1447 << (unsigned) CompatIndices.size();
Craig Topper2341c0d2013-07-04 03:08:24 +00001448 for (SmallVectorImpl<unsigned>::iterator I = CompatIndices.begin(),
Peter Collingbourne91147592011-04-15 00:35:48 +00001449 E = CompatIndices.end(); I != E; ++I) {
1450 Diag(Types[*I]->getTypeLoc().getBeginLoc(),
1451 diag::note_compat_assoc)
1452 << Types[*I]->getTypeLoc().getSourceRange()
1453 << Types[*I]->getType();
1454 }
1455 return ExprError();
1456 }
1457
Benjamin Kramere56f3932011-12-23 17:00:35 +00001458 // C11 6.5.1.1p2 "If a generic selection has no default generic association,
Peter Collingbourne91147592011-04-15 00:35:48 +00001459 // its controlling expression shall have type compatible with exactly one of
1460 // the types named in its generic association list."
1461 if (DefaultIndex == -1U && CompatIndices.size() == 0) {
1462 // We strip parens here because the controlling expression is typically
1463 // parenthesized in macro definitions.
1464 ControllingExpr = ControllingExpr->IgnoreParens();
1465 Diag(ControllingExpr->getLocStart(), diag::err_generic_sel_no_match)
1466 << ControllingExpr->getSourceRange() << ControllingExpr->getType();
1467 return ExprError();
1468 }
1469
Benjamin Kramere56f3932011-12-23 17:00:35 +00001470 // C11 6.5.1.1p3 "If a generic selection has a generic association with a
Peter Collingbourne91147592011-04-15 00:35:48 +00001471 // type name that is compatible with the type of the controlling expression,
1472 // then the result expression of the generic selection is the expression
1473 // in that generic association. Otherwise, the result expression of the
1474 // generic selection is the expression in the default generic association."
1475 unsigned ResultIndex =
1476 CompatIndices.size() ? CompatIndices[0] : DefaultIndex;
1477
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001478 return new (Context) GenericSelectionExpr(
1479 Context, KeyLoc, ControllingExpr, Types, Exprs, DefaultLoc, RParenLoc,
1480 ContainsUnexpandedParameterPack, ResultIndex);
Peter Collingbourne91147592011-04-15 00:35:48 +00001481}
1482
Richard Smith75b67d62012-03-08 01:34:56 +00001483/// getUDSuffixLoc - Create a SourceLocation for a ud-suffix, given the
1484/// location of the token and the offset of the ud-suffix within it.
1485static SourceLocation getUDSuffixLoc(Sema &S, SourceLocation TokLoc,
1486 unsigned Offset) {
1487 return Lexer::AdvanceToTokenCharacter(TokLoc, Offset, S.getSourceManager(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00001488 S.getLangOpts());
Richard Smith75b67d62012-03-08 01:34:56 +00001489}
1490
Richard Smithbcc22fc2012-03-09 08:00:36 +00001491/// BuildCookedLiteralOperatorCall - A user-defined literal was found. Look up
1492/// the corresponding cooked (non-raw) literal operator, and build a call to it.
1493static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope,
1494 IdentifierInfo *UDSuffix,
1495 SourceLocation UDSuffixLoc,
1496 ArrayRef<Expr*> Args,
1497 SourceLocation LitEndLoc) {
1498 assert(Args.size() <= 2 && "too many arguments for literal operator");
1499
1500 QualType ArgTy[2];
1501 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
1502 ArgTy[ArgIdx] = Args[ArgIdx]->getType();
1503 if (ArgTy[ArgIdx]->isArrayType())
1504 ArgTy[ArgIdx] = S.Context.getArrayDecayedType(ArgTy[ArgIdx]);
1505 }
1506
1507 DeclarationName OpName =
1508 S.Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1509 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1510 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1511
1512 LookupResult R(S, OpName, UDSuffixLoc, Sema::LookupOrdinaryName);
1513 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
Richard Smithb8b41d32013-10-07 19:57:58 +00001514 /*AllowRaw*/false, /*AllowTemplate*/false,
1515 /*AllowStringTemplate*/false) == Sema::LOLR_Error)
Richard Smithbcc22fc2012-03-09 08:00:36 +00001516 return ExprError();
1517
1518 return S.BuildLiteralOperatorCall(R, OpNameInfo, Args, LitEndLoc);
1519}
1520
Steve Naroff83895f72007-09-16 03:34:24 +00001521/// ActOnStringLiteral - The specified tokens were lexed as pasted string
Chris Lattner5b183d82006-11-10 05:03:26 +00001522/// fragments (e.g. "foo" "bar" L"baz"). The result string has to handle string
1523/// concatenation ([C99 5.1.1.2, translation phase #6]), so it may come from
1524/// multiple tokens. However, the common case is that StringToks points to one
1525/// string.
Sebastian Redlffbcf962009-01-18 18:53:16 +00001526///
John McCalldadc5752010-08-24 06:29:42 +00001527ExprResult
Craig Topper9d5583e2014-06-26 04:58:39 +00001528Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) {
1529 assert(!StringToks.empty() && "Must have at least one string!");
Chris Lattner5b183d82006-11-10 05:03:26 +00001530
Craig Topper9d5583e2014-06-26 04:58:39 +00001531 StringLiteralParser Literal(StringToks, PP);
Steve Naroff4f88b312007-03-13 22:37:02 +00001532 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +00001533 return ExprError();
Chris Lattner5b183d82006-11-10 05:03:26 +00001534
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001535 SmallVector<SourceLocation, 4> StringTokLocs;
Craig Topper9d5583e2014-06-26 04:58:39 +00001536 for (unsigned i = 0; i != StringToks.size(); ++i)
Chris Lattner5b183d82006-11-10 05:03:26 +00001537 StringTokLocs.push_back(StringToks[i].getLocation());
Chris Lattner36fc8792008-02-11 00:02:17 +00001538
Richard Smithb8b41d32013-10-07 19:57:58 +00001539 QualType CharTy = Context.CharTy;
Douglas Gregorfb65e592011-07-27 05:40:30 +00001540 StringLiteral::StringKind Kind = StringLiteral::Ascii;
Richard Smithb8b41d32013-10-07 19:57:58 +00001541 if (Literal.isWide()) {
1542 CharTy = Context.getWideCharType();
Douglas Gregorfb65e592011-07-27 05:40:30 +00001543 Kind = StringLiteral::Wide;
Richard Smithb8b41d32013-10-07 19:57:58 +00001544 } else if (Literal.isUTF8()) {
Douglas Gregorfb65e592011-07-27 05:40:30 +00001545 Kind = StringLiteral::UTF8;
Richard Smithb8b41d32013-10-07 19:57:58 +00001546 } else if (Literal.isUTF16()) {
1547 CharTy = Context.Char16Ty;
Douglas Gregorfb65e592011-07-27 05:40:30 +00001548 Kind = StringLiteral::UTF16;
Richard Smithb8b41d32013-10-07 19:57:58 +00001549 } else if (Literal.isUTF32()) {
1550 CharTy = Context.Char32Ty;
Douglas Gregorfb65e592011-07-27 05:40:30 +00001551 Kind = StringLiteral::UTF32;
Richard Smithb8b41d32013-10-07 19:57:58 +00001552 } else if (Literal.isPascal()) {
1553 CharTy = Context.UnsignedCharTy;
1554 }
Douglas Gregorfb65e592011-07-27 05:40:30 +00001555
Richard Smithb8b41d32013-10-07 19:57:58 +00001556 QualType CharTyConst = CharTy;
Douglas Gregoraa1e21d2008-09-12 00:47:35 +00001557 // A C++ string literal has a const-qualified element type (C++ 2.13.4p1).
David Blaikiebbafb8a2012-03-11 07:00:24 +00001558 if (getLangOpts().CPlusPlus || getLangOpts().ConstStrings)
Richard Smithb8b41d32013-10-07 19:57:58 +00001559 CharTyConst.addConst();
Sebastian Redlffbcf962009-01-18 18:53:16 +00001560
Chris Lattner36fc8792008-02-11 00:02:17 +00001561 // Get an array type for the string, according to C99 6.4.5. This includes
1562 // the nul terminator character as well as the string length for pascal
1563 // strings.
Richard Smithb8b41d32013-10-07 19:57:58 +00001564 QualType StrTy = Context.getConstantArrayType(CharTyConst,
Chris Lattnerd42c29f2009-02-26 23:01:51 +00001565 llvm::APInt(32, Literal.GetNumStringChars()+1),
Richard Smithb8b41d32013-10-07 19:57:58 +00001566 ArrayType::Normal, 0);
Mike Stump11289f42009-09-09 15:08:12 +00001567
Joey Gouly561bba22013-11-14 18:26:10 +00001568 // OpenCL v1.1 s6.5.3: a string literal is in the constant address space.
1569 if (getLangOpts().OpenCL) {
1570 StrTy = Context.getAddrSpaceQualType(StrTy, LangAS::opencl_constant);
1571 }
1572
Chris Lattner5b183d82006-11-10 05:03:26 +00001573 // Pass &StringTokLocs[0], StringTokLocs.size() to factory!
Richard Smithc67fdd42012-03-07 08:35:16 +00001574 StringLiteral *Lit = StringLiteral::Create(Context, Literal.GetString(),
1575 Kind, Literal.Pascal, StrTy,
1576 &StringTokLocs[0],
1577 StringTokLocs.size());
1578 if (Literal.getUDSuffix().empty())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001579 return Lit;
Richard Smithc67fdd42012-03-07 08:35:16 +00001580
1581 // We're building a user-defined literal.
1582 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
Richard Smith75b67d62012-03-08 01:34:56 +00001583 SourceLocation UDSuffixLoc =
1584 getUDSuffixLoc(*this, StringTokLocs[Literal.getUDSuffixToken()],
1585 Literal.getUDSuffixOffset());
Richard Smithc67fdd42012-03-07 08:35:16 +00001586
Richard Smithbcc22fc2012-03-09 08:00:36 +00001587 // Make sure we're allowed user-defined literals here.
1588 if (!UDLScope)
1589 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_string_udl));
1590
Richard Smithc67fdd42012-03-07 08:35:16 +00001591 // C++11 [lex.ext]p5: The literal L is treated as a call of the form
1592 // operator "" X (str, len)
1593 QualType SizeType = Context.getSizeType();
Richard Smithb8b41d32013-10-07 19:57:58 +00001594
1595 DeclarationName OpName =
1596 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
1597 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
1598 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
1599
1600 QualType ArgTy[] = {
1601 Context.getArrayDecayedType(StrTy), SizeType
1602 };
1603
1604 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
1605 switch (LookupLiteralOperator(UDLScope, R, ArgTy,
1606 /*AllowRaw*/false, /*AllowTemplate*/false,
1607 /*AllowStringTemplate*/true)) {
1608
1609 case LOLR_Cooked: {
1610 llvm::APInt Len(Context.getIntWidth(SizeType), Literal.GetNumStringChars());
1611 IntegerLiteral *LenArg = IntegerLiteral::Create(Context, Len, SizeType,
1612 StringTokLocs[0]);
1613 Expr *Args[] = { Lit, LenArg };
1614
1615 return BuildLiteralOperatorCall(R, OpNameInfo, Args, StringTokLocs.back());
1616 }
1617
1618 case LOLR_StringTemplate: {
1619 TemplateArgumentListInfo ExplicitArgs;
1620
1621 unsigned CharBits = Context.getIntWidth(CharTy);
1622 bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
1623 llvm::APSInt Value(CharBits, CharIsUnsigned);
1624
1625 TemplateArgument TypeArg(CharTy);
1626 TemplateArgumentLocInfo TypeArgInfo(Context.getTrivialTypeSourceInfo(CharTy));
1627 ExplicitArgs.addArgument(TemplateArgumentLoc(TypeArg, TypeArgInfo));
1628
1629 for (unsigned I = 0, N = Lit->getLength(); I != N; ++I) {
1630 Value = Lit->getCodeUnit(I);
1631 TemplateArgument Arg(Context, Value, CharTy);
1632 TemplateArgumentLocInfo ArgInfo;
1633 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
1634 }
1635 return BuildLiteralOperatorCall(R, OpNameInfo, None, StringTokLocs.back(),
1636 &ExplicitArgs);
1637 }
1638 case LOLR_Raw:
1639 case LOLR_Template:
1640 llvm_unreachable("unexpected literal operator lookup result");
1641 case LOLR_Error:
1642 return ExprError();
1643 }
1644 llvm_unreachable("unexpected literal operator lookup result");
Chris Lattner5b183d82006-11-10 05:03:26 +00001645}
1646
John McCalldadc5752010-08-24 06:29:42 +00001647ExprResult
John McCall7decc9e2010-11-18 06:31:45 +00001648Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
John McCallf4cd4f92011-02-09 01:13:10 +00001649 SourceLocation Loc,
1650 const CXXScopeSpec *SS) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001651 DeclarationNameInfo NameInfo(D->getDeclName(), Loc);
John McCall7decc9e2010-11-18 06:31:45 +00001652 return BuildDeclRefExpr(D, Ty, VK, NameInfo, SS);
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001653}
1654
John McCallf4cd4f92011-02-09 01:13:10 +00001655/// BuildDeclRefExpr - Build an expression that references a
1656/// declaration that does not require a closure capture.
John McCalldadc5752010-08-24 06:29:42 +00001657ExprResult
John McCallf4cd4f92011-02-09 01:13:10 +00001658Sema::BuildDeclRefExpr(ValueDecl *D, QualType Ty, ExprValueKind VK,
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001659 const DeclarationNameInfo &NameInfo,
Larisse Voufo39a1e502013-08-06 01:03:05 +00001660 const CXXScopeSpec *SS, NamedDecl *FoundD,
1661 const TemplateArgumentListInfo *TemplateArgs) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001662 if (getLangOpts().CUDA)
Peter Collingbourne7277fe82011-10-02 23:49:40 +00001663 if (const FunctionDecl *Caller = dyn_cast<FunctionDecl>(CurContext))
1664 if (const FunctionDecl *Callee = dyn_cast<FunctionDecl>(D)) {
Jacques Pienaar5bdd6772014-12-16 20:12:38 +00001665 if (CheckCUDATarget(Caller, Callee)) {
Peter Collingbourne7277fe82011-10-02 23:49:40 +00001666 Diag(NameInfo.getLoc(), diag::err_ref_bad_target)
Jacques Pienaar5bdd6772014-12-16 20:12:38 +00001667 << IdentifyCUDATarget(Callee) << D->getIdentifier()
1668 << IdentifyCUDATarget(Caller);
Peter Collingbourne7277fe82011-10-02 23:49:40 +00001669 Diag(D->getLocation(), diag::note_previous_decl)
1670 << D->getIdentifier();
1671 return ExprError();
1672 }
1673 }
1674
Alexey Bataev07649fb2014-12-16 08:01:48 +00001675 bool RefersToCapturedVariable =
Alexey Bataevf841bd92014-12-16 07:00:22 +00001676 isa<VarDecl>(D) &&
1677 NeedToCaptureVariable(cast<VarDecl>(D), NameInfo.getLoc());
John McCall113bee02012-03-10 09:33:50 +00001678
Larisse Voufo39a1e502013-08-06 01:03:05 +00001679 DeclRefExpr *E;
1680 if (isa<VarTemplateSpecializationDecl>(D)) {
1681 VarTemplateSpecializationDecl *VarSpec =
1682 cast<VarTemplateSpecializationDecl>(D);
1683
Alexey Bataev19acc3d2015-01-12 10:17:46 +00001684 E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1685 : NestedNameSpecifierLoc(),
1686 VarSpec->getTemplateKeywordLoc(), D,
1687 RefersToCapturedVariable, NameInfo.getLoc(), Ty, VK,
1688 FoundD, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001689 } else {
1690 assert(!TemplateArgs && "No template arguments for non-variable"
Alp Tokerf6a24ce2013-12-05 16:25:25 +00001691 " template specialization references");
Alexey Bataev07649fb2014-12-16 08:01:48 +00001692 E = DeclRefExpr::Create(Context, SS ? SS->getWithLocInContext(Context)
1693 : NestedNameSpecifierLoc(),
1694 SourceLocation(), D, RefersToCapturedVariable,
1695 NameInfo, Ty, VK, FoundD);
Larisse Voufo39a1e502013-08-06 01:03:05 +00001696 }
Mike Stump11289f42009-09-09 15:08:12 +00001697
Eli Friedmanfa0df832012-02-02 03:46:19 +00001698 MarkDeclRefReferenced(E);
John McCall086a4642010-11-24 05:12:34 +00001699
Jordan Rose657b5f42012-09-28 22:21:35 +00001700 if (getLangOpts().ObjCARCWeak && isa<VarDecl>(D) &&
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00001701 Ty.getObjCLifetime() == Qualifiers::OCL_Weak &&
1702 !Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, E->getLocStart()))
Fariborz Jahanian6f829e32013-05-21 21:20:26 +00001703 recordUseOfEvaluatedWeak(E);
Jordan Rose657b5f42012-09-28 22:21:35 +00001704
John McCall086a4642010-11-24 05:12:34 +00001705 // Just in case we're building an illegal pointer-to-member.
Richard Smithcaf33902011-10-10 18:28:20 +00001706 FieldDecl *FD = dyn_cast<FieldDecl>(D);
1707 if (FD && FD->isBitField())
John McCall086a4642010-11-24 05:12:34 +00001708 E->setObjectKind(OK_BitField);
1709
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00001710 return E;
Douglas Gregorc7acfdf2009-01-06 05:10:23 +00001711}
1712
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001713/// Decomposes the given name into a DeclarationNameInfo, its location, and
John McCall10eae182009-11-30 22:42:35 +00001714/// possibly a list of template arguments.
1715///
1716/// If this produces template arguments, it is permitted to call
1717/// DecomposeTemplateName.
1718///
1719/// This actually loses a lot of source location information for
1720/// non-standard name kinds; we should consider preserving that in
1721/// some way.
Richard Trieucfc491d2011-08-02 04:35:43 +00001722void
1723Sema::DecomposeUnqualifiedId(const UnqualifiedId &Id,
1724 TemplateArgumentListInfo &Buffer,
1725 DeclarationNameInfo &NameInfo,
1726 const TemplateArgumentListInfo *&TemplateArgs) {
John McCall10eae182009-11-30 22:42:35 +00001727 if (Id.getKind() == UnqualifiedId::IK_TemplateId) {
1728 Buffer.setLAngleLoc(Id.TemplateId->LAngleLoc);
1729 Buffer.setRAngleLoc(Id.TemplateId->RAngleLoc);
1730
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00001731 ASTTemplateArgsPtr TemplateArgsPtr(Id.TemplateId->getTemplateArgs(),
John McCall10eae182009-11-30 22:42:35 +00001732 Id.TemplateId->NumArgs);
Douglas Gregor5476205b2011-06-23 00:49:38 +00001733 translateTemplateArguments(TemplateArgsPtr, Buffer);
John McCall10eae182009-11-30 22:42:35 +00001734
John McCall3e56fd42010-08-23 07:28:44 +00001735 TemplateName TName = Id.TemplateId->Template.get();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00001736 SourceLocation TNameLoc = Id.TemplateId->TemplateNameLoc;
Douglas Gregor5476205b2011-06-23 00:49:38 +00001737 NameInfo = Context.getNameForTemplate(TName, TNameLoc);
John McCall10eae182009-11-30 22:42:35 +00001738 TemplateArgs = &Buffer;
1739 } else {
Douglas Gregor5476205b2011-06-23 00:49:38 +00001740 NameInfo = GetNameFromUnqualifiedId(Id);
Craig Topperc3ec1492014-05-26 06:22:03 +00001741 TemplateArgs = nullptr;
John McCall10eae182009-11-30 22:42:35 +00001742 }
1743}
1744
Kaelyn Takatab16e6322014-11-20 22:06:40 +00001745static void emitEmptyLookupTypoDiagnostic(
1746 const TypoCorrection &TC, Sema &SemaRef, const CXXScopeSpec &SS,
1747 DeclarationName Typo, SourceLocation TypoLoc, ArrayRef<Expr *> Args,
1748 unsigned DiagnosticID, unsigned DiagnosticSuggestID) {
1749 DeclContext *Ctx =
1750 SS.isEmpty() ? nullptr : SemaRef.computeDeclContext(SS, false);
1751 if (!TC) {
1752 // Emit a special diagnostic for failed member lookups.
1753 // FIXME: computing the declaration context might fail here (?)
1754 if (Ctx)
1755 SemaRef.Diag(TypoLoc, diag::err_no_member) << Typo << Ctx
1756 << SS.getRange();
1757 else
1758 SemaRef.Diag(TypoLoc, DiagnosticID) << Typo;
1759 return;
1760 }
1761
1762 std::string CorrectedStr = TC.getAsString(SemaRef.getLangOpts());
1763 bool DroppedSpecifier =
1764 TC.WillReplaceSpecifier() && Typo.getAsString() == CorrectedStr;
1765 unsigned NoteID =
1766 (TC.getCorrectionDecl() && isa<ImplicitParamDecl>(TC.getCorrectionDecl()))
1767 ? diag::note_implicit_param_decl
1768 : diag::note_previous_decl;
1769 if (!Ctx)
1770 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(DiagnosticSuggestID) << Typo,
1771 SemaRef.PDiag(NoteID));
1772 else
1773 SemaRef.diagnoseTypo(TC, SemaRef.PDiag(diag::err_no_member_suggest)
1774 << Typo << Ctx << DroppedSpecifier
1775 << SS.getRange(),
1776 SemaRef.PDiag(NoteID));
1777}
1778
John McCalld681c392009-12-16 08:11:27 +00001779/// Diagnose an empty lookup.
1780///
1781/// \return false if new lookup candidates were found
Kaelyn Takata89c881b2014-10-27 18:07:29 +00001782bool
1783Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
1784 std::unique_ptr<CorrectionCandidateCallback> CCC,
1785 TemplateArgumentListInfo *ExplicitTemplateArgs,
Kaelyn Takatab16e6322014-11-20 22:06:40 +00001786 ArrayRef<Expr *> Args, TypoExpr **Out) {
John McCalld681c392009-12-16 08:11:27 +00001787 DeclarationName Name = R.getLookupName();
1788
John McCalld681c392009-12-16 08:11:27 +00001789 unsigned diagnostic = diag::err_undeclared_var_use;
Douglas Gregor598b08f2009-12-31 05:20:13 +00001790 unsigned diagnostic_suggest = diag::err_undeclared_var_use_suggest;
John McCalld681c392009-12-16 08:11:27 +00001791 if (Name.getNameKind() == DeclarationName::CXXOperatorName ||
1792 Name.getNameKind() == DeclarationName::CXXLiteralOperatorName ||
Douglas Gregor598b08f2009-12-31 05:20:13 +00001793 Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
John McCalld681c392009-12-16 08:11:27 +00001794 diagnostic = diag::err_undeclared_use;
Douglas Gregor598b08f2009-12-31 05:20:13 +00001795 diagnostic_suggest = diag::err_undeclared_use_suggest;
1796 }
John McCalld681c392009-12-16 08:11:27 +00001797
Douglas Gregor598b08f2009-12-31 05:20:13 +00001798 // If the original lookup was an unqualified lookup, fake an
1799 // unqualified lookup. This is useful when (for example) the
1800 // original lookup would not have found something because it was a
1801 // dependent name.
David Blaikiec4c0e8a2012-05-28 01:26:45 +00001802 DeclContext *DC = (SS.isEmpty() && !CallsUndergoingInstantiation.empty())
Craig Topperc3ec1492014-05-26 06:22:03 +00001803 ? CurContext : nullptr;
Francois Pichetde232cb2011-11-25 01:10:54 +00001804 while (DC) {
John McCalld681c392009-12-16 08:11:27 +00001805 if (isa<CXXRecordDecl>(DC)) {
1806 LookupQualifiedName(R, DC);
1807
1808 if (!R.empty()) {
1809 // Don't give errors about ambiguities in this lookup.
1810 R.suppressDiagnostics();
1811
Francois Pichet857f9d62011-11-17 03:44:24 +00001812 // During a default argument instantiation the CurContext points
1813 // to a CXXMethodDecl; but we can't apply a this-> fixit inside a
1814 // function parameter list, hence add an explicit check.
1815 bool isDefaultArgument = !ActiveTemplateInstantiations.empty() &&
1816 ActiveTemplateInstantiations.back().Kind ==
1817 ActiveTemplateInstantiation::DefaultFunctionArgumentInstantiation;
John McCalld681c392009-12-16 08:11:27 +00001818 CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext);
1819 bool isInstance = CurMethod &&
1820 CurMethod->isInstance() &&
Francois Pichet857f9d62011-11-17 03:44:24 +00001821 DC == CurMethod->getParent() && !isDefaultArgument;
1822
John McCalld681c392009-12-16 08:11:27 +00001823
1824 // Give a code modification hint to insert 'this->'.
1825 // TODO: fixit for inserting 'Base<T>::' in the other cases.
1826 // Actually quite difficult!
Alp Tokerbfa39342014-01-14 12:51:41 +00001827 if (getLangOpts().MSVCCompat)
Reid Kleckner10ca24c2014-06-11 00:01:28 +00001828 diagnostic = diag::ext_found_via_dependent_bases_lookup;
Nick Lewyckyc96c37f2010-07-06 19:51:49 +00001829 if (isInstance) {
Nico Weber3c10fb12012-06-22 16:39:39 +00001830 Diag(R.getNameLoc(), diagnostic) << Name
1831 << FixItHint::CreateInsertion(R.getNameLoc(), "this->");
Nick Lewyckyc96c37f2010-07-06 19:51:49 +00001832 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(
1833 CallsUndergoingInstantiation.back()->getCallee());
Nico Weber3c10fb12012-06-22 16:39:39 +00001834
Nico Weber3c10fb12012-06-22 16:39:39 +00001835 CXXMethodDecl *DepMethod;
Douglas Gregor89c0a912013-03-26 22:43:55 +00001836 if (CurMethod->isDependentContext())
1837 DepMethod = CurMethod;
1838 else if (CurMethod->getTemplatedKind() ==
Nico Weber3c10fb12012-06-22 16:39:39 +00001839 FunctionDecl::TK_FunctionTemplateSpecialization)
1840 DepMethod = cast<CXXMethodDecl>(CurMethod->getPrimaryTemplate()->
1841 getInstantiatedFromMemberTemplate()->getTemplatedDecl());
1842 else
1843 DepMethod = cast<CXXMethodDecl>(
1844 CurMethod->getInstantiatedFromMemberFunction());
1845 assert(DepMethod && "No template pattern found");
1846
1847 QualType DepThisType = DepMethod->getThisType(Context);
1848 CheckCXXThisCapture(R.getNameLoc());
1849 CXXThisExpr *DepThis = new (Context) CXXThisExpr(
1850 R.getNameLoc(), DepThisType, false);
1851 TemplateArgumentListInfo TList;
1852 if (ULE->hasExplicitTemplateArgs())
1853 ULE->copyTemplateArgumentsInto(TList);
1854
1855 CXXScopeSpec SS;
1856 SS.Adopt(ULE->getQualifierLoc());
1857 CXXDependentScopeMemberExpr *DepExpr =
1858 CXXDependentScopeMemberExpr::Create(
1859 Context, DepThis, DepThisType, true, SourceLocation(),
1860 SS.getWithLocInContext(Context),
Craig Topperc3ec1492014-05-26 06:22:03 +00001861 ULE->getTemplateKeywordLoc(), nullptr,
Nico Weber3c10fb12012-06-22 16:39:39 +00001862 R.getLookupNameInfo(),
Craig Topperc3ec1492014-05-26 06:22:03 +00001863 ULE->hasExplicitTemplateArgs() ? &TList : nullptr);
Nico Weber3c10fb12012-06-22 16:39:39 +00001864 CallsUndergoingInstantiation.back()->setCallee(DepExpr);
Nick Lewyckyc96c37f2010-07-06 19:51:49 +00001865 } else {
John McCalld681c392009-12-16 08:11:27 +00001866 Diag(R.getNameLoc(), diagnostic) << Name;
Nick Lewyckyc96c37f2010-07-06 19:51:49 +00001867 }
John McCalld681c392009-12-16 08:11:27 +00001868
1869 // Do we really want to note all of these?
1870 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
1871 Diag((*I)->getLocation(), diag::note_dependent_var_use);
1872
Francois Pichet857f9d62011-11-17 03:44:24 +00001873 // Return true if we are inside a default argument instantiation
1874 // and the found name refers to an instance member function, otherwise
1875 // the function calling DiagnoseEmptyLookup will try to create an
1876 // implicit member call and this is wrong for default argument.
1877 if (isDefaultArgument && ((*R.begin())->isCXXInstanceMember())) {
1878 Diag(R.getNameLoc(), diag::err_member_call_without_object);
1879 return true;
1880 }
1881
John McCalld681c392009-12-16 08:11:27 +00001882 // Tell the callee to try to recover.
1883 return false;
1884 }
Douglas Gregor86b8d9f2010-08-09 22:38:14 +00001885
1886 R.clear();
John McCalld681c392009-12-16 08:11:27 +00001887 }
Francois Pichetde232cb2011-11-25 01:10:54 +00001888
1889 // In Microsoft mode, if we are performing lookup from within a friend
1890 // function definition declared at class scope then we must set
1891 // DC to the lexical parent to be able to search into the parent
1892 // class.
Alp Tokerbfa39342014-01-14 12:51:41 +00001893 if (getLangOpts().MSVCCompat && isa<FunctionDecl>(DC) &&
Francois Pichetde232cb2011-11-25 01:10:54 +00001894 cast<FunctionDecl>(DC)->getFriendObjectKind() &&
1895 DC->getLexicalParent()->isRecord())
1896 DC = DC->getLexicalParent();
1897 else
1898 DC = DC->getParent();
John McCalld681c392009-12-16 08:11:27 +00001899 }
1900
Douglas Gregor598b08f2009-12-31 05:20:13 +00001901 // We didn't find anything, so try to correct for a typo.
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001902 TypoCorrection Corrected;
Kaelyn Takatab16e6322014-11-20 22:06:40 +00001903 if (S && Out) {
1904 SourceLocation TypoLoc = R.getNameLoc();
1905 assert(!ExplicitTemplateArgs &&
1906 "Diagnosing an empty lookup with explicit template args!");
1907 *Out = CorrectTypoDelayed(
1908 R.getLookupNameInfo(), R.getLookupKind(), S, &SS, std::move(CCC),
1909 [=](const TypoCorrection &TC) {
1910 emitEmptyLookupTypoDiagnostic(TC, *this, SS, Name, TypoLoc, Args,
1911 diagnostic, diagnostic_suggest);
1912 },
1913 nullptr, CTK_ErrorRecovery);
1914 if (*Out)
1915 return true;
1916 } else if (S && (Corrected =
1917 CorrectTypo(R.getLookupNameInfo(), R.getLookupKind(), S,
1918 &SS, std::move(CCC), CTK_ErrorRecovery))) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001919 std::string CorrectedStr(Corrected.getAsString(getLangOpts()));
Richard Smithf9b15102013-08-17 00:46:16 +00001920 bool DroppedSpecifier =
Kaelyn Uhrain10413a42013-07-02 23:47:44 +00001921 Corrected.WillReplaceSpecifier() && Name.getAsString() == CorrectedStr;
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001922 R.setLookupName(Corrected.getCorrection());
1923
Richard Smithf9b15102013-08-17 00:46:16 +00001924 bool AcceptableWithRecovery = false;
1925 bool AcceptableWithoutRecovery = false;
1926 NamedDecl *ND = Corrected.getCorrectionDecl();
1927 if (ND) {
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00001928 if (Corrected.isOverloaded()) {
Richard Smith100b24a2014-04-17 01:52:14 +00001929 OverloadCandidateSet OCS(R.getNameLoc(),
1930 OverloadCandidateSet::CSK_Normal);
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00001931 OverloadCandidateSet::iterator Best;
1932 for (TypoCorrection::decl_iterator CD = Corrected.begin(),
1933 CDEnd = Corrected.end();
1934 CD != CDEnd; ++CD) {
Kaelyn Uhrain62422202011-08-08 17:35:31 +00001935 if (FunctionTemplateDecl *FTD =
Kaelyn Uhrain42830922011-08-05 00:09:52 +00001936 dyn_cast<FunctionTemplateDecl>(*CD))
1937 AddTemplateOverloadCandidate(
1938 FTD, DeclAccessPair::make(FTD, AS_none), ExplicitTemplateArgs,
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00001939 Args, OCS);
Kaelyn Uhrain62422202011-08-08 17:35:31 +00001940 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD))
1941 if (!ExplicitTemplateArgs || ExplicitTemplateArgs->size() == 0)
1942 AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none),
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00001943 Args, OCS);
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00001944 }
1945 switch (OCS.BestViableFunction(*this, R.getNameLoc(), Best)) {
Richard Smithf9b15102013-08-17 00:46:16 +00001946 case OR_Success:
1947 ND = Best->Function;
1948 Corrected.setCorrectionDecl(ND);
1949 break;
1950 default:
1951 // FIXME: Arbitrarily pick the first declaration for the note.
1952 Corrected.setCorrectionDecl(ND);
1953 break;
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00001954 }
1955 }
Douglas Gregorc2fa1692011-06-28 16:20:02 +00001956 R.addDecl(ND);
Nick Lewycky9ea8efa2014-06-23 22:57:51 +00001957 if (getLangOpts().CPlusPlus && ND->isCXXClassMember()) {
1958 CXXRecordDecl *Record = nullptr;
1959 if (Corrected.getCorrectionSpecifier()) {
1960 const Type *Ty = Corrected.getCorrectionSpecifier()->getAsType();
1961 Record = Ty->getAsCXXRecordDecl();
1962 }
1963 if (!Record)
1964 Record = cast<CXXRecordDecl>(
1965 ND->getDeclContext()->getRedeclContext());
1966 R.setNamingClass(Record);
1967 }
Ted Kremenekc6ebda12013-02-21 21:40:44 +00001968
Richard Smithf9b15102013-08-17 00:46:16 +00001969 AcceptableWithRecovery =
1970 isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND);
1971 // FIXME: If we ended up with a typo for a type name or
1972 // Objective-C class name, we're in trouble because the parser
1973 // is in the wrong place to recover. Suggest the typo
1974 // correction, but don't make it a fix-it since we're not going
1975 // to recover well anyway.
1976 AcceptableWithoutRecovery =
1977 isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001978 } else {
Alexis Huntc46382e2010-04-28 23:02:27 +00001979 // FIXME: We found a keyword. Suggest it, but don't provide a fix-it
Douglas Gregor280e1ee2010-04-14 20:04:41 +00001980 // because we aren't able to recover.
Richard Smithf9b15102013-08-17 00:46:16 +00001981 AcceptableWithoutRecovery = true;
1982 }
1983
1984 if (AcceptableWithRecovery || AcceptableWithoutRecovery) {
1985 unsigned NoteID = (Corrected.getCorrectionDecl() &&
1986 isa<ImplicitParamDecl>(Corrected.getCorrectionDecl()))
1987 ? diag::note_implicit_param_decl
1988 : diag::note_previous_decl;
Douglas Gregor25363982010-01-01 00:15:04 +00001989 if (SS.isEmpty())
Richard Smithf9b15102013-08-17 00:46:16 +00001990 diagnoseTypo(Corrected, PDiag(diagnostic_suggest) << Name,
1991 PDiag(NoteID), AcceptableWithRecovery);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00001992 else
Richard Smithf9b15102013-08-17 00:46:16 +00001993 diagnoseTypo(Corrected, PDiag(diag::err_no_member_suggest)
1994 << Name << computeDeclContext(SS, false)
1995 << DroppedSpecifier << SS.getRange(),
1996 PDiag(NoteID), AcceptableWithRecovery);
1997
1998 // Tell the callee whether to try to recover.
1999 return !AcceptableWithRecovery;
Douglas Gregor25363982010-01-01 00:15:04 +00002000 }
Douglas Gregor598b08f2009-12-31 05:20:13 +00002001 }
Douglas Gregorc2fa1692011-06-28 16:20:02 +00002002 R.clear();
Douglas Gregor598b08f2009-12-31 05:20:13 +00002003
2004 // Emit a special diagnostic for failed member lookups.
2005 // FIXME: computing the declaration context might fail here (?)
2006 if (!SS.isEmpty()) {
2007 Diag(R.getNameLoc(), diag::err_no_member)
2008 << Name << computeDeclContext(SS, false)
2009 << SS.getRange();
2010 return true;
2011 }
2012
John McCalld681c392009-12-16 08:11:27 +00002013 // Give up, we can't recover.
2014 Diag(R.getNameLoc(), diagnostic) << Name;
2015 return true;
2016}
2017
Reid Kleckner10ca24c2014-06-11 00:01:28 +00002018/// In Microsoft mode, if we are inside a template class whose parent class has
2019/// dependent base classes, and we can't resolve an unqualified identifier, then
2020/// assume the identifier is a member of a dependent base class. We can only
2021/// recover successfully in static methods, instance methods, and other contexts
2022/// where 'this' is available. This doesn't precisely match MSVC's
2023/// instantiation model, but it's close enough.
2024static Expr *
2025recoverFromMSUnqualifiedLookup(Sema &S, ASTContext &Context,
2026 DeclarationNameInfo &NameInfo,
2027 SourceLocation TemplateKWLoc,
2028 const TemplateArgumentListInfo *TemplateArgs) {
2029 // Only try to recover from lookup into dependent bases in static methods or
2030 // contexts where 'this' is available.
2031 QualType ThisType = S.getCurrentThisType();
2032 const CXXRecordDecl *RD = nullptr;
2033 if (!ThisType.isNull())
2034 RD = ThisType->getPointeeType()->getAsCXXRecordDecl();
2035 else if (auto *MD = dyn_cast<CXXMethodDecl>(S.CurContext))
2036 RD = MD->getParent();
2037 if (!RD || !RD->hasAnyDependentBases())
2038 return nullptr;
2039
2040 // Diagnose this as unqualified lookup into a dependent base class. If 'this'
2041 // is available, suggest inserting 'this->' as a fixit.
2042 SourceLocation Loc = NameInfo.getLoc();
Reid Kleckner13a97992014-06-11 21:57:15 +00002043 auto DB = S.Diag(Loc, diag::ext_undeclared_unqual_id_with_dependent_base);
2044 DB << NameInfo.getName() << RD;
Reid Kleckner10ca24c2014-06-11 00:01:28 +00002045
2046 if (!ThisType.isNull()) {
2047 DB << FixItHint::CreateInsertion(Loc, "this->");
2048 return CXXDependentScopeMemberExpr::Create(
2049 Context, /*This=*/nullptr, ThisType, /*IsArrow=*/true,
2050 /*Op=*/SourceLocation(), NestedNameSpecifierLoc(), TemplateKWLoc,
2051 /*FirstQualifierInScope=*/nullptr, NameInfo, TemplateArgs);
2052 }
2053
2054 // Synthesize a fake NNS that points to the derived class. This will
2055 // perform name lookup during template instantiation.
2056 CXXScopeSpec SS;
2057 auto *NNS =
2058 NestedNameSpecifier::Create(Context, nullptr, true, RD->getTypeForDecl());
2059 SS.MakeTrivial(Context, NNS, SourceRange(Loc, Loc));
2060 return DependentScopeDeclRefExpr::Create(
2061 Context, SS.getWithLocInContext(Context), TemplateKWLoc, NameInfo,
2062 TemplateArgs);
2063}
2064
Kaelyn Takata89c881b2014-10-27 18:07:29 +00002065ExprResult
2066Sema::ActOnIdExpression(Scope *S, CXXScopeSpec &SS,
2067 SourceLocation TemplateKWLoc, UnqualifiedId &Id,
2068 bool HasTrailingLParen, bool IsAddressOfOperand,
2069 std::unique_ptr<CorrectionCandidateCallback> CCC,
Kaelyn Takatab16e6322014-11-20 22:06:40 +00002070 bool IsInlineAsmIdentifier, Token *KeywordReplacement) {
Richard Trieuba63ce62011-09-09 01:45:06 +00002071 assert(!(IsAddressOfOperand && HasTrailingLParen) &&
John McCalle66edc12009-11-24 19:00:30 +00002072 "cannot be direct & operand and have a trailing lparen");
John McCalle66edc12009-11-24 19:00:30 +00002073 if (SS.isInvalid())
Douglas Gregored8f2882009-01-30 01:04:22 +00002074 return ExprError();
Douglas Gregor90a1a652009-03-19 17:26:29 +00002075
John McCall10eae182009-11-30 22:42:35 +00002076 TemplateArgumentListInfo TemplateArgsBuffer;
John McCalle66edc12009-11-24 19:00:30 +00002077
2078 // Decompose the UnqualifiedId into the following data.
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002079 DeclarationNameInfo NameInfo;
John McCalle66edc12009-11-24 19:00:30 +00002080 const TemplateArgumentListInfo *TemplateArgs;
Douglas Gregor5476205b2011-06-23 00:49:38 +00002081 DecomposeUnqualifiedId(Id, TemplateArgsBuffer, NameInfo, TemplateArgs);
Douglas Gregor90a1a652009-03-19 17:26:29 +00002082
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002083 DeclarationName Name = NameInfo.getName();
Douglas Gregor4ea80432008-11-18 15:03:34 +00002084 IdentifierInfo *II = Name.getAsIdentifierInfo();
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002085 SourceLocation NameLoc = NameInfo.getLoc();
John McCalld14a8642009-11-21 08:51:07 +00002086
John McCalle66edc12009-11-24 19:00:30 +00002087 // C++ [temp.dep.expr]p3:
2088 // An id-expression is type-dependent if it contains:
Douglas Gregorea0a0a92010-01-11 18:40:55 +00002089 // -- an identifier that was declared with a dependent type,
2090 // (note: handled after lookup)
2091 // -- a template-id that is dependent,
2092 // (note: handled in BuildTemplateIdExpr)
2093 // -- a conversion-function-id that specifies a dependent type,
John McCalle66edc12009-11-24 19:00:30 +00002094 // -- a nested-name-specifier that contains a class-name that
2095 // names a dependent type.
2096 // Determine whether this is a member of an unknown specialization;
2097 // we need to handle these differently.
Eli Friedman964dbda2010-08-06 23:41:47 +00002098 bool DependentID = false;
2099 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName &&
2100 Name.getCXXNameType()->isDependentType()) {
2101 DependentID = true;
2102 } else if (SS.isSet()) {
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00002103 if (DeclContext *DC = computeDeclContext(SS, false)) {
Eli Friedman964dbda2010-08-06 23:41:47 +00002104 if (RequireCompleteDeclContext(SS, DC))
2105 return ExprError();
Eli Friedman964dbda2010-08-06 23:41:47 +00002106 } else {
2107 DependentID = true;
2108 }
2109 }
2110
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00002111 if (DependentID)
Abramo Bagnara7945c982012-01-27 09:46:47 +00002112 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2113 IsAddressOfOperand, TemplateArgs);
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00002114
John McCalle66edc12009-11-24 19:00:30 +00002115 // Perform the required lookup.
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +00002116 LookupResult R(*this, NameInfo,
2117 (Id.getKind() == UnqualifiedId::IK_ImplicitSelfParam)
2118 ? LookupObjCImplicitSelfParam : LookupOrdinaryName);
John McCalle66edc12009-11-24 19:00:30 +00002119 if (TemplateArgs) {
Douglas Gregor3e51e172010-05-20 20:58:56 +00002120 // Lookup the template name again to correctly establish the context in
2121 // which it was found. This is really unfortunate as we already did the
2122 // lookup to determine that it was a template name in the first place. If
2123 // this becomes a performance hit, we can work harder to preserve those
2124 // results until we get here but it's likely not worth it.
Douglas Gregor786123d2010-05-21 23:18:07 +00002125 bool MemberOfUnknownSpecialization;
2126 LookupTemplateName(R, S, SS, QualType(), /*EnteringContext=*/false,
2127 MemberOfUnknownSpecialization);
Douglas Gregora5226932011-02-04 13:35:07 +00002128
2129 if (MemberOfUnknownSpecialization ||
2130 (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation))
Abramo Bagnara7945c982012-01-27 09:46:47 +00002131 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2132 IsAddressOfOperand, TemplateArgs);
John McCalle66edc12009-11-24 19:00:30 +00002133 } else {
Benjamin Kramer46921442012-01-20 14:57:34 +00002134 bool IvarLookupFollowUp = II && !SS.isSet() && getCurMethodDecl();
Fariborz Jahanian6fada5b2010-01-12 23:58:59 +00002135 LookupParsedName(R, S, &SS, !IvarLookupFollowUp);
Mike Stump11289f42009-09-09 15:08:12 +00002136
Douglas Gregora5226932011-02-04 13:35:07 +00002137 // If the result might be in a dependent base class, this is a dependent
2138 // id-expression.
2139 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
Abramo Bagnara7945c982012-01-27 09:46:47 +00002140 return ActOnDependentIdExpression(SS, TemplateKWLoc, NameInfo,
2141 IsAddressOfOperand, TemplateArgs);
2142
John McCalle66edc12009-11-24 19:00:30 +00002143 // If this reference is in an Objective-C method, then we need to do
2144 // some special Objective-C lookup, too.
Fariborz Jahanian6fada5b2010-01-12 23:58:59 +00002145 if (IvarLookupFollowUp) {
John McCalldadc5752010-08-24 06:29:42 +00002146 ExprResult E(LookupInObjCMethod(R, S, II, true));
John McCalle66edc12009-11-24 19:00:30 +00002147 if (E.isInvalid())
2148 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00002149
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002150 if (Expr *Ex = E.getAs<Expr>())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002151 return Ex;
Steve Naroffebf4cb42008-06-02 23:03:37 +00002152 }
Chris Lattner59a25942008-03-31 00:36:02 +00002153 }
Douglas Gregorf15f5d32009-02-16 19:28:42 +00002154
John McCalle66edc12009-11-24 19:00:30 +00002155 if (R.isAmbiguous())
2156 return ExprError();
2157
Reid Kleckner59148b32014-06-09 23:16:24 +00002158 // This could be an implicitly declared function reference (legal in C90,
2159 // extension in C99, forbidden in C++).
2160 if (R.empty() && HasTrailingLParen && II && !getLangOpts().CPlusPlus) {
2161 NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *II, S);
2162 if (D) R.addDecl(D);
2163 }
2164
Douglas Gregor171c45a2009-02-18 21:56:37 +00002165 // Determine whether this name might be a candidate for
2166 // argument-dependent lookup.
John McCalle66edc12009-11-24 19:00:30 +00002167 bool ADL = UseArgumentDependentLookup(SS, R, HasTrailingLParen);
Douglas Gregor171c45a2009-02-18 21:56:37 +00002168
John McCalle66edc12009-11-24 19:00:30 +00002169 if (R.empty() && !ADL) {
Reid Kleckner59148b32014-06-09 23:16:24 +00002170 if (SS.isEmpty() && getLangOpts().MSVCCompat) {
Reid Kleckner10ca24c2014-06-11 00:01:28 +00002171 if (Expr *E = recoverFromMSUnqualifiedLookup(*this, Context, NameInfo,
2172 TemplateKWLoc, TemplateArgs))
2173 return E;
John McCalle66edc12009-11-24 19:00:30 +00002174 }
2175
Nikola Smiljanic1c125682014-07-09 05:42:35 +00002176 // Don't diagnose an empty lookup for inline assembly.
Reid Kleckner59148b32014-06-09 23:16:24 +00002177 if (IsInlineAsmIdentifier)
2178 return ExprError();
2179
John McCalle66edc12009-11-24 19:00:30 +00002180 // If this name wasn't predeclared and if this is not a function
2181 // call, diagnose the problem.
Kaelyn Takatab16e6322014-11-20 22:06:40 +00002182 TypoExpr *TE = nullptr;
2183 auto DefaultValidator = llvm::make_unique<CorrectionCandidateCallback>(
2184 II, SS.isValid() ? SS.getScopeRep() : nullptr);
Kaelyn Takata89c881b2014-10-27 18:07:29 +00002185 DefaultValidator->IsAddressOfOperand = IsAddressOfOperand;
Nick Lewycky9ea8efa2014-06-23 22:57:51 +00002186 assert((!CCC || CCC->IsAddressOfOperand == IsAddressOfOperand) &&
2187 "Typo correction callback misconfigured");
Kaelyn Takatab16e6322014-11-20 22:06:40 +00002188 if (CCC) {
2189 // Make sure the callback knows what the typo being diagnosed is.
2190 CCC->setTypoName(II);
2191 if (SS.isValid())
2192 CCC->setTypoNNS(SS.getScopeRep());
2193 }
Kaelyn Takata15867822014-11-21 18:48:04 +00002194 if (DiagnoseEmptyLookup(S, SS, R,
2195 CCC ? std::move(CCC) : std::move(DefaultValidator),
2196 nullptr, None, &TE)) {
Kaelyn Takatab16e6322014-11-20 22:06:40 +00002197 if (TE && KeywordReplacement) {
2198 auto &State = getTypoExprState(TE);
2199 auto BestTC = State.Consumer->getNextCorrection();
2200 if (BestTC.isKeyword()) {
2201 auto *II = BestTC.getCorrectionAsIdentifierInfo();
2202 if (State.DiagHandler)
2203 State.DiagHandler(BestTC);
2204 KeywordReplacement->startToken();
2205 KeywordReplacement->setKind(II->getTokenID());
2206 KeywordReplacement->setIdentifierInfo(II);
2207 KeywordReplacement->setLocation(BestTC.getCorrectionRange().getBegin());
2208 // Clean up the state associated with the TypoExpr, since it has
2209 // now been diagnosed (without a call to CorrectDelayedTyposInExpr).
2210 clearDelayedTypo(TE);
2211 // Signal that a correction to a keyword was performed by returning a
2212 // valid-but-null ExprResult.
2213 return (Expr*)nullptr;
2214 }
2215 State.Consumer->resetCorrectionStream();
2216 }
2217 return TE ? TE : ExprError();
2218 }
Francois Pichetd8e4e412011-09-24 10:38:05 +00002219
Reid Kleckner59148b32014-06-09 23:16:24 +00002220 assert(!R.empty() &&
2221 "DiagnoseEmptyLookup returned false but added no results");
2222
2223 // If we found an Objective-C instance variable, let
2224 // LookupInObjCMethod build the appropriate expression to
2225 // reference the ivar.
2226 if (ObjCIvarDecl *Ivar = R.getAsSingle<ObjCIvarDecl>()) {
2227 R.clear();
2228 ExprResult E(LookupInObjCMethod(R, S, Ivar->getIdentifier()));
2229 // In a hopelessly buggy code, Objective-C instance variable
2230 // lookup fails and no expression will be built to reference it.
2231 if (!E.isInvalid() && !E.get())
Chad Rosierb9aff1e2013-05-24 18:32:55 +00002232 return ExprError();
Reid Kleckner59148b32014-06-09 23:16:24 +00002233 return E;
Steve Naroff92e30f82007-04-02 22:35:25 +00002234 }
Chris Lattner17ed4872006-11-20 04:58:19 +00002235 }
Mike Stump11289f42009-09-09 15:08:12 +00002236
John McCalle66edc12009-11-24 19:00:30 +00002237 // This is guaranteed from this point on.
2238 assert(!R.empty() || ADL);
2239
John McCall2d74de92009-12-01 22:10:20 +00002240 // Check whether this might be a C++ implicit instance member access.
John McCall24d18942010-08-24 22:52:39 +00002241 // C++ [class.mfct.non-static]p3:
2242 // When an id-expression that is not part of a class member access
2243 // syntax and not used to form a pointer to member is used in the
2244 // body of a non-static member function of class X, if name lookup
2245 // resolves the name in the id-expression to a non-static non-type
2246 // member of some class C, the id-expression is transformed into a
2247 // class member access expression using (*this) as the
2248 // postfix-expression to the left of the . operator.
John McCall8d08b9b2010-08-27 09:08:28 +00002249 //
2250 // But we don't actually need to do this for '&' operands if R
2251 // resolved to a function or overloaded function set, because the
2252 // expression is ill-formed if it actually works out to be a
2253 // non-static member function:
2254 //
2255 // C++ [expr.ref]p4:
2256 // Otherwise, if E1.E2 refers to a non-static member function. . .
2257 // [t]he expression can be used only as the left-hand operand of a
2258 // member function call.
2259 //
2260 // There are other safeguards against such uses, but it's important
2261 // to get this right here so that we don't end up making a
2262 // spuriously dependent expression if we're inside a dependent
2263 // instance method.
John McCall57500772009-12-16 12:17:52 +00002264 if (!R.empty() && (*R.begin())->isCXXClassMember()) {
John McCall8d08b9b2010-08-27 09:08:28 +00002265 bool MightBeImplicitMember;
Richard Trieuba63ce62011-09-09 01:45:06 +00002266 if (!IsAddressOfOperand)
John McCall8d08b9b2010-08-27 09:08:28 +00002267 MightBeImplicitMember = true;
2268 else if (!SS.isEmpty())
2269 MightBeImplicitMember = false;
2270 else if (R.isOverloadedResult())
2271 MightBeImplicitMember = false;
Douglas Gregor1262b062010-08-30 16:00:47 +00002272 else if (R.isUnresolvableResult())
2273 MightBeImplicitMember = true;
John McCall8d08b9b2010-08-27 09:08:28 +00002274 else
Francois Pichet783dd6e2010-11-21 06:08:52 +00002275 MightBeImplicitMember = isa<FieldDecl>(R.getFoundDecl()) ||
Reid Kleckner0a0c8892013-06-19 16:37:23 +00002276 isa<IndirectFieldDecl>(R.getFoundDecl()) ||
2277 isa<MSPropertyDecl>(R.getFoundDecl());
John McCall8d08b9b2010-08-27 09:08:28 +00002278
2279 if (MightBeImplicitMember)
Abramo Bagnara7945c982012-01-27 09:46:47 +00002280 return BuildPossibleImplicitMemberExpr(SS, TemplateKWLoc,
2281 R, TemplateArgs);
John McCallb53bbd42009-11-22 01:44:31 +00002282 }
2283
Larisse Voufo39a1e502013-08-06 01:03:05 +00002284 if (TemplateArgs || TemplateKWLoc.isValid()) {
2285
2286 // In C++1y, if this is a variable template id, then check it
2287 // in BuildTemplateIdExpr().
2288 // The single lookup result must be a variable template declaration.
2289 if (Id.getKind() == UnqualifiedId::IK_TemplateId && Id.TemplateId &&
2290 Id.TemplateId->Kind == TNK_Var_template) {
2291 assert(R.getAsSingle<VarTemplateDecl>() &&
2292 "There should only be one declaration found.");
2293 }
2294
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002295 return BuildTemplateIdExpr(SS, TemplateKWLoc, R, ADL, TemplateArgs);
Larisse Voufo39a1e502013-08-06 01:03:05 +00002296 }
John McCallb53bbd42009-11-22 01:44:31 +00002297
John McCalle66edc12009-11-24 19:00:30 +00002298 return BuildDeclarationNameExpr(SS, R, ADL);
2299}
2300
John McCall10eae182009-11-30 22:42:35 +00002301/// BuildQualifiedDeclarationNameExpr - Build a C++ qualified
2302/// declaration name, generally during template instantiation.
2303/// There's a large number of things which don't need to be done along
2304/// this path.
John McCalldadc5752010-08-24 06:29:42 +00002305ExprResult
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00002306Sema::BuildQualifiedDeclarationNameExpr(CXXScopeSpec &SS,
Richard Smithdb2630f2012-10-21 03:28:35 +00002307 const DeclarationNameInfo &NameInfo,
Reid Kleckner32506ed2014-06-12 23:03:48 +00002308 bool IsAddressOfOperand,
2309 TypeSourceInfo **RecoveryTSI) {
Richard Smith40c180d2012-10-23 19:56:01 +00002310 DeclContext *DC = computeDeclContext(SS, false);
2311 if (!DC)
Abramo Bagnara65f7c3d2012-02-06 14:31:00 +00002312 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00002313 NameInfo, /*TemplateArgs=*/nullptr);
John McCalle66edc12009-11-24 19:00:30 +00002314
John McCall0b66eb32010-05-01 00:40:08 +00002315 if (RequireCompleteDeclContext(SS, DC))
Douglas Gregora02bb342010-04-28 07:04:26 +00002316 return ExprError();
2317
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002318 LookupResult R(*this, NameInfo, LookupOrdinaryName);
John McCalle66edc12009-11-24 19:00:30 +00002319 LookupQualifiedName(R, DC);
2320
2321 if (R.isAmbiguous())
2322 return ExprError();
2323
Richard Smith40c180d2012-10-23 19:56:01 +00002324 if (R.getResultKind() == LookupResult::NotFoundInCurrentInstantiation)
2325 return BuildDependentDeclRefExpr(SS, /*TemplateKWLoc=*/SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00002326 NameInfo, /*TemplateArgs=*/nullptr);
Richard Smith40c180d2012-10-23 19:56:01 +00002327
John McCalle66edc12009-11-24 19:00:30 +00002328 if (R.empty()) {
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002329 Diag(NameInfo.getLoc(), diag::err_no_member)
2330 << NameInfo.getName() << DC << SS.getRange();
John McCalle66edc12009-11-24 19:00:30 +00002331 return ExprError();
2332 }
2333
Reid Kleckner32506ed2014-06-12 23:03:48 +00002334 if (const TypeDecl *TD = R.getAsSingle<TypeDecl>()) {
2335 // Diagnose a missing typename if this resolved unambiguously to a type in
2336 // a dependent context. If we can recover with a type, downgrade this to
2337 // a warning in Microsoft compatibility mode.
2338 unsigned DiagID = diag::err_typename_missing;
2339 if (RecoveryTSI && getLangOpts().MSVCCompat)
2340 DiagID = diag::ext_typename_missing;
2341 SourceLocation Loc = SS.getBeginLoc();
2342 auto D = Diag(Loc, DiagID);
2343 D << SS.getScopeRep() << NameInfo.getName().getAsString()
2344 << SourceRange(Loc, NameInfo.getEndLoc());
2345
2346 // Don't recover if the caller isn't expecting us to or if we're in a SFINAE
2347 // context.
2348 if (!RecoveryTSI)
2349 return ExprError();
2350
2351 // Only issue the fixit if we're prepared to recover.
2352 D << FixItHint::CreateInsertion(Loc, "typename ");
2353
2354 // Recover by pretending this was an elaborated type.
2355 QualType Ty = Context.getTypeDeclType(TD);
2356 TypeLocBuilder TLB;
2357 TLB.pushTypeSpec(Ty).setNameLoc(NameInfo.getLoc());
2358
2359 QualType ET = getElaboratedType(ETK_None, SS, Ty);
2360 ElaboratedTypeLoc QTL = TLB.push<ElaboratedTypeLoc>(ET);
2361 QTL.setElaboratedKeywordLoc(SourceLocation());
2362 QTL.setQualifierLoc(SS.getWithLocInContext(Context));
2363
2364 *RecoveryTSI = TLB.getTypeSourceInfo(Context, ET);
2365
2366 return ExprEmpty();
Reid Kleckner377c1592014-06-10 23:29:48 +00002367 }
2368
Richard Smithdb2630f2012-10-21 03:28:35 +00002369 // Defend against this resolving to an implicit member access. We usually
2370 // won't get here if this might be a legitimate a class member (we end up in
2371 // BuildMemberReferenceExpr instead), but this can be valid if we're forming
2372 // a pointer-to-member or in an unevaluated context in C++11.
2373 if (!R.empty() && (*R.begin())->isCXXClassMember() && !IsAddressOfOperand)
2374 return BuildPossibleImplicitMemberExpr(SS,
2375 /*TemplateKWLoc=*/SourceLocation(),
Craig Topperc3ec1492014-05-26 06:22:03 +00002376 R, /*TemplateArgs=*/nullptr);
Richard Smithdb2630f2012-10-21 03:28:35 +00002377
2378 return BuildDeclarationNameExpr(SS, R, /* ADL */ false);
John McCalle66edc12009-11-24 19:00:30 +00002379}
2380
2381/// LookupInObjCMethod - The parser has read a name in, and Sema has
2382/// detected that we're currently inside an ObjC method. Perform some
2383/// additional lookup.
2384///
2385/// Ideally, most of this would be done by lookup, but there's
2386/// actually quite a lot of extra work involved.
2387///
2388/// Returns a null sentinel to indicate trivial success.
John McCalldadc5752010-08-24 06:29:42 +00002389ExprResult
John McCalle66edc12009-11-24 19:00:30 +00002390Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
Chris Lattnera36ec422010-04-11 08:28:14 +00002391 IdentifierInfo *II, bool AllowBuiltinCreation) {
John McCalle66edc12009-11-24 19:00:30 +00002392 SourceLocation Loc = Lookup.getNameLoc();
Chris Lattner87313662010-04-12 05:10:17 +00002393 ObjCMethodDecl *CurMethod = getCurMethodDecl();
Fariborz Jahanian223ca5c2013-02-18 17:22:23 +00002394
2395 // Check for error condition which is already reported.
2396 if (!CurMethod)
2397 return ExprError();
Alexis Huntc46382e2010-04-28 23:02:27 +00002398
John McCalle66edc12009-11-24 19:00:30 +00002399 // There are two cases to handle here. 1) scoped lookup could have failed,
2400 // in which case we should look for an ivar. 2) scoped lookup could have
2401 // found a decl, but that decl is outside the current instance method (i.e.
2402 // a global variable). In these two cases, we do a lookup for an ivar with
2403 // this name, if the lookup sucedes, we replace it our current decl.
2404
2405 // If we're in a class method, we don't normally want to look for
2406 // ivars. But if we don't find anything else, and there's an
2407 // ivar, that's an error.
Chris Lattner87313662010-04-12 05:10:17 +00002408 bool IsClassMethod = CurMethod->isClassMethod();
John McCalle66edc12009-11-24 19:00:30 +00002409
2410 bool LookForIvars;
2411 if (Lookup.empty())
2412 LookForIvars = true;
2413 else if (IsClassMethod)
2414 LookForIvars = false;
2415 else
2416 LookForIvars = (Lookup.isSingleResult() &&
2417 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod());
Craig Topperc3ec1492014-05-26 06:22:03 +00002418 ObjCInterfaceDecl *IFace = nullptr;
John McCalle66edc12009-11-24 19:00:30 +00002419 if (LookForIvars) {
Chris Lattner87313662010-04-12 05:10:17 +00002420 IFace = CurMethod->getClassInterface();
John McCalle66edc12009-11-24 19:00:30 +00002421 ObjCInterfaceDecl *ClassDeclared;
Craig Topperc3ec1492014-05-26 06:22:03 +00002422 ObjCIvarDecl *IV = nullptr;
Argyrios Kyrtzidis4e8b1362011-10-19 02:25:16 +00002423 if (IFace && (IV = IFace->lookupInstanceVariable(II, ClassDeclared))) {
John McCalle66edc12009-11-24 19:00:30 +00002424 // Diagnose using an ivar in a class method.
2425 if (IsClassMethod)
2426 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2427 << IV->getDeclName());
2428
2429 // If we're referencing an invalid decl, just return this as a silent
2430 // error node. The error diagnostic was already emitted on the decl.
2431 if (IV->isInvalidDecl())
2432 return ExprError();
2433
2434 // Check if referencing a field with __attribute__((deprecated)).
2435 if (DiagnoseUseOfDecl(IV, Loc))
2436 return ExprError();
2437
2438 // Diagnose the use of an ivar outside of the declaring class.
2439 if (IV->getAccessControl() == ObjCIvarDecl::Private &&
Fariborz Jahaniand6cb4a82012-03-07 00:58:41 +00002440 !declaresSameEntity(ClassDeclared, IFace) &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00002441 !getLangOpts().DebuggerSupport)
John McCalle66edc12009-11-24 19:00:30 +00002442 Diag(Loc, diag::error_private_ivar_access) << IV->getDeclName();
2443
2444 // FIXME: This should use a new expr for a direct reference, don't
2445 // turn this into Self->ivar, just return a BareIVarExpr or something.
2446 IdentifierInfo &II = Context.Idents.get("self");
2447 UnqualifiedId SelfName;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002448 SelfName.setIdentifier(&II, SourceLocation());
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +00002449 SelfName.setKind(UnqualifiedId::IK_ImplicitSelfParam);
John McCalle66edc12009-11-24 19:00:30 +00002450 CXXScopeSpec SelfScopeSpec;
Abramo Bagnara7945c982012-01-27 09:46:47 +00002451 SourceLocation TemplateKWLoc;
2452 ExprResult SelfExpr = ActOnIdExpression(S, SelfScopeSpec, TemplateKWLoc,
Douglas Gregora1ed39b2010-09-22 16:33:13 +00002453 SelfName, false, false);
2454 if (SelfExpr.isInvalid())
2455 return ExprError();
2456
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002457 SelfExpr = DefaultLvalueConversion(SelfExpr.get());
John Wiegley01296292011-04-08 18:41:53 +00002458 if (SelfExpr.isInvalid())
2459 return ExprError();
John McCall27584242010-12-06 20:48:59 +00002460
Nick Lewycky45b50522013-02-02 00:25:55 +00002461 MarkAnyDeclReferenced(Loc, IV, true);
Argyrios Kyrtzidis2080d902014-01-03 18:32:18 +00002462
Fariborz Jahaniana5063a62012-08-08 16:41:04 +00002463 ObjCMethodFamily MF = CurMethod->getMethodFamily();
Fariborz Jahaniana934a022013-02-14 19:07:19 +00002464 if (MF != OMF_init && MF != OMF_dealloc && MF != OMF_finalize &&
2465 !IvarBacksCurrentMethodAccessor(IFace, CurMethod, IV))
Fariborz Jahaniana5063a62012-08-08 16:41:04 +00002466 Diag(Loc, diag::warn_direct_ivar_access) << IV->getDeclName();
Jordan Rose657b5f42012-09-28 22:21:35 +00002467
Nico Weber21ad7e52014-07-27 04:09:29 +00002468 ObjCIvarRefExpr *Result = new (Context)
Douglas Gregore83b9562015-07-07 03:57:53 +00002469 ObjCIvarRefExpr(IV, IV->getUsageType(SelfExpr.get()->getType()), Loc,
2470 IV->getLocation(), SelfExpr.get(), true, true);
Jordan Rose657b5f42012-09-28 22:21:35 +00002471
2472 if (getLangOpts().ObjCAutoRefCount) {
2473 if (IV->getType().getObjCLifetime() == Qualifiers::OCL_Weak) {
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00002474 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak, Loc))
Fariborz Jahanian6f829e32013-05-21 21:20:26 +00002475 recordUseOfEvaluatedWeak(Result);
Jordan Rose657b5f42012-09-28 22:21:35 +00002476 }
Fariborz Jahanian4a675082012-10-03 17:55:29 +00002477 if (CurContext->isClosure())
2478 Diag(Loc, diag::warn_implicitly_retains_self)
2479 << FixItHint::CreateInsertion(Loc, "self->");
Jordan Rose657b5f42012-09-28 22:21:35 +00002480 }
2481
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002482 return Result;
John McCalle66edc12009-11-24 19:00:30 +00002483 }
Chris Lattner87313662010-04-12 05:10:17 +00002484 } else if (CurMethod->isInstanceMethod()) {
John McCalle66edc12009-11-24 19:00:30 +00002485 // We should warn if a local variable hides an ivar.
Fariborz Jahanian557fc9a2011-11-08 22:51:27 +00002486 if (ObjCInterfaceDecl *IFace = CurMethod->getClassInterface()) {
2487 ObjCInterfaceDecl *ClassDeclared;
2488 if (ObjCIvarDecl *IV = IFace->lookupInstanceVariable(II, ClassDeclared)) {
2489 if (IV->getAccessControl() != ObjCIvarDecl::Private ||
Douglas Gregor0b144e12011-12-15 00:29:59 +00002490 declaresSameEntity(IFace, ClassDeclared))
Fariborz Jahanian557fc9a2011-11-08 22:51:27 +00002491 Diag(Loc, diag::warn_ivar_use_hidden) << IV->getDeclName();
2492 }
John McCalle66edc12009-11-24 19:00:30 +00002493 }
Fariborz Jahanian028b9e12011-12-20 22:21:08 +00002494 } else if (Lookup.isSingleResult() &&
2495 Lookup.getFoundDecl()->isDefinedOutsideFunctionOrMethod()) {
2496 // If accessing a stand-alone ivar in a class method, this is an error.
2497 if (const ObjCIvarDecl *IV = dyn_cast<ObjCIvarDecl>(Lookup.getFoundDecl()))
2498 return ExprError(Diag(Loc, diag::error_ivar_use_in_class_method)
2499 << IV->getDeclName());
John McCalle66edc12009-11-24 19:00:30 +00002500 }
2501
Fariborz Jahanian6fada5b2010-01-12 23:58:59 +00002502 if (Lookup.empty() && II && AllowBuiltinCreation) {
2503 // FIXME. Consolidate this with similar code in LookupName.
2504 if (unsigned BuiltinID = II->getBuiltinID()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002505 if (!(getLangOpts().CPlusPlus &&
Fariborz Jahanian6fada5b2010-01-12 23:58:59 +00002506 Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))) {
2507 NamedDecl *D = LazilyCreateBuiltin((IdentifierInfo *)II, BuiltinID,
2508 S, Lookup.isForRedeclaration(),
2509 Lookup.getNameLoc());
2510 if (D) Lookup.addDecl(D);
2511 }
2512 }
2513 }
John McCalle66edc12009-11-24 19:00:30 +00002514 // Sentinel value saying that we didn't do anything special.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002515 return ExprResult((Expr *)nullptr);
Douglas Gregor3256d042009-06-30 15:47:41 +00002516}
John McCalld14a8642009-11-21 08:51:07 +00002517
John McCall16df1e52010-03-30 21:47:33 +00002518/// \brief Cast a base object to a member's actual type.
2519///
2520/// Logically this happens in three phases:
2521///
2522/// * First we cast from the base type to the naming class.
2523/// The naming class is the class into which we were looking
2524/// when we found the member; it's the qualifier type if a
2525/// qualifier was provided, and otherwise it's the base type.
2526///
2527/// * Next we cast from the naming class to the declaring class.
2528/// If the member we found was brought into a class's scope by
2529/// a using declaration, this is that class; otherwise it's
2530/// the class declaring the member.
2531///
2532/// * Finally we cast from the declaring class to the "true"
2533/// declaring class of the member. This conversion does not
2534/// obey access control.
John Wiegley01296292011-04-08 18:41:53 +00002535ExprResult
2536Sema::PerformObjectMemberConversion(Expr *From,
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002537 NestedNameSpecifier *Qualifier,
John McCall16df1e52010-03-30 21:47:33 +00002538 NamedDecl *FoundDecl,
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002539 NamedDecl *Member) {
2540 CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Member->getDeclContext());
2541 if (!RD)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002542 return From;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002543
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002544 QualType DestRecordType;
2545 QualType DestType;
2546 QualType FromRecordType;
2547 QualType FromType = From->getType();
2548 bool PointerConversions = false;
2549 if (isa<FieldDecl>(Member)) {
2550 DestRecordType = Context.getCanonicalType(Context.getTypeDeclType(RD));
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002551
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002552 if (FromType->getAs<PointerType>()) {
2553 DestType = Context.getPointerType(DestRecordType);
2554 FromRecordType = FromType->getPointeeType();
2555 PointerConversions = true;
2556 } else {
2557 DestType = DestRecordType;
2558 FromRecordType = FromType;
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00002559 }
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002560 } else if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(Member)) {
2561 if (Method->isStatic())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002562 return From;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002563
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002564 DestType = Method->getThisType(Context);
2565 DestRecordType = DestType->getPointeeType();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002566
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002567 if (FromType->getAs<PointerType>()) {
2568 FromRecordType = FromType->getPointeeType();
2569 PointerConversions = true;
2570 } else {
2571 FromRecordType = FromType;
2572 DestType = DestRecordType;
2573 }
2574 } else {
2575 // No conversion necessary.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002576 return From;
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002577 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002578
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002579 if (DestType->isDependentType() || FromType->isDependentType())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002580 return From;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002581
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002582 // If the unqualified types are the same, no conversion is necessary.
2583 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002584 return From;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002585
John McCall16df1e52010-03-30 21:47:33 +00002586 SourceRange FromRange = From->getSourceRange();
2587 SourceLocation FromLoc = FromRange.getBegin();
2588
Eli Friedmanbe4b3632011-09-27 21:58:52 +00002589 ExprValueKind VK = From->getValueKind();
Sebastian Redlc57d34b2010-07-20 04:20:21 +00002590
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002591 // C++ [class.member.lookup]p8:
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002592 // [...] Ambiguities can often be resolved by qualifying a name with its
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002593 // class name.
2594 //
2595 // If the member was a qualified name and the qualified referred to a
2596 // specific base subobject type, we'll cast to that intermediate type
2597 // first and then to the object in which the member is declared. That allows
2598 // one to resolve ambiguities in, e.g., a diamond-shaped hierarchy such as:
2599 //
2600 // class Base { public: int x; };
2601 // class Derived1 : public Base { };
2602 // class Derived2 : public Base { };
2603 // class VeryDerived : public Derived1, public Derived2 { void f(); };
2604 //
2605 // void VeryDerived::f() {
2606 // x = 17; // error: ambiguous base subobjects
2607 // Derived1::x = 17; // okay, pick the Base subobject of Derived1
2608 // }
David Majnemer13657812013-08-05 04:53:41 +00002609 if (Qualifier && Qualifier->getAsType()) {
John McCall16df1e52010-03-30 21:47:33 +00002610 QualType QType = QualType(Qualifier->getAsType(), 0);
John McCall16df1e52010-03-30 21:47:33 +00002611 assert(QType->isRecordType() && "lookup done with non-record type");
2612
2613 QualType QRecordType = QualType(QType->getAs<RecordType>(), 0);
2614
2615 // In C++98, the qualifier type doesn't actually have to be a base
2616 // type of the object type, in which case we just ignore it.
2617 // Otherwise build the appropriate casts.
2618 if (IsDerivedFrom(FromRecordType, QRecordType)) {
John McCallcf142162010-08-07 06:22:56 +00002619 CXXCastPath BasePath;
John McCall16df1e52010-03-30 21:47:33 +00002620 if (CheckDerivedToBaseConversion(FromRecordType, QRecordType,
Anders Carlssonb78feca2010-04-24 19:22:20 +00002621 FromLoc, FromRange, &BasePath))
John Wiegley01296292011-04-08 18:41:53 +00002622 return ExprError();
John McCall16df1e52010-03-30 21:47:33 +00002623
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002624 if (PointerConversions)
John McCall16df1e52010-03-30 21:47:33 +00002625 QType = Context.getPointerType(QType);
John Wiegley01296292011-04-08 18:41:53 +00002626 From = ImpCastExprToType(From, QType, CK_UncheckedDerivedToBase,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002627 VK, &BasePath).get();
John McCall16df1e52010-03-30 21:47:33 +00002628
2629 FromType = QType;
2630 FromRecordType = QRecordType;
2631
2632 // If the qualifier type was the same as the destination type,
2633 // we're done.
2634 if (Context.hasSameUnqualifiedType(FromRecordType, DestRecordType))
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002635 return From;
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002636 }
2637 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002638
John McCall16df1e52010-03-30 21:47:33 +00002639 bool IgnoreAccess = false;
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002640
John McCall16df1e52010-03-30 21:47:33 +00002641 // If we actually found the member through a using declaration, cast
2642 // down to the using declaration's type.
2643 //
2644 // Pointer equality is fine here because only one declaration of a
2645 // class ever has member declarations.
2646 if (FoundDecl->getDeclContext() != Member->getDeclContext()) {
2647 assert(isa<UsingShadowDecl>(FoundDecl));
2648 QualType URecordType = Context.getTypeDeclType(
2649 cast<CXXRecordDecl>(FoundDecl->getDeclContext()));
2650
2651 // We only need to do this if the naming-class to declaring-class
2652 // conversion is non-trivial.
2653 if (!Context.hasSameUnqualifiedType(FromRecordType, URecordType)) {
2654 assert(IsDerivedFrom(FromRecordType, URecordType));
John McCallcf142162010-08-07 06:22:56 +00002655 CXXCastPath BasePath;
John McCall16df1e52010-03-30 21:47:33 +00002656 if (CheckDerivedToBaseConversion(FromRecordType, URecordType,
Anders Carlssonb78feca2010-04-24 19:22:20 +00002657 FromLoc, FromRange, &BasePath))
John Wiegley01296292011-04-08 18:41:53 +00002658 return ExprError();
Alexis Huntc46382e2010-04-28 23:02:27 +00002659
John McCall16df1e52010-03-30 21:47:33 +00002660 QualType UType = URecordType;
2661 if (PointerConversions)
2662 UType = Context.getPointerType(UType);
John Wiegley01296292011-04-08 18:41:53 +00002663 From = ImpCastExprToType(From, UType, CK_UncheckedDerivedToBase,
Nikola Smiljanic01a75982014-05-29 10:55:11 +00002664 VK, &BasePath).get();
John McCall16df1e52010-03-30 21:47:33 +00002665 FromType = UType;
2666 FromRecordType = URecordType;
2667 }
2668
2669 // We don't do access control for the conversion from the
2670 // declaring class to the true declaring class.
2671 IgnoreAccess = true;
Douglas Gregorcc3f3252010-03-03 23:55:11 +00002672 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002673
John McCallcf142162010-08-07 06:22:56 +00002674 CXXCastPath BasePath;
Anders Carlssonb78feca2010-04-24 19:22:20 +00002675 if (CheckDerivedToBaseConversion(FromRecordType, DestRecordType,
2676 FromLoc, FromRange, &BasePath,
John McCall16df1e52010-03-30 21:47:33 +00002677 IgnoreAccess))
John Wiegley01296292011-04-08 18:41:53 +00002678 return ExprError();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002679
John Wiegley01296292011-04-08 18:41:53 +00002680 return ImpCastExprToType(From, DestType, CK_UncheckedDerivedToBase,
2681 VK, &BasePath);
Fariborz Jahanianbb67b822009-07-29 18:40:24 +00002682}
Douglas Gregor3256d042009-06-30 15:47:41 +00002683
John McCalle66edc12009-11-24 19:00:30 +00002684bool Sema::UseArgumentDependentLookup(const CXXScopeSpec &SS,
John McCallb53bbd42009-11-22 01:44:31 +00002685 const LookupResult &R,
2686 bool HasTrailingLParen) {
John McCalld14a8642009-11-21 08:51:07 +00002687 // Only when used directly as the postfix-expression of a call.
2688 if (!HasTrailingLParen)
2689 return false;
2690
2691 // Never if a scope specifier was provided.
John McCalle66edc12009-11-24 19:00:30 +00002692 if (SS.isSet())
John McCalld14a8642009-11-21 08:51:07 +00002693 return false;
2694
2695 // Only in C++ or ObjC++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002696 if (!getLangOpts().CPlusPlus)
John McCalld14a8642009-11-21 08:51:07 +00002697 return false;
2698
2699 // Turn off ADL when we find certain kinds of declarations during
2700 // normal lookup:
2701 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) {
2702 NamedDecl *D = *I;
2703
2704 // C++0x [basic.lookup.argdep]p3:
2705 // -- a declaration of a class member
2706 // Since using decls preserve this property, we check this on the
2707 // original decl.
John McCall57500772009-12-16 12:17:52 +00002708 if (D->isCXXClassMember())
John McCalld14a8642009-11-21 08:51:07 +00002709 return false;
2710
2711 // C++0x [basic.lookup.argdep]p3:
2712 // -- a block-scope function declaration that is not a
2713 // using-declaration
2714 // NOTE: we also trigger this for function templates (in fact, we
2715 // don't check the decl type at all, since all other decl types
2716 // turn off ADL anyway).
2717 if (isa<UsingShadowDecl>(D))
2718 D = cast<UsingShadowDecl>(D)->getTargetDecl();
Richard Smith541b38b2013-09-20 01:15:31 +00002719 else if (D->getLexicalDeclContext()->isFunctionOrMethod())
John McCalld14a8642009-11-21 08:51:07 +00002720 return false;
2721
2722 // C++0x [basic.lookup.argdep]p3:
2723 // -- a declaration that is neither a function or a function
2724 // template
2725 // And also for builtin functions.
2726 if (isa<FunctionDecl>(D)) {
2727 FunctionDecl *FDecl = cast<FunctionDecl>(D);
2728
2729 // But also builtin functions.
2730 if (FDecl->getBuiltinID() && FDecl->isImplicit())
2731 return false;
2732 } else if (!isa<FunctionTemplateDecl>(D))
2733 return false;
2734 }
2735
2736 return true;
2737}
2738
2739
John McCalld14a8642009-11-21 08:51:07 +00002740/// Diagnoses obvious problems with the use of the given declaration
2741/// as an expression. This is only actually called for lookups that
2742/// were not overloaded, and it doesn't promise that the declaration
2743/// will in fact be used.
2744static bool CheckDeclInExpr(Sema &S, SourceLocation Loc, NamedDecl *D) {
Richard Smithdda56e42011-04-15 14:24:37 +00002745 if (isa<TypedefNameDecl>(D)) {
John McCalld14a8642009-11-21 08:51:07 +00002746 S.Diag(Loc, diag::err_unexpected_typedef) << D->getDeclName();
2747 return true;
2748 }
2749
2750 if (isa<ObjCInterfaceDecl>(D)) {
2751 S.Diag(Loc, diag::err_unexpected_interface) << D->getDeclName();
2752 return true;
2753 }
2754
2755 if (isa<NamespaceDecl>(D)) {
2756 S.Diag(Loc, diag::err_unexpected_namespace) << D->getDeclName();
2757 return true;
2758 }
2759
2760 return false;
2761}
2762
Kaelyn Takata6f71ce22014-11-20 22:06:33 +00002763ExprResult Sema::BuildDeclarationNameExpr(const CXXScopeSpec &SS,
2764 LookupResult &R, bool NeedsADL,
2765 bool AcceptInvalidDecl) {
John McCall3a60c872009-12-08 22:45:53 +00002766 // If this is a single, fully-resolved result and we don't need ADL,
2767 // just build an ordinary singleton decl ref.
Douglas Gregor4b4844f2010-01-29 17:15:43 +00002768 if (!NeedsADL && R.isSingleResult() && !R.getAsSingle<FunctionTemplateDecl>())
Daniel Jasper689ae012013-03-22 10:01:35 +00002769 return BuildDeclarationNameExpr(SS, R.getLookupNameInfo(), R.getFoundDecl(),
Kaelyn Takata6f71ce22014-11-20 22:06:33 +00002770 R.getRepresentativeDecl(), nullptr,
2771 AcceptInvalidDecl);
John McCalld14a8642009-11-21 08:51:07 +00002772
2773 // We only need to check the declaration if there's exactly one
2774 // result, because in the overloaded case the results can only be
2775 // functions and function templates.
John McCallb53bbd42009-11-22 01:44:31 +00002776 if (R.isSingleResult() &&
2777 CheckDeclInExpr(*this, R.getNameLoc(), R.getFoundDecl()))
John McCalld14a8642009-11-21 08:51:07 +00002778 return ExprError();
2779
John McCall58cc69d2010-01-27 01:50:18 +00002780 // Otherwise, just build an unresolved lookup expression. Suppress
2781 // any lookup-related diagnostics; we'll hash these out later, when
2782 // we've picked a target.
2783 R.suppressDiagnostics();
2784
John McCalld14a8642009-11-21 08:51:07 +00002785 UnresolvedLookupExpr *ULE
Douglas Gregora6e053e2010-12-15 01:34:56 +00002786 = UnresolvedLookupExpr::Create(Context, R.getNamingClass(),
Douglas Gregor0da1d432011-02-28 20:01:57 +00002787 SS.getWithLocInContext(Context),
2788 R.getLookupNameInfo(),
Douglas Gregor30a4f4c2010-05-23 18:57:34 +00002789 NeedsADL, R.isOverloadedResult(),
2790 R.begin(), R.end());
John McCalld14a8642009-11-21 08:51:07 +00002791
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00002792 return ULE;
John McCalld14a8642009-11-21 08:51:07 +00002793}
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002794
John McCalld14a8642009-11-21 08:51:07 +00002795/// \brief Complete semantic analysis for a reference to the given declaration.
Larisse Voufo39a1e502013-08-06 01:03:05 +00002796ExprResult Sema::BuildDeclarationNameExpr(
2797 const CXXScopeSpec &SS, const DeclarationNameInfo &NameInfo, NamedDecl *D,
Kaelyn Takata6f71ce22014-11-20 22:06:33 +00002798 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs,
2799 bool AcceptInvalidDecl) {
John McCalld14a8642009-11-21 08:51:07 +00002800 assert(D && "Cannot refer to a NULL declaration");
John McCall283b9012009-11-22 00:44:51 +00002801 assert(!isa<FunctionTemplateDecl>(D) &&
2802 "Cannot refer unambiguously to a function template");
John McCalld14a8642009-11-21 08:51:07 +00002803
Abramo Bagnarad6d2f182010-08-11 22:01:17 +00002804 SourceLocation Loc = NameInfo.getLoc();
John McCalld14a8642009-11-21 08:51:07 +00002805 if (CheckDeclInExpr(*this, Loc, D))
2806 return ExprError();
Steve Narofff1e53692007-03-23 22:27:02 +00002807
Douglas Gregore7488b92009-12-01 16:58:18 +00002808 if (TemplateDecl *Template = dyn_cast<TemplateDecl>(D)) {
2809 // Specifically diagnose references to class templates that are missing
2810 // a template argument list.
Larisse Voufo39a1e502013-08-06 01:03:05 +00002811 Diag(Loc, diag::err_template_decl_ref) << (isa<VarTemplateDecl>(D) ? 1 : 0)
2812 << Template << SS.getRange();
Douglas Gregore7488b92009-12-01 16:58:18 +00002813 Diag(Template->getLocation(), diag::note_template_decl_here);
2814 return ExprError();
2815 }
2816
2817 // Make sure that we're referring to a value.
2818 ValueDecl *VD = dyn_cast<ValueDecl>(D);
2819 if (!VD) {
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00002820 Diag(Loc, diag::err_ref_non_value)
Douglas Gregore7488b92009-12-01 16:58:18 +00002821 << D << SS.getRange();
John McCallb48971d2009-12-18 18:35:10 +00002822 Diag(D->getLocation(), diag::note_declared_at);
Douglas Gregore7488b92009-12-01 16:58:18 +00002823 return ExprError();
2824 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00002825
Douglas Gregor171c45a2009-02-18 21:56:37 +00002826 // Check whether this declaration can be used. Note that we suppress
2827 // this check when we're going to perform argument-dependent lookup
2828 // on this function name, because this might not be the function
2829 // that overload resolution actually selects.
John McCalld14a8642009-11-21 08:51:07 +00002830 if (DiagnoseUseOfDecl(VD, Loc))
Douglas Gregor171c45a2009-02-18 21:56:37 +00002831 return ExprError();
2832
Steve Naroff8de9c3a2008-09-05 22:11:13 +00002833 // Only create DeclRefExpr's for valid Decl's.
Kaelyn Takata6f71ce22014-11-20 22:06:33 +00002834 if (VD->isInvalidDecl() && !AcceptInvalidDecl)
Sebastian Redlffbcf962009-01-18 18:53:16 +00002835 return ExprError();
2836
John McCallf3a88602011-02-03 08:15:49 +00002837 // Handle members of anonymous structs and unions. If we got here,
2838 // and the reference is to a class member indirect field, then this
2839 // must be the subject of a pointer-to-member expression.
2840 if (IndirectFieldDecl *indirectField = dyn_cast<IndirectFieldDecl>(VD))
2841 if (!indirectField->isCXXClassMember())
2842 return BuildAnonymousStructUnionMemberReference(SS, NameInfo.getLoc(),
2843 indirectField);
Francois Pichet783dd6e2010-11-21 06:08:52 +00002844
Eli Friedman9bb33f52012-02-03 02:04:35 +00002845 {
John McCallf4cd4f92011-02-09 01:13:10 +00002846 QualType type = VD->getType();
Daniel Dunbar7c2dc362011-02-10 18:29:28 +00002847 ExprValueKind valueKind = VK_RValue;
John McCallf4cd4f92011-02-09 01:13:10 +00002848
2849 switch (D->getKind()) {
2850 // Ignore all the non-ValueDecl kinds.
2851#define ABSTRACT_DECL(kind)
2852#define VALUE(type, base)
2853#define DECL(type, base) \
2854 case Decl::type:
2855#include "clang/AST/DeclNodes.inc"
2856 llvm_unreachable("invalid value decl kind");
John McCallf4cd4f92011-02-09 01:13:10 +00002857
2858 // These shouldn't make it here.
2859 case Decl::ObjCAtDefsField:
2860 case Decl::ObjCIvar:
2861 llvm_unreachable("forming non-member reference to ivar?");
John McCallf4cd4f92011-02-09 01:13:10 +00002862
2863 // Enum constants are always r-values and never references.
2864 // Unresolved using declarations are dependent.
2865 case Decl::EnumConstant:
2866 case Decl::UnresolvedUsingValue:
2867 valueKind = VK_RValue;
2868 break;
2869
2870 // Fields and indirect fields that got here must be for
2871 // pointer-to-member expressions; we just call them l-values for
2872 // internal consistency, because this subexpression doesn't really
2873 // exist in the high-level semantics.
2874 case Decl::Field:
2875 case Decl::IndirectField:
David Blaikiebbafb8a2012-03-11 07:00:24 +00002876 assert(getLangOpts().CPlusPlus &&
John McCallf4cd4f92011-02-09 01:13:10 +00002877 "building reference to field in C?");
2878
2879 // These can't have reference type in well-formed programs, but
2880 // for internal consistency we do this anyway.
2881 type = type.getNonReferenceType();
2882 valueKind = VK_LValue;
2883 break;
2884
2885 // Non-type template parameters are either l-values or r-values
2886 // depending on the type.
2887 case Decl::NonTypeTemplateParm: {
2888 if (const ReferenceType *reftype = type->getAs<ReferenceType>()) {
2889 type = reftype->getPointeeType();
2890 valueKind = VK_LValue; // even if the parameter is an r-value reference
2891 break;
2892 }
2893
2894 // For non-references, we need to strip qualifiers just in case
2895 // the template parameter was declared as 'const int' or whatever.
2896 valueKind = VK_RValue;
2897 type = type.getUnqualifiedType();
2898 break;
2899 }
2900
2901 case Decl::Var:
Larisse Voufo39a1e502013-08-06 01:03:05 +00002902 case Decl::VarTemplateSpecialization:
2903 case Decl::VarTemplatePartialSpecialization:
John McCallf4cd4f92011-02-09 01:13:10 +00002904 // In C, "extern void blah;" is valid and is an r-value.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002905 if (!getLangOpts().CPlusPlus &&
John McCallf4cd4f92011-02-09 01:13:10 +00002906 !type.hasQualifiers() &&
2907 type->isVoidType()) {
2908 valueKind = VK_RValue;
2909 break;
2910 }
2911 // fallthrough
2912
2913 case Decl::ImplicitParam:
Douglas Gregor812d8f62012-02-18 05:51:20 +00002914 case Decl::ParmVar: {
John McCallf4cd4f92011-02-09 01:13:10 +00002915 // These are always l-values.
2916 valueKind = VK_LValue;
2917 type = type.getNonReferenceType();
Eli Friedman9bb33f52012-02-03 02:04:35 +00002918
Douglas Gregor812d8f62012-02-18 05:51:20 +00002919 // FIXME: Does the addition of const really only apply in
2920 // potentially-evaluated contexts? Since the variable isn't actually
2921 // captured in an unevaluated context, it seems that the answer is no.
David Blaikie131fcb42012-08-06 22:47:24 +00002922 if (!isUnevaluatedContext()) {
Douglas Gregor812d8f62012-02-18 05:51:20 +00002923 QualType CapturedType = getCapturedDeclRefType(cast<VarDecl>(VD), Loc);
2924 if (!CapturedType.isNull())
2925 type = CapturedType;
2926 }
2927
John McCallf4cd4f92011-02-09 01:13:10 +00002928 break;
Douglas Gregor812d8f62012-02-18 05:51:20 +00002929 }
2930
John McCallf4cd4f92011-02-09 01:13:10 +00002931 case Decl::Function: {
Eli Friedman34866c72012-08-31 00:14:07 +00002932 if (unsigned BID = cast<FunctionDecl>(VD)->getBuiltinID()) {
2933 if (!Context.BuiltinInfo.isPredefinedLibFunction(BID)) {
2934 type = Context.BuiltinFnTy;
2935 valueKind = VK_RValue;
2936 break;
2937 }
2938 }
2939
John McCall2979fe02011-04-12 00:42:48 +00002940 const FunctionType *fty = type->castAs<FunctionType>();
2941
2942 // If we're referring to a function with an __unknown_anytype
2943 // result type, make the entire expression __unknown_anytype.
Alp Toker314cc812014-01-25 16:55:45 +00002944 if (fty->getReturnType() == Context.UnknownAnyTy) {
John McCall2979fe02011-04-12 00:42:48 +00002945 type = Context.UnknownAnyTy;
2946 valueKind = VK_RValue;
2947 break;
2948 }
2949
John McCallf4cd4f92011-02-09 01:13:10 +00002950 // Functions are l-values in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00002951 if (getLangOpts().CPlusPlus) {
John McCallf4cd4f92011-02-09 01:13:10 +00002952 valueKind = VK_LValue;
2953 break;
2954 }
2955
2956 // C99 DR 316 says that, if a function type comes from a
2957 // function definition (without a prototype), that type is only
2958 // used for checking compatibility. Therefore, when referencing
2959 // the function, we pretend that we don't have the full function
2960 // type.
John McCall2979fe02011-04-12 00:42:48 +00002961 if (!cast<FunctionDecl>(VD)->hasPrototype() &&
2962 isa<FunctionProtoType>(fty))
Alp Toker314cc812014-01-25 16:55:45 +00002963 type = Context.getFunctionNoProtoType(fty->getReturnType(),
John McCall2979fe02011-04-12 00:42:48 +00002964 fty->getExtInfo());
John McCallf4cd4f92011-02-09 01:13:10 +00002965
2966 // Functions are r-values in C.
2967 valueKind = VK_RValue;
2968 break;
2969 }
2970
John McCall5e77d762013-04-16 07:28:30 +00002971 case Decl::MSProperty:
2972 valueKind = VK_LValue;
2973 break;
2974
John McCallf4cd4f92011-02-09 01:13:10 +00002975 case Decl::CXXMethod:
John McCall2979fe02011-04-12 00:42:48 +00002976 // If we're referring to a method with an __unknown_anytype
2977 // result type, make the entire expression __unknown_anytype.
2978 // This should only be possible with a type written directly.
Richard Trieucfc491d2011-08-02 04:35:43 +00002979 if (const FunctionProtoType *proto
2980 = dyn_cast<FunctionProtoType>(VD->getType()))
Alp Toker314cc812014-01-25 16:55:45 +00002981 if (proto->getReturnType() == Context.UnknownAnyTy) {
John McCall2979fe02011-04-12 00:42:48 +00002982 type = Context.UnknownAnyTy;
2983 valueKind = VK_RValue;
2984 break;
2985 }
2986
John McCallf4cd4f92011-02-09 01:13:10 +00002987 // C++ methods are l-values if static, r-values if non-static.
2988 if (cast<CXXMethodDecl>(VD)->isStatic()) {
2989 valueKind = VK_LValue;
2990 break;
2991 }
2992 // fallthrough
2993
2994 case Decl::CXXConversion:
2995 case Decl::CXXDestructor:
2996 case Decl::CXXConstructor:
2997 valueKind = VK_RValue;
2998 break;
2999 }
3000
Larisse Voufo39a1e502013-08-06 01:03:05 +00003001 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD,
3002 TemplateArgs);
John McCallf4cd4f92011-02-09 01:13:10 +00003003 }
Chris Lattner17ed4872006-11-20 04:58:19 +00003004}
Chris Lattnere168f762006-11-10 05:29:30 +00003005
Alexey Bataevec474782014-10-09 08:45:04 +00003006static void ConvertUTF8ToWideString(unsigned CharByteWidth, StringRef Source,
3007 SmallString<32> &Target) {
3008 Target.resize(CharByteWidth * (Source.size() + 1));
3009 char *ResultPtr = &Target[0];
3010 const UTF8 *ErrorPtr;
3011 bool success = ConvertUTF8toWide(CharByteWidth, Source, ResultPtr, ErrorPtr);
3012 (void)success;
3013 assert(success);
3014 Target.resize(ResultPtr - &Target[0]);
3015}
3016
Wei Panc354d212013-09-16 13:57:27 +00003017ExprResult Sema::BuildPredefinedExpr(SourceLocation Loc,
3018 PredefinedExpr::IdentType IT) {
3019 // Pick the current block, lambda, captured statement or function.
Craig Topperc3ec1492014-05-26 06:22:03 +00003020 Decl *currentDecl = nullptr;
Benjamin Kramer90f54222013-08-21 11:45:27 +00003021 if (const BlockScopeInfo *BSI = getCurBlock())
3022 currentDecl = BSI->TheDecl;
3023 else if (const LambdaScopeInfo *LSI = getCurLambda())
3024 currentDecl = LSI->CallOperator;
Wei Pan8d6b19a2013-08-26 14:27:34 +00003025 else if (const CapturedRegionScopeInfo *CSI = getCurCapturedRegion())
3026 currentDecl = CSI->TheCapturedDecl;
Benjamin Kramer90f54222013-08-21 11:45:27 +00003027 else
3028 currentDecl = getCurFunctionOrMethodDecl();
Benjamin Kramer6928cf72012-12-06 15:42:21 +00003029
Anders Carlsson2fb08242009-09-08 18:24:21 +00003030 if (!currentDecl) {
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00003031 Diag(Loc, diag::ext_predef_outside_function);
Anders Carlsson2fb08242009-09-08 18:24:21 +00003032 currentDecl = Context.getTranslationUnitDecl();
Chris Lattnerf45c5ec2008-12-12 05:05:20 +00003033 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003034
Anders Carlsson0b209a82009-09-11 01:22:35 +00003035 QualType ResTy;
Alexey Bataevec474782014-10-09 08:45:04 +00003036 StringLiteral *SL = nullptr;
Wei Panc354d212013-09-16 13:57:27 +00003037 if (cast<DeclContext>(currentDecl)->isDependentContext())
Anders Carlsson0b209a82009-09-11 01:22:35 +00003038 ResTy = Context.DependentTy;
Wei Panc354d212013-09-16 13:57:27 +00003039 else {
3040 // Pre-defined identifiers are of type char[x], where x is the length of
3041 // the string.
Alexey Bataevec474782014-10-09 08:45:04 +00003042 auto Str = PredefinedExpr::ComputeName(IT, currentDecl);
3043 unsigned Length = Str.length();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003044
Anders Carlsson0b209a82009-09-11 01:22:35 +00003045 llvm::APInt LengthI(32, Length + 1);
Alexey Bataevec474782014-10-09 08:45:04 +00003046 if (IT == PredefinedExpr::LFunction) {
Hans Wennborg0d81e012013-05-10 10:08:40 +00003047 ResTy = Context.WideCharTy.withConst();
Alexey Bataevec474782014-10-09 08:45:04 +00003048 SmallString<32> RawChars;
3049 ConvertUTF8ToWideString(Context.getTypeSizeInChars(ResTy).getQuantity(),
3050 Str, RawChars);
3051 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3052 /*IndexTypeQuals*/ 0);
3053 SL = StringLiteral::Create(Context, RawChars, StringLiteral::Wide,
3054 /*Pascal*/ false, ResTy, Loc);
3055 } else {
Nico Weber3a691a32012-06-23 02:07:59 +00003056 ResTy = Context.CharTy.withConst();
Alexey Bataevec474782014-10-09 08:45:04 +00003057 ResTy = Context.getConstantArrayType(ResTy, LengthI, ArrayType::Normal,
3058 /*IndexTypeQuals*/ 0);
3059 SL = StringLiteral::Create(Context, Str, StringLiteral::Ascii,
3060 /*Pascal*/ false, ResTy, Loc);
3061 }
Anders Carlsson0b209a82009-09-11 01:22:35 +00003062 }
Wei Panc354d212013-09-16 13:57:27 +00003063
Alexey Bataevec474782014-10-09 08:45:04 +00003064 return new (Context) PredefinedExpr(Loc, ResTy, IT, SL);
Chris Lattnere168f762006-11-10 05:29:30 +00003065}
3066
Wei Panc354d212013-09-16 13:57:27 +00003067ExprResult Sema::ActOnPredefinedExpr(SourceLocation Loc, tok::TokenKind Kind) {
3068 PredefinedExpr::IdentType IT;
3069
3070 switch (Kind) {
3071 default: llvm_unreachable("Unknown simple primary expr!");
3072 case tok::kw___func__: IT = PredefinedExpr::Func; break; // [C99 6.4.2.2]
3073 case tok::kw___FUNCTION__: IT = PredefinedExpr::Function; break;
David Majnemerbed356a2013-11-06 23:31:56 +00003074 case tok::kw___FUNCDNAME__: IT = PredefinedExpr::FuncDName; break; // [MS]
Reid Kleckner52eddda2014-04-08 18:13:24 +00003075 case tok::kw___FUNCSIG__: IT = PredefinedExpr::FuncSig; break; // [MS]
Wei Panc354d212013-09-16 13:57:27 +00003076 case tok::kw_L__FUNCTION__: IT = PredefinedExpr::LFunction; break;
3077 case tok::kw___PRETTY_FUNCTION__: IT = PredefinedExpr::PrettyFunction; break;
3078 }
3079
3080 return BuildPredefinedExpr(Loc, IT);
3081}
3082
Richard Smithbcc22fc2012-03-09 08:00:36 +00003083ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00003084 SmallString<16> CharBuffer;
Douglas Gregordc970f02010-03-16 22:30:13 +00003085 bool Invalid = false;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003086 StringRef ThisTok = PP.getSpelling(Tok, CharBuffer, &Invalid);
Douglas Gregordc970f02010-03-16 22:30:13 +00003087 if (Invalid)
3088 return ExprError();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003089
Benjamin Kramer0a1abd42010-02-27 13:44:12 +00003090 CharLiteralParser Literal(ThisTok.begin(), ThisTok.end(), Tok.getLocation(),
Douglas Gregorfb65e592011-07-27 05:40:30 +00003091 PP, Tok.getKind());
Steve Naroffae4143e2007-04-26 20:39:23 +00003092 if (Literal.hadError())
Sebastian Redlffbcf962009-01-18 18:53:16 +00003093 return ExprError();
Chris Lattneref24b382008-03-01 08:32:21 +00003094
Chris Lattnerc3847ba2009-12-30 21:19:39 +00003095 QualType Ty;
Seth Cantrell02f86052012-01-18 12:27:06 +00003096 if (Literal.isWide())
Hans Wennborg0d81e012013-05-10 10:08:40 +00003097 Ty = Context.WideCharTy; // L'x' -> wchar_t in C and C++.
Douglas Gregorfb65e592011-07-27 05:40:30 +00003098 else if (Literal.isUTF16())
Seth Cantrell02f86052012-01-18 12:27:06 +00003099 Ty = Context.Char16Ty; // u'x' -> char16_t in C11 and C++11.
Douglas Gregorfb65e592011-07-27 05:40:30 +00003100 else if (Literal.isUTF32())
Seth Cantrell02f86052012-01-18 12:27:06 +00003101 Ty = Context.Char32Ty; // U'x' -> char32_t in C11 and C++11.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003102 else if (!getLangOpts().CPlusPlus || Literal.isMultiChar())
Seth Cantrell02f86052012-01-18 12:27:06 +00003103 Ty = Context.IntTy; // 'x' -> int in C, 'wxyz' -> int in C++.
Chris Lattnerc3847ba2009-12-30 21:19:39 +00003104 else
3105 Ty = Context.CharTy; // 'x' -> char in C++
Chris Lattneref24b382008-03-01 08:32:21 +00003106
Douglas Gregorfb65e592011-07-27 05:40:30 +00003107 CharacterLiteral::CharacterKind Kind = CharacterLiteral::Ascii;
3108 if (Literal.isWide())
3109 Kind = CharacterLiteral::Wide;
3110 else if (Literal.isUTF16())
3111 Kind = CharacterLiteral::UTF16;
3112 else if (Literal.isUTF32())
3113 Kind = CharacterLiteral::UTF32;
3114
Richard Smith75b67d62012-03-08 01:34:56 +00003115 Expr *Lit = new (Context) CharacterLiteral(Literal.getValue(), Kind, Ty,
3116 Tok.getLocation());
3117
3118 if (Literal.getUDSuffix().empty())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003119 return Lit;
Richard Smith75b67d62012-03-08 01:34:56 +00003120
3121 // We're building a user-defined literal.
3122 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3123 SourceLocation UDSuffixLoc =
3124 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3125
Richard Smithbcc22fc2012-03-09 08:00:36 +00003126 // Make sure we're allowed user-defined literals here.
3127 if (!UDLScope)
3128 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_character_udl));
3129
Richard Smith75b67d62012-03-08 01:34:56 +00003130 // C++11 [lex.ext]p6: The literal L is treated as a call of the form
3131 // operator "" X (ch)
Richard Smithbcc22fc2012-03-09 08:00:36 +00003132 return BuildCookedLiteralOperatorCall(*this, UDLScope, UDSuffix, UDSuffixLoc,
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003133 Lit, Tok.getLocation());
Steve Naroffae4143e2007-04-26 20:39:23 +00003134}
3135
Ted Kremeneke65b0862012-03-06 20:05:56 +00003136ExprResult Sema::ActOnIntegerConstant(SourceLocation Loc, uint64_t Val) {
3137 unsigned IntSize = Context.getTargetInfo().getIntWidth();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003138 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val),
3139 Context.IntTy, Loc);
Ted Kremeneke65b0862012-03-06 20:05:56 +00003140}
3141
Richard Smith39570d002012-03-08 08:45:32 +00003142static Expr *BuildFloatingLiteral(Sema &S, NumericLiteralParser &Literal,
3143 QualType Ty, SourceLocation Loc) {
3144 const llvm::fltSemantics &Format = S.Context.getFloatTypeSemantics(Ty);
3145
3146 using llvm::APFloat;
3147 APFloat Val(Format);
3148
3149 APFloat::opStatus result = Literal.GetFloatValue(Val);
3150
3151 // Overflow is always an error, but underflow is only an error if
3152 // we underflowed to zero (APFloat reports denormals as underflow).
3153 if ((result & APFloat::opOverflow) ||
3154 ((result & APFloat::opUnderflow) && Val.isZero())) {
3155 unsigned diagnostic;
3156 SmallString<20> buffer;
3157 if (result & APFloat::opOverflow) {
3158 diagnostic = diag::warn_float_overflow;
3159 APFloat::getLargest(Format).toString(buffer);
3160 } else {
3161 diagnostic = diag::warn_float_underflow;
3162 APFloat::getSmallest(Format).toString(buffer);
3163 }
3164
3165 S.Diag(Loc, diagnostic)
3166 << Ty
3167 << StringRef(buffer.data(), buffer.size());
3168 }
3169
3170 bool isExact = (result == APFloat::opOK);
3171 return FloatingLiteral::Create(S.Context, Val, isExact, Ty, Loc);
3172}
3173
Tyler Nowickic724a83e2014-10-12 20:46:07 +00003174bool Sema::CheckLoopHintExpr(Expr *E, SourceLocation Loc) {
3175 assert(E && "Invalid expression");
3176
3177 if (E->isValueDependent())
3178 return false;
3179
3180 QualType QT = E->getType();
3181 if (!QT->isIntegerType() || QT->isBooleanType() || QT->isCharType()) {
3182 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_type) << QT;
3183 return true;
3184 }
3185
3186 llvm::APSInt ValueAPS;
3187 ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS);
3188
3189 if (R.isInvalid())
3190 return true;
3191
3192 bool ValueIsPositive = ValueAPS.isStrictlyPositive();
3193 if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) {
3194 Diag(E->getExprLoc(), diag::err_pragma_loop_invalid_argument_value)
3195 << ValueAPS.toString(10) << ValueIsPositive;
3196 return true;
3197 }
3198
3199 return false;
3200}
3201
Richard Smithbcc22fc2012-03-09 08:00:36 +00003202ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScope) {
Sebastian Redlffbcf962009-01-18 18:53:16 +00003203 // Fast path for a single digit (which is quite common). A single digit
Richard Smithbcc22fc2012-03-09 08:00:36 +00003204 // cannot have a trigraph, escaped newline, radix prefix, or suffix.
Steve Narofff2fb89e2007-03-13 20:29:44 +00003205 if (Tok.getLength() == 1) {
Chris Lattner9240b3e2009-01-26 22:36:52 +00003206 const char Val = PP.getSpellingOfSingleCharacterNumericConstant(Tok);
Ted Kremeneke65b0862012-03-06 20:05:56 +00003207 return ActOnIntegerConstant(Tok.getLocation(), Val-'0');
Steve Narofff2fb89e2007-03-13 20:29:44 +00003208 }
Ted Kremeneke9814182009-01-13 23:19:12 +00003209
Dmitri Gribenko7ba91722012-09-24 09:53:54 +00003210 SmallString<128> SpellingBuffer;
3211 // NumericLiteralParser wants to overread by one character. Add padding to
3212 // the buffer in case the token is copied to the buffer. If getSpelling()
3213 // returns a StringRef to the memory buffer, it should have a null char at
3214 // the EOF, so it is also safe.
3215 SpellingBuffer.resize(Tok.getLength() + 1);
Sebastian Redlffbcf962009-01-18 18:53:16 +00003216
Chris Lattner67ca9252007-05-21 01:08:44 +00003217 // Get the spelling of the token, which eliminates trigraphs, etc.
Douglas Gregordc970f02010-03-16 22:30:13 +00003218 bool Invalid = false;
Dmitri Gribenko7ba91722012-09-24 09:53:54 +00003219 StringRef TokSpelling = PP.getSpelling(Tok, SpellingBuffer, &Invalid);
Douglas Gregordc970f02010-03-16 22:30:13 +00003220 if (Invalid)
3221 return ExprError();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003222
Dmitri Gribenko7ba91722012-09-24 09:53:54 +00003223 NumericLiteralParser Literal(TokSpelling, Tok.getLocation(), PP);
Steve Narofff2fb89e2007-03-13 20:29:44 +00003224 if (Literal.hadError)
Sebastian Redlffbcf962009-01-18 18:53:16 +00003225 return ExprError();
3226
Richard Smith39570d002012-03-08 08:45:32 +00003227 if (Literal.hasUDSuffix()) {
3228 // We're building a user-defined literal.
3229 IdentifierInfo *UDSuffix = &Context.Idents.get(Literal.getUDSuffix());
3230 SourceLocation UDSuffixLoc =
3231 getUDSuffixLoc(*this, Tok.getLocation(), Literal.getUDSuffixOffset());
3232
Richard Smithbcc22fc2012-03-09 08:00:36 +00003233 // Make sure we're allowed user-defined literals here.
3234 if (!UDLScope)
3235 return ExprError(Diag(UDSuffixLoc, diag::err_invalid_numeric_udl));
Richard Smith39570d002012-03-08 08:45:32 +00003236
Richard Smithbcc22fc2012-03-09 08:00:36 +00003237 QualType CookedTy;
Richard Smith39570d002012-03-08 08:45:32 +00003238 if (Literal.isFloatingLiteral()) {
3239 // C++11 [lex.ext]p4: If S contains a literal operator with parameter type
3240 // long double, the literal is treated as a call of the form
3241 // operator "" X (f L)
Richard Smithbcc22fc2012-03-09 08:00:36 +00003242 CookedTy = Context.LongDoubleTy;
Richard Smith39570d002012-03-08 08:45:32 +00003243 } else {
3244 // C++11 [lex.ext]p3: If S contains a literal operator with parameter type
3245 // unsigned long long, the literal is treated as a call of the form
3246 // operator "" X (n ULL)
Richard Smithbcc22fc2012-03-09 08:00:36 +00003247 CookedTy = Context.UnsignedLongLongTy;
Richard Smith39570d002012-03-08 08:45:32 +00003248 }
3249
Richard Smithbcc22fc2012-03-09 08:00:36 +00003250 DeclarationName OpName =
3251 Context.DeclarationNames.getCXXLiteralOperatorName(UDSuffix);
3252 DeclarationNameInfo OpNameInfo(OpName, UDSuffixLoc);
3253 OpNameInfo.setCXXLiteralOperatorNameLoc(UDSuffixLoc);
3254
Richard Smithb8b41d32013-10-07 19:57:58 +00003255 SourceLocation TokLoc = Tok.getLocation();
3256
Richard Smithbcc22fc2012-03-09 08:00:36 +00003257 // Perform literal operator lookup to determine if we're building a raw
3258 // literal or a cooked one.
3259 LookupResult R(*this, OpName, UDSuffixLoc, LookupOrdinaryName);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003260 switch (LookupLiteralOperator(UDLScope, R, CookedTy,
Richard Smithb8b41d32013-10-07 19:57:58 +00003261 /*AllowRaw*/true, /*AllowTemplate*/true,
3262 /*AllowStringTemplate*/false)) {
Richard Smithbcc22fc2012-03-09 08:00:36 +00003263 case LOLR_Error:
3264 return ExprError();
3265
3266 case LOLR_Cooked: {
3267 Expr *Lit;
3268 if (Literal.isFloatingLiteral()) {
3269 Lit = BuildFloatingLiteral(*this, Literal, CookedTy, Tok.getLocation());
3270 } else {
3271 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);
3272 if (Literal.GetIntegerValue(ResultVal))
Aaron Ballman31f42312014-07-24 14:51:23 +00003273 Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3274 << /* Unsigned */ 1;
Richard Smithbcc22fc2012-03-09 08:00:36 +00003275 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy,
3276 Tok.getLocation());
3277 }
Richard Smithb8b41d32013-10-07 19:57:58 +00003278 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
Richard Smithbcc22fc2012-03-09 08:00:36 +00003279 }
3280
3281 case LOLR_Raw: {
3282 // C++11 [lit.ext]p3, p4: If S contains a raw literal operator, the
3283 // literal is treated as a call of the form
3284 // operator "" X ("n")
Richard Smithbcc22fc2012-03-09 08:00:36 +00003285 unsigned Length = Literal.getUDSuffixOffset();
3286 QualType StrTy = Context.getConstantArrayType(
Richard Smithbe8229c2013-01-23 23:38:20 +00003287 Context.CharTy.withConst(), llvm::APInt(32, Length + 1),
Richard Smithbcc22fc2012-03-09 08:00:36 +00003288 ArrayType::Normal, 0);
3289 Expr *Lit = StringLiteral::Create(
Dmitri Gribenko7ba91722012-09-24 09:53:54 +00003290 Context, StringRef(TokSpelling.data(), Length), StringLiteral::Ascii,
Richard Smithbcc22fc2012-03-09 08:00:36 +00003291 /*Pascal*/false, StrTy, &TokLoc, 1);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00003292 return BuildLiteralOperatorCall(R, OpNameInfo, Lit, TokLoc);
Richard Smithbcc22fc2012-03-09 08:00:36 +00003293 }
3294
Richard Smithb8b41d32013-10-07 19:57:58 +00003295 case LOLR_Template: {
Richard Smithbcc22fc2012-03-09 08:00:36 +00003296 // C++11 [lit.ext]p3, p4: Otherwise (S contains a literal operator
3297 // template), L is treated as a call fo the form
3298 // operator "" X <'c1', 'c2', ... 'ck'>()
3299 // where n is the source character sequence c1 c2 ... ck.
3300 TemplateArgumentListInfo ExplicitArgs;
3301 unsigned CharBits = Context.getIntWidth(Context.CharTy);
3302 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType();
3303 llvm::APSInt Value(CharBits, CharIsUnsigned);
3304 for (unsigned I = 0, N = Literal.getUDSuffixOffset(); I != N; ++I) {
Dmitri Gribenko7ba91722012-09-24 09:53:54 +00003305 Value = TokSpelling[I];
Benjamin Kramer6003ad52012-06-07 15:09:51 +00003306 TemplateArgument Arg(Context, Value, Context.CharTy);
Richard Smithbcc22fc2012-03-09 08:00:36 +00003307 TemplateArgumentLocInfo ArgInfo;
3308 ExplicitArgs.addArgument(TemplateArgumentLoc(Arg, ArgInfo));
3309 }
Richard Smithb8b41d32013-10-07 19:57:58 +00003310 return BuildLiteralOperatorCall(R, OpNameInfo, None, TokLoc,
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +00003311 &ExplicitArgs);
Richard Smithbcc22fc2012-03-09 08:00:36 +00003312 }
Richard Smithb8b41d32013-10-07 19:57:58 +00003313 case LOLR_StringTemplate:
3314 llvm_unreachable("unexpected literal operator lookup result");
3315 }
Richard Smith39570d002012-03-08 08:45:32 +00003316 }
3317
Chris Lattner1c20a172007-08-26 03:42:43 +00003318 Expr *Res;
Sebastian Redlffbcf962009-01-18 18:53:16 +00003319
Chris Lattner1c20a172007-08-26 03:42:43 +00003320 if (Literal.isFloatingLiteral()) {
Chris Lattnerec0a6d92007-09-22 18:29:59 +00003321 QualType Ty;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00003322 if (Literal.isFloat)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00003323 Ty = Context.FloatTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00003324 else if (!Literal.isLong)
Chris Lattnerec0a6d92007-09-22 18:29:59 +00003325 Ty = Context.DoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00003326 else
Chris Lattner7570e9c2008-03-08 08:52:55 +00003327 Ty = Context.LongDoubleTy;
Chris Lattner9a8d1d92008-06-30 18:32:54 +00003328
Richard Smith39570d002012-03-08 08:45:32 +00003329 Res = BuildFloatingLiteral(*this, Literal, Ty, Tok.getLocation());
Sebastian Redlffbcf962009-01-18 18:53:16 +00003330
Peter Collingbournec77f85b2011-03-11 19:24:59 +00003331 if (Ty == Context.DoubleTy) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003332 if (getLangOpts().SinglePrecisionConstants) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003333 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
Fraser Cormackcc6e8942015-01-30 10:51:46 +00003334 } else if (getLangOpts().OpenCL &&
3335 !((getLangOpts().OpenCLVersion >= 120) ||
3336 getOpenCLOptions().cl_khr_fp64)) {
Peter Collingbournec77f85b2011-03-11 19:24:59 +00003337 Diag(Tok.getLocation(), diag::warn_double_const_requires_fp64);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003338 Res = ImpCastExprToType(Res, Context.FloatTy, CK_FloatingCast).get();
Peter Collingbournec77f85b2011-03-11 19:24:59 +00003339 }
3340 }
Chris Lattner1c20a172007-08-26 03:42:43 +00003341 } else if (!Literal.isIntegerLiteral()) {
Sebastian Redlffbcf962009-01-18 18:53:16 +00003342 return ExprError();
Chris Lattner1c20a172007-08-26 03:42:43 +00003343 } else {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003344 QualType Ty;
Chris Lattner67ca9252007-05-21 01:08:44 +00003345
Dmitri Gribenko1cd23052012-09-24 18:19:21 +00003346 // 'long long' is a C99 or C++11 feature.
3347 if (!getLangOpts().C99 && Literal.isLongLong) {
3348 if (getLangOpts().CPlusPlus)
3349 Diag(Tok.getLocation(),
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003350 getLangOpts().CPlusPlus11 ?
Dmitri Gribenko1cd23052012-09-24 18:19:21 +00003351 diag::warn_cxx98_compat_longlong : diag::ext_cxx11_longlong);
3352 else
3353 Diag(Tok.getLocation(), diag::ext_c99_longlong);
3354 }
Neil Boothac582c52007-08-29 22:00:19 +00003355
Chris Lattner67ca9252007-05-21 01:08:44 +00003356 // Get the value in the widest-possible width.
Stephen Canonfdc6c1a2012-05-03 22:49:43 +00003357 unsigned MaxWidth = Context.getTargetInfo().getIntMaxTWidth();
3358 // The microsoft literal suffix extensions support 128-bit literals, which
3359 // may be wider than [u]intmax_t.
Richard Smithe6a56db2012-11-29 05:41:51 +00003360 // FIXME: Actually, they don't. We seem to have accidentally invented the
3361 // i128 suffix.
David Majnemer65a407c2014-06-21 18:46:07 +00003362 if (Literal.MicrosoftInteger == 128 && MaxWidth < 128 &&
Alp Tokerb6cc5922014-05-03 03:45:55 +00003363 Context.getTargetInfo().hasInt128Type())
Stephen Canonfdc6c1a2012-05-03 22:49:43 +00003364 MaxWidth = 128;
3365 llvm::APInt ResultVal(MaxWidth, 0);
Sebastian Redlffbcf962009-01-18 18:53:16 +00003366
Chris Lattner67ca9252007-05-21 01:08:44 +00003367 if (Literal.GetIntegerValue(ResultVal)) {
Eli Friedman088d39a2013-07-23 00:25:18 +00003368 // If this value didn't fit into uintmax_t, error and force to ull.
Aaron Ballman31f42312014-07-24 14:51:23 +00003369 Diag(Tok.getLocation(), diag::err_integer_literal_too_large)
3370 << /* Unsigned */ 1;
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003371 Ty = Context.UnsignedLongLongTy;
3372 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
Chris Lattner37e05872008-03-05 18:54:05 +00003373 "long long is not intmax_t?");
Steve Naroff09ef4742007-03-09 23:16:33 +00003374 } else {
Chris Lattner67ca9252007-05-21 01:08:44 +00003375 // If this value fits into a ULL, try to figure out what else it fits into
3376 // according to the rules of C99 6.4.4.1p5.
Sebastian Redlffbcf962009-01-18 18:53:16 +00003377
Chris Lattner67ca9252007-05-21 01:08:44 +00003378 // Octal, Hexadecimal, and integers with a U suffix are allowed to
3379 // be an unsigned int.
3380 bool AllowUnsigned = Literal.isUnsigned || Literal.getRadix() != 10;
3381
3382 // Check from smallest to largest, picking the smallest type we can.
Chris Lattner55258cf2008-05-09 05:59:00 +00003383 unsigned Width = 0;
David Majnemer65a407c2014-06-21 18:46:07 +00003384
3385 // Microsoft specific integer suffixes are explicitly sized.
3386 if (Literal.MicrosoftInteger) {
3387 if (Literal.MicrosoftInteger > MaxWidth) {
3388 // If this target doesn't support __int128, error and force to ull.
3389 Diag(Tok.getLocation(), diag::err_int128_unsupported);
3390 Width = MaxWidth;
3391 Ty = Context.getIntMaxType();
David Majnemerbe09e8e2015-03-06 18:04:22 +00003392 } else if (Literal.MicrosoftInteger == 8 && !Literal.isUnsigned) {
3393 Width = 8;
3394 Ty = Context.CharTy;
David Majnemer65a407c2014-06-21 18:46:07 +00003395 } else {
3396 Width = Literal.MicrosoftInteger;
3397 Ty = Context.getIntTypeForBitwidth(Width,
3398 /*Signed=*/!Literal.isUnsigned);
3399 }
3400 }
3401
3402 if (Ty.isNull() && !Literal.isLong && !Literal.isLongLong) {
Chris Lattner7b939cf2007-08-23 21:58:08 +00003403 // Are int/unsigned possibilities?
Douglas Gregore8bbc122011-09-02 00:18:52 +00003404 unsigned IntSize = Context.getTargetInfo().getIntWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003405
Chris Lattner67ca9252007-05-21 01:08:44 +00003406 // Does it fit in a unsigned int?
3407 if (ResultVal.isIntN(IntSize)) {
3408 // Does it fit in a signed int?
3409 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003410 Ty = Context.IntTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00003411 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003412 Ty = Context.UnsignedIntTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00003413 Width = IntSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00003414 }
Chris Lattner67ca9252007-05-21 01:08:44 +00003415 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003416
Chris Lattner67ca9252007-05-21 01:08:44 +00003417 // Are long/unsigned long possibilities?
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003418 if (Ty.isNull() && !Literal.isLongLong) {
Douglas Gregore8bbc122011-09-02 00:18:52 +00003419 unsigned LongSize = Context.getTargetInfo().getLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003420
Chris Lattner67ca9252007-05-21 01:08:44 +00003421 // Does it fit in a unsigned long?
3422 if (ResultVal.isIntN(LongSize)) {
3423 // Does it fit in a signed long?
3424 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003425 Ty = Context.LongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00003426 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003427 Ty = Context.UnsignedLongTy;
Hubert Tong13234ae2015-06-08 21:59:59 +00003428 // Check according to the rules of C90 6.1.3.2p5. C++03 [lex.icon]p2
3429 // is compatible.
3430 else if (!getLangOpts().C99 && !getLangOpts().CPlusPlus11) {
3431 const unsigned LongLongSize =
3432 Context.getTargetInfo().getLongLongWidth();
3433 Diag(Tok.getLocation(),
3434 getLangOpts().CPlusPlus
3435 ? Literal.isLong
3436 ? diag::warn_old_implicitly_unsigned_long_cxx
3437 : /*C++98 UB*/ diag::
3438 ext_old_implicitly_unsigned_long_cxx
3439 : diag::warn_old_implicitly_unsigned_long)
3440 << (LongLongSize > LongSize ? /*will have type 'long long'*/ 0
3441 : /*will be ill-formed*/ 1);
3442 Ty = Context.UnsignedLongTy;
3443 }
Chris Lattner55258cf2008-05-09 05:59:00 +00003444 Width = LongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00003445 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003446 }
3447
Stephen Canonfdc6c1a2012-05-03 22:49:43 +00003448 // Check long long if needed.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003449 if (Ty.isNull()) {
Douglas Gregore8bbc122011-09-02 00:18:52 +00003450 unsigned LongLongSize = Context.getTargetInfo().getLongLongWidth();
Sebastian Redlffbcf962009-01-18 18:53:16 +00003451
Chris Lattner67ca9252007-05-21 01:08:44 +00003452 // Does it fit in a unsigned long long?
3453 if (ResultVal.isIntN(LongLongSize)) {
3454 // Does it fit in a signed long long?
Francois Pichetc3e73b32011-01-11 23:38:13 +00003455 // To be compatible with MSVC, hex integer literals ending with the
3456 // LL or i64 suffix are always signed in Microsoft mode.
Francois Pichetbf711d92011-01-11 12:23:00 +00003457 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00003458 (getLangOpts().MicrosoftExt && Literal.isLongLong)))
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003459 Ty = Context.LongLongTy;
Chris Lattner67ca9252007-05-21 01:08:44 +00003460 else if (AllowUnsigned)
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003461 Ty = Context.UnsignedLongLongTy;
Chris Lattner55258cf2008-05-09 05:59:00 +00003462 Width = LongLongSize;
Chris Lattner67ca9252007-05-21 01:08:44 +00003463 }
3464 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003465
Chris Lattner67ca9252007-05-21 01:08:44 +00003466 // If we still couldn't decide a type, we probably have something that
3467 // does not fit in a signed long long, but has no U suffix.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003468 if (Ty.isNull()) {
Aaron Ballman31f42312014-07-24 14:51:23 +00003469 Diag(Tok.getLocation(), diag::ext_integer_literal_too_large_for_signed);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00003470 Ty = Context.UnsignedLongLongTy;
Douglas Gregore8bbc122011-09-02 00:18:52 +00003471 Width = Context.getTargetInfo().getLongLongWidth();
Chris Lattner67ca9252007-05-21 01:08:44 +00003472 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003473
Chris Lattner55258cf2008-05-09 05:59:00 +00003474 if (ResultVal.getBitWidth() != Width)
Jay Foad6d4db0c2010-12-07 08:25:34 +00003475 ResultVal = ResultVal.trunc(Width);
Steve Naroff09ef4742007-03-09 23:16:33 +00003476 }
Argyrios Kyrtzidis43b20572010-08-28 09:06:06 +00003477 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation());
Steve Naroff09ef4742007-03-09 23:16:33 +00003478 }
Sebastian Redlffbcf962009-01-18 18:53:16 +00003479
Chris Lattner1c20a172007-08-26 03:42:43 +00003480 // If this is an imaginary literal, create the ImaginaryLiteral wrapper.
3481 if (Literal.isImaginary)
Mike Stump11289f42009-09-09 15:08:12 +00003482 Res = new (Context) ImaginaryLiteral(Res,
Steve Narofff6009ed2009-01-21 00:14:39 +00003483 Context.getComplexType(Res->getType()));
Sebastian Redlffbcf962009-01-18 18:53:16 +00003484
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003485 return Res;
Chris Lattnere168f762006-11-10 05:29:30 +00003486}
3487
Richard Trieuba63ce62011-09-09 01:45:06 +00003488ExprResult Sema::ActOnParenExpr(SourceLocation L, SourceLocation R, Expr *E) {
Craig Topperc3ec1492014-05-26 06:22:03 +00003489 assert(E && "ActOnParenExpr() missing expr");
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003490 return new (Context) ParenExpr(L, R, E);
Chris Lattnere168f762006-11-10 05:29:30 +00003491}
3492
Chandler Carruth62da79c2011-05-26 08:53:12 +00003493static bool CheckVecStepTraitOperandType(Sema &S, QualType T,
3494 SourceLocation Loc,
3495 SourceRange ArgRange) {
3496 // [OpenCL 1.1 6.11.12] "The vec_step built-in function takes a built-in
3497 // scalar or vector data type argument..."
3498 // Every built-in scalar type (OpenCL 1.1 6.1.1) is either an arithmetic
3499 // type (C99 6.2.5p18) or void.
3500 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) {
3501 S.Diag(Loc, diag::err_vecstep_non_scalar_vector_type)
3502 << T << ArgRange;
3503 return true;
3504 }
3505
3506 assert((T->isVoidType() || !T->isIncompleteType()) &&
3507 "Scalar types should always be complete");
3508 return false;
3509}
3510
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003511static bool CheckExtensionTraitOperandType(Sema &S, QualType T,
3512 SourceLocation Loc,
3513 SourceRange ArgRange,
3514 UnaryExprOrTypeTrait TraitKind) {
Eli Friedman4e28b262013-08-13 22:26:42 +00003515 // Invalid types must be hard errors for SFINAE in C++.
3516 if (S.LangOpts.CPlusPlus)
3517 return true;
3518
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003519 // C99 6.5.3.4p1:
Richard Smith9cf21ae2013-03-18 23:37:25 +00003520 if (T->isFunctionType() &&
3521 (TraitKind == UETT_SizeOf || TraitKind == UETT_AlignOf)) {
3522 // sizeof(function)/alignof(function) is allowed as an extension.
3523 S.Diag(Loc, diag::ext_sizeof_alignof_function_type)
3524 << TraitKind << ArgRange;
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003525 return false;
3526 }
3527
Joey Gouly4ba0f1e2013-12-31 15:47:49 +00003528 // Allow sizeof(void)/alignof(void) as an extension, unless in OpenCL where
3529 // this is an error (OpenCL v1.1 s6.3.k)
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003530 if (T->isVoidType()) {
Joey Gouly4ba0f1e2013-12-31 15:47:49 +00003531 unsigned DiagID = S.LangOpts.OpenCL ? diag::err_opencl_sizeof_alignof_type
3532 : diag::ext_sizeof_alignof_void_type;
3533 S.Diag(Loc, DiagID) << TraitKind << ArgRange;
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003534 return false;
3535 }
3536
3537 return true;
3538}
3539
3540static bool CheckObjCTraitOperandConstraints(Sema &S, QualType T,
3541 SourceLocation Loc,
3542 SourceRange ArgRange,
3543 UnaryExprOrTypeTrait TraitKind) {
John McCallf2538342012-07-31 05:14:30 +00003544 // Reject sizeof(interface) and sizeof(interface<proto>) if the
3545 // runtime doesn't allow it.
3546 if (!S.LangOpts.ObjCRuntime.allowsSizeofAlignof() && T->isObjCObjectType()) {
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003547 S.Diag(Loc, diag::err_sizeof_nonfragile_interface)
3548 << T << (TraitKind == UETT_SizeOf)
3549 << ArgRange;
3550 return true;
3551 }
3552
3553 return false;
3554}
3555
Benjamin Kramer054faa52013-03-29 21:43:21 +00003556/// \brief Check whether E is a pointer from a decayed array type (the decayed
3557/// pointer type is equal to T) and emit a warning if it is.
3558static void warnOnSizeofOnArrayDecay(Sema &S, SourceLocation Loc, QualType T,
3559 Expr *E) {
3560 // Don't warn if the operation changed the type.
3561 if (T != E->getType())
3562 return;
3563
3564 // Now look for array decays.
3565 ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E);
3566 if (!ICE || ICE->getCastKind() != CK_ArrayToPointerDecay)
3567 return;
3568
3569 S.Diag(Loc, diag::warn_sizeof_array_decay) << ICE->getSourceRange()
3570 << ICE->getType()
3571 << ICE->getSubExpr()->getType();
3572}
3573
Alp Toker95e7ff22014-01-01 05:57:51 +00003574/// \brief Check the constraints on expression operands to unary type expression
Chandler Carruth14502c22011-05-26 08:53:10 +00003575/// and type traits.
3576///
Chandler Carruth7c430c02011-05-27 01:33:31 +00003577/// Completes any types necessary and validates the constraints on the operand
3578/// expression. The logic mostly mirrors the type-based overload, but may modify
3579/// the expression as it completes the type for that expression through template
3580/// instantiation, etc.
Richard Trieuba63ce62011-09-09 01:45:06 +00003581bool Sema::CheckUnaryExprOrTypeTraitOperand(Expr *E,
Chandler Carruth14502c22011-05-26 08:53:10 +00003582 UnaryExprOrTypeTrait ExprKind) {
Richard Trieuba63ce62011-09-09 01:45:06 +00003583 QualType ExprTy = E->getType();
John McCall768439e2013-05-06 07:40:34 +00003584 assert(!ExprTy->isReferenceType());
Chandler Carruth7c430c02011-05-27 01:33:31 +00003585
3586 if (ExprKind == UETT_VecStep)
Richard Trieuba63ce62011-09-09 01:45:06 +00003587 return CheckVecStepTraitOperandType(*this, ExprTy, E->getExprLoc(),
3588 E->getSourceRange());
Chandler Carruth7c430c02011-05-27 01:33:31 +00003589
3590 // Whitelist some types as extensions
Richard Trieuba63ce62011-09-09 01:45:06 +00003591 if (!CheckExtensionTraitOperandType(*this, ExprTy, E->getExprLoc(),
3592 E->getSourceRange(), ExprKind))
Chandler Carruth7c430c02011-05-27 01:33:31 +00003593 return false;
3594
Richard Smithf6d70302014-06-10 23:34:28 +00003595 // 'alignof' applied to an expression only requires the base element type of
3596 // the expression to be complete. 'sizeof' requires the expression's type to
3597 // be complete (and will attempt to complete it if it's an array of unknown
3598 // bound).
3599 if (ExprKind == UETT_AlignOf) {
3600 if (RequireCompleteType(E->getExprLoc(),
3601 Context.getBaseElementType(E->getType()),
3602 diag::err_sizeof_alignof_incomplete_type, ExprKind,
3603 E->getSourceRange()))
3604 return true;
3605 } else {
3606 if (RequireCompleteExprType(E, diag::err_sizeof_alignof_incomplete_type,
3607 ExprKind, E->getSourceRange()))
3608 return true;
3609 }
Chandler Carruth7c430c02011-05-27 01:33:31 +00003610
John McCall768439e2013-05-06 07:40:34 +00003611 // Completing the expression's type may have changed it.
Richard Trieuba63ce62011-09-09 01:45:06 +00003612 ExprTy = E->getType();
John McCall768439e2013-05-06 07:40:34 +00003613 assert(!ExprTy->isReferenceType());
Chandler Carruth7c430c02011-05-27 01:33:31 +00003614
Eli Friedman4e28b262013-08-13 22:26:42 +00003615 if (ExprTy->isFunctionType()) {
3616 Diag(E->getExprLoc(), diag::err_sizeof_alignof_function_type)
3617 << ExprKind << E->getSourceRange();
3618 return true;
3619 }
3620
Aaron Ballman6c93b3e2014-12-17 21:57:17 +00003621 // The operand for sizeof and alignof is in an unevaluated expression context,
3622 // so side effects could result in unintended consequences.
3623 if ((ExprKind == UETT_SizeOf || ExprKind == UETT_AlignOf) &&
3624 ActiveTemplateInstantiations.empty() && E->HasSideEffects(Context, false))
3625 Diag(E->getExprLoc(), diag::warn_side_effects_unevaluated_context);
3626
Richard Trieuba63ce62011-09-09 01:45:06 +00003627 if (CheckObjCTraitOperandConstraints(*this, ExprTy, E->getExprLoc(),
3628 E->getSourceRange(), ExprKind))
Chandler Carruth7c430c02011-05-27 01:33:31 +00003629 return true;
3630
Nico Weber0870deb2011-06-15 02:47:03 +00003631 if (ExprKind == UETT_SizeOf) {
Richard Trieuba63ce62011-09-09 01:45:06 +00003632 if (DeclRefExpr *DeclRef = dyn_cast<DeclRefExpr>(E->IgnoreParens())) {
Nico Weber0870deb2011-06-15 02:47:03 +00003633 if (ParmVarDecl *PVD = dyn_cast<ParmVarDecl>(DeclRef->getFoundDecl())) {
3634 QualType OType = PVD->getOriginalType();
3635 QualType Type = PVD->getType();
3636 if (Type->isPointerType() && OType->isArrayType()) {
Richard Trieuba63ce62011-09-09 01:45:06 +00003637 Diag(E->getExprLoc(), diag::warn_sizeof_array_param)
Nico Weber0870deb2011-06-15 02:47:03 +00003638 << Type << OType;
3639 Diag(PVD->getLocation(), diag::note_declared_at);
3640 }
3641 }
3642 }
Benjamin Kramer054faa52013-03-29 21:43:21 +00003643
3644 // Warn on "sizeof(array op x)" and "sizeof(x op array)", where the array
3645 // decays into a pointer and returns an unintended result. This is most
3646 // likely a typo for "sizeof(array) op x".
3647 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(E->IgnoreParens())) {
3648 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3649 BO->getLHS());
3650 warnOnSizeofOnArrayDecay(*this, BO->getOperatorLoc(), BO->getType(),
3651 BO->getRHS());
3652 }
Nico Weber0870deb2011-06-15 02:47:03 +00003653 }
3654
Chandler Carruth7c430c02011-05-27 01:33:31 +00003655 return false;
Chandler Carruth14502c22011-05-26 08:53:10 +00003656}
3657
3658/// \brief Check the constraints on operands to unary expression and type
3659/// traits.
3660///
3661/// This will complete any types necessary, and validate the various constraints
3662/// on those operands.
3663///
Steve Naroff71b59a92007-06-04 22:22:31 +00003664/// The UsualUnaryConversions() function is *not* called by this routine.
Chandler Carruth14502c22011-05-26 08:53:10 +00003665/// C99 6.3.2.1p[2-4] all state:
3666/// Except when it is the operand of the sizeof operator ...
3667///
3668/// C++ [expr.sizeof]p4
3669/// The lvalue-to-rvalue, array-to-pointer, and function-to-pointer
3670/// standard conversions are not applied to the operand of sizeof.
3671///
3672/// This policy is followed for all of the unary trait expressions.
Richard Trieuba63ce62011-09-09 01:45:06 +00003673bool Sema::CheckUnaryExprOrTypeTraitOperand(QualType ExprType,
Peter Collingbournee190dee2011-03-11 19:24:49 +00003674 SourceLocation OpLoc,
3675 SourceRange ExprRange,
3676 UnaryExprOrTypeTrait ExprKind) {
Richard Trieuba63ce62011-09-09 01:45:06 +00003677 if (ExprType->isDependentType())
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003678 return false;
3679
Richard Smithc3fbf682014-06-10 21:11:26 +00003680 // C++ [expr.sizeof]p2:
3681 // When applied to a reference or a reference type, the result
3682 // is the size of the referenced type.
3683 // C++11 [expr.alignof]p3:
3684 // When alignof is applied to a reference type, the result
3685 // shall be the alignment of the referenced type.
Richard Trieuba63ce62011-09-09 01:45:06 +00003686 if (const ReferenceType *Ref = ExprType->getAs<ReferenceType>())
3687 ExprType = Ref->getPointeeType();
Sebastian Redl22e2e5c2009-11-23 17:18:46 +00003688
Richard Smithc3fbf682014-06-10 21:11:26 +00003689 // C11 6.5.3.4/3, C++11 [expr.alignof]p3:
3690 // When alignof or _Alignof is applied to an array type, the result
3691 // is the alignment of the element type.
Alexey Bataev00396512015-07-02 03:40:19 +00003692 if (ExprKind == UETT_AlignOf || ExprKind == UETT_OpenMPRequiredSimdAlign)
Richard Smithc3fbf682014-06-10 21:11:26 +00003693 ExprType = Context.getBaseElementType(ExprType);
3694
Chandler Carruth62da79c2011-05-26 08:53:12 +00003695 if (ExprKind == UETT_VecStep)
Richard Trieuba63ce62011-09-09 01:45:06 +00003696 return CheckVecStepTraitOperandType(*this, ExprType, OpLoc, ExprRange);
Peter Collingbournee190dee2011-03-11 19:24:49 +00003697
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003698 // Whitelist some types as extensions
Richard Trieuba63ce62011-09-09 01:45:06 +00003699 if (!CheckExtensionTraitOperandType(*this, ExprType, OpLoc, ExprRange,
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003700 ExprKind))
Chris Lattnerb1355b12009-01-24 19:46:37 +00003701 return false;
Mike Stump11289f42009-09-09 15:08:12 +00003702
Richard Trieuba63ce62011-09-09 01:45:06 +00003703 if (RequireCompleteType(OpLoc, ExprType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00003704 diag::err_sizeof_alignof_incomplete_type,
3705 ExprKind, ExprRange))
Chris Lattner62975a72009-04-24 00:30:45 +00003706 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003707
Eli Friedman4e28b262013-08-13 22:26:42 +00003708 if (ExprType->isFunctionType()) {
3709 Diag(OpLoc, diag::err_sizeof_alignof_function_type)
3710 << ExprKind << ExprRange;
3711 return true;
3712 }
3713
Richard Trieuba63ce62011-09-09 01:45:06 +00003714 if (CheckObjCTraitOperandConstraints(*this, ExprType, OpLoc, ExprRange,
Chandler Carruthcea1aac2011-05-26 08:53:16 +00003715 ExprKind))
Chris Lattnercd2a8c52009-04-24 22:30:50 +00003716 return true;
Mike Stump11289f42009-09-09 15:08:12 +00003717
Chris Lattner62975a72009-04-24 00:30:45 +00003718 return false;
Steve Naroff043d45d2007-05-15 02:32:35 +00003719}
3720
Chandler Carruth14502c22011-05-26 08:53:10 +00003721static bool CheckAlignOfExpr(Sema &S, Expr *E) {
Chris Lattner8dff0172009-01-24 20:17:12 +00003722 E = E->IgnoreParens();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003723
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00003724 // Cannot know anything else if the expression is dependent.
3725 if (E->isTypeDependent())
3726 return false;
3727
John McCall768439e2013-05-06 07:40:34 +00003728 if (E->getObjectKind() == OK_BitField) {
Chandler Carruth14502c22011-05-26 08:53:10 +00003729 S.Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield)
3730 << 1 << E->getSourceRange();
Douglas Gregor71235ec2009-05-02 02:18:30 +00003731 return true;
Chris Lattner8dff0172009-01-24 20:17:12 +00003732 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00003733
Craig Topperc3ec1492014-05-26 06:22:03 +00003734 ValueDecl *D = nullptr;
John McCall768439e2013-05-06 07:40:34 +00003735 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
3736 D = DRE->getDecl();
3737 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
3738 D = ME->getMemberDecl();
3739 }
3740
3741 // If it's a field, require the containing struct to have a
3742 // complete definition so that we can compute the layout.
3743 //
Richard Smithc3fbf682014-06-10 21:11:26 +00003744 // This can happen in C++11 onwards, either by naming the member
3745 // in a way that is not transformed into a member access expression
3746 // (in an unevaluated operand, for instance), or by naming the member
3747 // in a trailing-return-type.
John McCall768439e2013-05-06 07:40:34 +00003748 //
3749 // For the record, since __alignof__ on expressions is a GCC
3750 // extension, GCC seems to permit this but always gives the
3751 // nonsensical answer 0.
3752 //
3753 // We don't really need the layout here --- we could instead just
3754 // directly check for all the appropriate alignment-lowing
3755 // attributes --- but that would require duplicating a lot of
3756 // logic that just isn't worth duplicating for such a marginal
3757 // use-case.
3758 if (FieldDecl *FD = dyn_cast_or_null<FieldDecl>(D)) {
3759 // Fast path this check, since we at least know the record has a
3760 // definition if we can find a member of it.
3761 if (!FD->getParent()->isCompleteDefinition()) {
3762 S.Diag(E->getExprLoc(), diag::err_alignof_member_of_incomplete_type)
3763 << E->getSourceRange();
3764 return true;
3765 }
3766
3767 // Otherwise, if it's a field, and the field doesn't have
3768 // reference type, then it must have a complete type (or be a
3769 // flexible array member, which we explicitly want to
3770 // white-list anyway), which makes the following checks trivial.
3771 if (!FD->getType()->isReferenceType())
Douglas Gregor71235ec2009-05-02 02:18:30 +00003772 return false;
John McCall768439e2013-05-06 07:40:34 +00003773 }
Douglas Gregor71235ec2009-05-02 02:18:30 +00003774
Chandler Carruth14502c22011-05-26 08:53:10 +00003775 return S.CheckUnaryExprOrTypeTraitOperand(E, UETT_AlignOf);
Peter Collingbournee190dee2011-03-11 19:24:49 +00003776}
3777
Chandler Carruth14502c22011-05-26 08:53:10 +00003778bool Sema::CheckVecStepExpr(Expr *E) {
Peter Collingbournee190dee2011-03-11 19:24:49 +00003779 E = E->IgnoreParens();
3780
3781 // Cannot know anything else if the expression is dependent.
3782 if (E->isTypeDependent())
3783 return false;
3784
Chandler Carruth14502c22011-05-26 08:53:10 +00003785 return CheckUnaryExprOrTypeTraitOperand(E, UETT_VecStep);
Chris Lattner8dff0172009-01-24 20:17:12 +00003786}
3787
Douglas Gregor0950e412009-03-13 21:01:28 +00003788/// \brief Build a sizeof or alignof expression given a type operand.
John McCalldadc5752010-08-24 06:29:42 +00003789ExprResult
Peter Collingbournee190dee2011-03-11 19:24:49 +00003790Sema::CreateUnaryExprOrTypeTraitExpr(TypeSourceInfo *TInfo,
3791 SourceLocation OpLoc,
3792 UnaryExprOrTypeTrait ExprKind,
3793 SourceRange R) {
John McCallbcd03502009-12-07 02:54:59 +00003794 if (!TInfo)
Douglas Gregor0950e412009-03-13 21:01:28 +00003795 return ExprError();
3796
John McCallbcd03502009-12-07 02:54:59 +00003797 QualType T = TInfo->getType();
John McCall4c98fd82009-11-04 07:28:41 +00003798
Douglas Gregor0950e412009-03-13 21:01:28 +00003799 if (!T->isDependentType() &&
Peter Collingbournee190dee2011-03-11 19:24:49 +00003800 CheckUnaryExprOrTypeTraitOperand(T, OpLoc, R, ExprKind))
Douglas Gregor0950e412009-03-13 21:01:28 +00003801 return ExprError();
3802
3803 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003804 return new (Context) UnaryExprOrTypeTraitExpr(
3805 ExprKind, TInfo, Context.getSizeType(), OpLoc, R.getEnd());
Douglas Gregor0950e412009-03-13 21:01:28 +00003806}
3807
3808/// \brief Build a sizeof or alignof expression given an expression
3809/// operand.
John McCalldadc5752010-08-24 06:29:42 +00003810ExprResult
Chandler Carrutha923fb22011-05-29 07:32:14 +00003811Sema::CreateUnaryExprOrTypeTraitExpr(Expr *E, SourceLocation OpLoc,
3812 UnaryExprOrTypeTrait ExprKind) {
Douglas Gregor835af982011-06-22 23:21:00 +00003813 ExprResult PE = CheckPlaceholderExpr(E);
3814 if (PE.isInvalid())
3815 return ExprError();
3816
3817 E = PE.get();
3818
Douglas Gregor0950e412009-03-13 21:01:28 +00003819 // Verify that the operand is valid.
3820 bool isInvalid = false;
3821 if (E->isTypeDependent()) {
3822 // Delay type-checking for type-dependent expressions.
Peter Collingbournee190dee2011-03-11 19:24:49 +00003823 } else if (ExprKind == UETT_AlignOf) {
Chandler Carruth14502c22011-05-26 08:53:10 +00003824 isInvalid = CheckAlignOfExpr(*this, E);
Peter Collingbournee190dee2011-03-11 19:24:49 +00003825 } else if (ExprKind == UETT_VecStep) {
Chandler Carruth14502c22011-05-26 08:53:10 +00003826 isInvalid = CheckVecStepExpr(E);
Alexey Bataev00396512015-07-02 03:40:19 +00003827 } else if (ExprKind == UETT_OpenMPRequiredSimdAlign) {
3828 Diag(E->getExprLoc(), diag::err_openmp_default_simd_align_expr);
3829 isInvalid = true;
John McCalld25db7e2013-05-06 21:39:12 +00003830 } else if (E->refersToBitField()) { // C99 6.5.3.4p1.
Chandler Carruth14502c22011-05-26 08:53:10 +00003831 Diag(E->getExprLoc(), diag::err_sizeof_alignof_bitfield) << 0;
Douglas Gregor0950e412009-03-13 21:01:28 +00003832 isInvalid = true;
3833 } else {
Chandler Carruth14502c22011-05-26 08:53:10 +00003834 isInvalid = CheckUnaryExprOrTypeTraitOperand(E, UETT_SizeOf);
Douglas Gregor0950e412009-03-13 21:01:28 +00003835 }
3836
3837 if (isInvalid)
3838 return ExprError();
3839
Eli Friedmane0afc982012-01-21 01:01:51 +00003840 if (ExprKind == UETT_SizeOf && E->getType()->isVariableArrayType()) {
Benjamin Kramerd81108f2012-11-14 15:08:31 +00003841 PE = TransformToPotentiallyEvaluated(E);
Eli Friedmane0afc982012-01-21 01:01:51 +00003842 if (PE.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003843 E = PE.get();
Eli Friedmane0afc982012-01-21 01:01:51 +00003844 }
3845
Douglas Gregor0950e412009-03-13 21:01:28 +00003846 // C99 6.5.3.4p4: the type (an unsigned integer type) is size_t.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003847 return new (Context) UnaryExprOrTypeTraitExpr(
3848 ExprKind, E, Context.getSizeType(), OpLoc, E->getSourceRange().getEnd());
Douglas Gregor0950e412009-03-13 21:01:28 +00003849}
3850
Peter Collingbournee190dee2011-03-11 19:24:49 +00003851/// ActOnUnaryExprOrTypeTraitExpr - Handle @c sizeof(type) and @c sizeof @c
3852/// expr and the same for @c alignof and @c __alignof
Sebastian Redl6f282892008-11-11 17:56:53 +00003853/// Note that the ArgRange is invalid if isType is false.
John McCalldadc5752010-08-24 06:29:42 +00003854ExprResult
Peter Collingbournee190dee2011-03-11 19:24:49 +00003855Sema::ActOnUnaryExprOrTypeTraitExpr(SourceLocation OpLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +00003856 UnaryExprOrTypeTrait ExprKind, bool IsType,
Peter Collingbournee190dee2011-03-11 19:24:49 +00003857 void *TyOrEx, const SourceRange &ArgRange) {
Chris Lattner0d8b1a12006-11-20 04:34:45 +00003858 // If error parsing type, ignore.
Craig Topperc3ec1492014-05-26 06:22:03 +00003859 if (!TyOrEx) return ExprError();
Steve Naroff043d45d2007-05-15 02:32:35 +00003860
Richard Trieuba63ce62011-09-09 01:45:06 +00003861 if (IsType) {
John McCallbcd03502009-12-07 02:54:59 +00003862 TypeSourceInfo *TInfo;
John McCallba7bf592010-08-24 05:47:05 +00003863 (void) GetTypeFromParser(ParsedType::getFromOpaquePtr(TyOrEx), &TInfo);
Peter Collingbournee190dee2011-03-11 19:24:49 +00003864 return CreateUnaryExprOrTypeTraitExpr(TInfo, OpLoc, ExprKind, ArgRange);
Mike Stump11289f42009-09-09 15:08:12 +00003865 }
Sebastian Redl6f282892008-11-11 17:56:53 +00003866
Douglas Gregor0950e412009-03-13 21:01:28 +00003867 Expr *ArgEx = (Expr *)TyOrEx;
Chandler Carrutha923fb22011-05-29 07:32:14 +00003868 ExprResult Result = CreateUnaryExprOrTypeTraitExpr(ArgEx, OpLoc, ExprKind);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003869 return Result;
Chris Lattnere168f762006-11-10 05:29:30 +00003870}
3871
John Wiegley01296292011-04-08 18:41:53 +00003872static QualType CheckRealImagOperand(Sema &S, ExprResult &V, SourceLocation Loc,
Richard Trieuba63ce62011-09-09 01:45:06 +00003873 bool IsReal) {
John Wiegley01296292011-04-08 18:41:53 +00003874 if (V.get()->isTypeDependent())
John McCall4bc41ae2010-11-18 19:01:18 +00003875 return S.Context.DependentTy;
Mike Stump11289f42009-09-09 15:08:12 +00003876
John McCall34376a62010-12-04 03:47:34 +00003877 // _Real and _Imag are only l-values for normal l-values.
John Wiegley01296292011-04-08 18:41:53 +00003878 if (V.get()->getObjectKind() != OK_Ordinary) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003879 V = S.DefaultLvalueConversion(V.get());
John Wiegley01296292011-04-08 18:41:53 +00003880 if (V.isInvalid())
3881 return QualType();
3882 }
John McCall34376a62010-12-04 03:47:34 +00003883
Chris Lattnere267f5d2007-08-26 05:39:26 +00003884 // These operators return the element type of a complex type.
John Wiegley01296292011-04-08 18:41:53 +00003885 if (const ComplexType *CT = V.get()->getType()->getAs<ComplexType>())
Chris Lattner30b5dd02007-08-24 21:16:53 +00003886 return CT->getElementType();
Mike Stump11289f42009-09-09 15:08:12 +00003887
Chris Lattnere267f5d2007-08-26 05:39:26 +00003888 // Otherwise they pass through real integer and floating point types here.
John Wiegley01296292011-04-08 18:41:53 +00003889 if (V.get()->getType()->isArithmeticType())
3890 return V.get()->getType();
Mike Stump11289f42009-09-09 15:08:12 +00003891
John McCall36226622010-10-12 02:09:17 +00003892 // Test for placeholders.
John McCall3aef3d82011-04-10 19:13:55 +00003893 ExprResult PR = S.CheckPlaceholderExpr(V.get());
John McCall36226622010-10-12 02:09:17 +00003894 if (PR.isInvalid()) return QualType();
John Wiegley01296292011-04-08 18:41:53 +00003895 if (PR.get() != V.get()) {
Benjamin Kramer62b95d82012-08-23 21:35:17 +00003896 V = PR;
Richard Trieuba63ce62011-09-09 01:45:06 +00003897 return CheckRealImagOperand(S, V, Loc, IsReal);
John McCall36226622010-10-12 02:09:17 +00003898 }
3899
Chris Lattnere267f5d2007-08-26 05:39:26 +00003900 // Reject anything else.
John Wiegley01296292011-04-08 18:41:53 +00003901 S.Diag(Loc, diag::err_realimag_invalid_type) << V.get()->getType()
Richard Trieuba63ce62011-09-09 01:45:06 +00003902 << (IsReal ? "__real" : "__imag");
Chris Lattnere267f5d2007-08-26 05:39:26 +00003903 return QualType();
Chris Lattner30b5dd02007-08-24 21:16:53 +00003904}
3905
3906
Chris Lattnere168f762006-11-10 05:29:30 +00003907
John McCalldadc5752010-08-24 06:29:42 +00003908ExprResult
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003909Sema::ActOnPostfixUnaryOp(Scope *S, SourceLocation OpLoc,
John McCallb268a282010-08-23 23:25:46 +00003910 tok::TokenKind Kind, Expr *Input) {
John McCalle3027922010-08-25 11:45:40 +00003911 UnaryOperatorKind Opc;
Chris Lattnere168f762006-11-10 05:29:30 +00003912 switch (Kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00003913 default: llvm_unreachable("Unknown unary op!");
John McCalle3027922010-08-25 11:45:40 +00003914 case tok::plusplus: Opc = UO_PostInc; break;
3915 case tok::minusminus: Opc = UO_PostDec; break;
Chris Lattnere168f762006-11-10 05:29:30 +00003916 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00003917
Sebastian Redla9351792012-02-11 23:51:47 +00003918 // Since this might is a postfix expression, get rid of ParenListExprs.
3919 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Input);
3920 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003921 Input = Result.get();
Sebastian Redla9351792012-02-11 23:51:47 +00003922
John McCallb268a282010-08-23 23:25:46 +00003923 return BuildUnaryOp(S, OpLoc, Opc, Input);
Chris Lattnere168f762006-11-10 05:29:30 +00003924}
3925
John McCallf2538342012-07-31 05:14:30 +00003926/// \brief Diagnose if arithmetic on the given ObjC pointer is illegal.
3927///
3928/// \return true on error
3929static bool checkArithmeticOnObjCPointer(Sema &S,
3930 SourceLocation opLoc,
3931 Expr *op) {
3932 assert(op->getType()->isObjCObjectPointerType());
Fariborz Jahaniane1e33f82013-11-01 21:58:17 +00003933 if (S.LangOpts.ObjCRuntime.allowsPointerArithmetic() &&
3934 !S.LangOpts.ObjCSubscriptingLegacyRuntime)
John McCallf2538342012-07-31 05:14:30 +00003935 return false;
3936
3937 S.Diag(opLoc, diag::err_arithmetic_nonfragile_interface)
3938 << op->getType()->castAs<ObjCObjectPointerType>()->getPointeeType()
3939 << op->getSourceRange();
3940 return true;
3941}
3942
John McCalldadc5752010-08-24 06:29:42 +00003943ExprResult
John McCallf22d0ac2013-03-04 01:30:55 +00003944Sema::ActOnArraySubscriptExpr(Scope *S, Expr *base, SourceLocation lbLoc,
3945 Expr *idx, SourceLocation rbLoc) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00003946 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCallf22d0ac2013-03-04 01:30:55 +00003947 if (isa<ParenListExpr>(base)) {
3948 ExprResult result = MaybeConvertParenListExprToParenExpr(S, base);
3949 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003950 base = result.get();
John McCallf22d0ac2013-03-04 01:30:55 +00003951 }
Nate Begeman5ec4b312009-08-10 23:49:36 +00003952
John McCallf22d0ac2013-03-04 01:30:55 +00003953 // Handle any non-overload placeholder types in the base and index
3954 // expressions. We can't handle overloads here because the other
3955 // operand might be an overloadable type, in which case the overload
3956 // resolution for the operator overload should get the first crack
3957 // at the overload.
3958 if (base->getType()->isNonOverloadPlaceholderType()) {
3959 ExprResult result = CheckPlaceholderExpr(base);
3960 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003961 base = result.get();
John McCallf22d0ac2013-03-04 01:30:55 +00003962 }
3963 if (idx->getType()->isNonOverloadPlaceholderType()) {
3964 ExprResult result = CheckPlaceholderExpr(idx);
3965 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003966 idx = result.get();
John McCallf22d0ac2013-03-04 01:30:55 +00003967 }
Mike Stump11289f42009-09-09 15:08:12 +00003968
John McCallf22d0ac2013-03-04 01:30:55 +00003969 // Build an unanalyzed expression if either operand is type-dependent.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003970 if (getLangOpts().CPlusPlus &&
John McCallf22d0ac2013-03-04 01:30:55 +00003971 (base->isTypeDependent() || idx->isTypeDependent())) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00003972 return new (Context) ArraySubscriptExpr(base, idx, Context.DependentTy,
3973 VK_LValue, OK_Ordinary, rbLoc);
Douglas Gregor7a77a6b2009-05-19 00:01:19 +00003974 }
3975
John McCallf22d0ac2013-03-04 01:30:55 +00003976 // Use C++ overloaded-operator rules if either operand has record
3977 // type. The spec says to do this if either type is *overloadable*,
3978 // but enum types can't declare subscript operators or conversion
3979 // operators, so there's nothing interesting for overload resolution
3980 // to do if there aren't any record types involved.
3981 //
3982 // ObjC pointers have their own subscripting logic that is not tied
3983 // to overload resolution and so should not take this path.
David Blaikiebbafb8a2012-03-11 07:00:24 +00003984 if (getLangOpts().CPlusPlus &&
John McCallf22d0ac2013-03-04 01:30:55 +00003985 (base->getType()->isRecordType() ||
3986 (!base->getType()->isObjCObjectPointerType() &&
3987 idx->getType()->isRecordType()))) {
3988 return CreateOverloadedArraySubscriptExpr(lbLoc, rbLoc, base, idx);
Douglas Gregor40412ac2008-11-19 17:17:41 +00003989 }
3990
John McCallf22d0ac2013-03-04 01:30:55 +00003991 return CreateBuiltinArraySubscriptExpr(base, lbLoc, idx, rbLoc);
Sebastian Redladba46e2009-10-29 20:17:01 +00003992}
3993
John McCalldadc5752010-08-24 06:29:42 +00003994ExprResult
John McCallb268a282010-08-23 23:25:46 +00003995Sema::CreateBuiltinArraySubscriptExpr(Expr *Base, SourceLocation LLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +00003996 Expr *Idx, SourceLocation RLoc) {
John McCallb268a282010-08-23 23:25:46 +00003997 Expr *LHSExp = Base;
3998 Expr *RHSExp = Idx;
Sebastian Redladba46e2009-10-29 20:17:01 +00003999
Chris Lattner36d572b2007-07-16 00:14:47 +00004000 // Perform default conversions.
John Wiegley01296292011-04-08 18:41:53 +00004001 if (!LHSExp->getType()->getAs<VectorType>()) {
4002 ExprResult Result = DefaultFunctionArrayLvalueConversion(LHSExp);
4003 if (Result.isInvalid())
4004 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004005 LHSExp = Result.get();
John Wiegley01296292011-04-08 18:41:53 +00004006 }
4007 ExprResult Result = DefaultFunctionArrayLvalueConversion(RHSExp);
4008 if (Result.isInvalid())
4009 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004010 RHSExp = Result.get();
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004011
Chris Lattner36d572b2007-07-16 00:14:47 +00004012 QualType LHSTy = LHSExp->getType(), RHSTy = RHSExp->getType();
John McCall7decc9e2010-11-18 06:31:45 +00004013 ExprValueKind VK = VK_LValue;
4014 ExprObjectKind OK = OK_Ordinary;
Steve Narofff1e53692007-03-23 22:27:02 +00004015
Steve Naroffc1aadb12007-03-28 21:49:40 +00004016 // C99 6.5.2.1p2: the expression e1[e2] is by definition precisely equivalent
Chris Lattnerf17bd422007-08-30 17:45:32 +00004017 // to the expression *((e1)+(e2)). This means the array "Base" may actually be
Mike Stump4e1f26a2009-02-19 03:04:26 +00004018 // in the subscript position. As a result, we need to derive the array base
Steve Narofff1e53692007-03-23 22:27:02 +00004019 // and index from the expression types.
Chris Lattner36d572b2007-07-16 00:14:47 +00004020 Expr *BaseExpr, *IndexExpr;
4021 QualType ResultType;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00004022 if (LHSTy->isDependentType() || RHSTy->isDependentType()) {
4023 BaseExpr = LHSExp;
4024 IndexExpr = RHSExp;
4025 ResultType = Context.DependentTy;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004026 } else if (const PointerType *PTy = LHSTy->getAs<PointerType>()) {
Chris Lattner36d572b2007-07-16 00:14:47 +00004027 BaseExpr = LHSExp;
4028 IndexExpr = RHSExp;
Chris Lattner36d572b2007-07-16 00:14:47 +00004029 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00004030 } else if (const ObjCObjectPointerType *PTy =
John McCallf2538342012-07-31 05:14:30 +00004031 LHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00004032 BaseExpr = LHSExp;
4033 IndexExpr = RHSExp;
John McCallf2538342012-07-31 05:14:30 +00004034
4035 // Use custom logic if this should be the pseudo-object subscript
4036 // expression.
Fariborz Jahaniane1e33f82013-11-01 21:58:17 +00004037 if (!LangOpts.isSubscriptPointerArithmetic())
Craig Topperc3ec1492014-05-26 06:22:03 +00004038 return BuildObjCSubscriptExpression(RLoc, BaseExpr, IndexExpr, nullptr,
4039 nullptr);
John McCallf2538342012-07-31 05:14:30 +00004040
Steve Naroff7cae42b2009-07-10 23:34:53 +00004041 ResultType = PTy->getPointeeType();
Fariborz Jahanianba0afde2012-03-28 17:56:49 +00004042 } else if (const PointerType *PTy = RHSTy->getAs<PointerType>()) {
4043 // Handle the uncommon case of "123[Ptr]".
4044 BaseExpr = RHSExp;
4045 IndexExpr = LHSExp;
4046 ResultType = PTy->getPointeeType();
Mike Stump11289f42009-09-09 15:08:12 +00004047 } else if (const ObjCObjectPointerType *PTy =
John McCall9dd450b2009-09-21 23:43:11 +00004048 RHSTy->getAs<ObjCObjectPointerType>()) {
Steve Naroff7cae42b2009-07-10 23:34:53 +00004049 // Handle the uncommon case of "123[Ptr]".
4050 BaseExpr = RHSExp;
4051 IndexExpr = LHSExp;
4052 ResultType = PTy->getPointeeType();
Fariborz Jahaniane1e33f82013-11-01 21:58:17 +00004053 if (!LangOpts.isSubscriptPointerArithmetic()) {
John McCallf2538342012-07-31 05:14:30 +00004054 Diag(LLoc, diag::err_subscript_nonfragile_interface)
4055 << ResultType << BaseExpr->getSourceRange();
4056 return ExprError();
4057 }
John McCall9dd450b2009-09-21 23:43:11 +00004058 } else if (const VectorType *VTy = LHSTy->getAs<VectorType>()) {
Chris Lattner41977962007-07-31 19:29:30 +00004059 BaseExpr = LHSExp; // vectors: V[123]
Chris Lattner36d572b2007-07-16 00:14:47 +00004060 IndexExpr = RHSExp;
John McCall7decc9e2010-11-18 06:31:45 +00004061 VK = LHSExp->getValueKind();
4062 if (VK != VK_RValue)
4063 OK = OK_VectorComponent;
Nate Begemanc1bf0612009-01-18 00:45:31 +00004064
Chris Lattner36d572b2007-07-16 00:14:47 +00004065 // FIXME: need to deal with const...
4066 ResultType = VTy->getElementType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00004067 } else if (LHSTy->isArrayType()) {
4068 // If we see an array that wasn't promoted by
Douglas Gregorb92a1562010-02-03 00:27:59 +00004069 // DefaultFunctionArrayLvalueConversion, it must be an array that
Eli Friedmanab2784f2009-04-25 23:46:54 +00004070 // wasn't promoted because of the C90 rule that doesn't
4071 // allow promoting non-lvalue arrays. Warn, then
4072 // force the promotion here.
4073 Diag(LHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4074 LHSExp->getSourceRange();
John Wiegley01296292011-04-08 18:41:53 +00004075 LHSExp = ImpCastExprToType(LHSExp, Context.getArrayDecayedType(LHSTy),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004076 CK_ArrayToPointerDecay).get();
Eli Friedmanab2784f2009-04-25 23:46:54 +00004077 LHSTy = LHSExp->getType();
4078
4079 BaseExpr = LHSExp;
4080 IndexExpr = RHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004081 ResultType = LHSTy->getAs<PointerType>()->getPointeeType();
Eli Friedmanab2784f2009-04-25 23:46:54 +00004082 } else if (RHSTy->isArrayType()) {
4083 // Same as previous, except for 123[f().a] case
4084 Diag(RHSExp->getLocStart(), diag::ext_subscript_non_lvalue) <<
4085 RHSExp->getSourceRange();
John Wiegley01296292011-04-08 18:41:53 +00004086 RHSExp = ImpCastExprToType(RHSExp, Context.getArrayDecayedType(RHSTy),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004087 CK_ArrayToPointerDecay).get();
Eli Friedmanab2784f2009-04-25 23:46:54 +00004088 RHSTy = RHSExp->getType();
4089
4090 BaseExpr = RHSExp;
4091 IndexExpr = LHSExp;
Ted Kremenekc23c7e62009-07-29 21:53:49 +00004092 ResultType = RHSTy->getAs<PointerType>()->getPointeeType();
Steve Naroffb3096442007-06-09 03:47:53 +00004093 } else {
Chris Lattner003af242009-04-25 22:50:55 +00004094 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_value)
4095 << LHSExp->getSourceRange() << RHSExp->getSourceRange());
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004096 }
Steve Naroffc1aadb12007-03-28 21:49:40 +00004097 // C99 6.5.2.1p1
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00004098 if (!IndexExpr->getType()->isIntegerType() && !IndexExpr->isTypeDependent())
Chris Lattner003af242009-04-25 22:50:55 +00004099 return ExprError(Diag(LLoc, diag::err_typecheck_subscript_not_integer)
4100 << IndexExpr->getSourceRange());
Steve Naroffb29cdd52007-07-10 18:23:31 +00004101
Daniel Dunbar4782a6e2009-09-17 06:31:17 +00004102 if ((IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_S) ||
Sam Weinigb7608d72009-09-14 20:14:57 +00004103 IndexExpr->getType()->isSpecificBuiltinType(BuiltinType::Char_U))
4104 && !IndexExpr->isTypeDependent())
Sam Weinig914244e2009-09-14 01:58:58 +00004105 Diag(LLoc, diag::warn_subscript_is_char) << IndexExpr->getSourceRange();
4106
Douglas Gregorac1fb652009-03-24 19:52:54 +00004107 // C99 6.5.2.1p1: "shall have type "pointer to *object* type". Similarly,
Mike Stump11289f42009-09-09 15:08:12 +00004108 // C++ [expr.sub]p1: The type "T" shall be a completely-defined object
4109 // type. Note that Functions are not objects, and that (in C99 parlance)
Douglas Gregorac1fb652009-03-24 19:52:54 +00004110 // incomplete types are not object types.
4111 if (ResultType->isFunctionType()) {
4112 Diag(BaseExpr->getLocStart(), diag::err_subscript_function_type)
4113 << ResultType << BaseExpr->getSourceRange();
4114 return ExprError();
4115 }
Mike Stump11289f42009-09-09 15:08:12 +00004116
David Blaikiebbafb8a2012-03-11 07:00:24 +00004117 if (ResultType->isVoidType() && !getLangOpts().CPlusPlus) {
Abramo Bagnara3aabb4b2010-09-13 06:50:07 +00004118 // GNU extension: subscripting on pointer to void
Chandler Carruth4cc3f292011-06-27 16:32:27 +00004119 Diag(LLoc, diag::ext_gnu_subscript_void_type)
4120 << BaseExpr->getSourceRange();
John McCall4bc41ae2010-11-18 19:01:18 +00004121
4122 // C forbids expressions of unqualified void type from being l-values.
4123 // See IsCForbiddenLValueType.
4124 if (!ResultType.hasQualifiers()) VK = VK_RValue;
Abramo Bagnara3aabb4b2010-09-13 06:50:07 +00004125 } else if (!ResultType->isDependentType() &&
Mike Stump11289f42009-09-09 15:08:12 +00004126 RequireCompleteType(LLoc, ResultType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00004127 diag::err_subscript_incomplete_type, BaseExpr))
Douglas Gregorac1fb652009-03-24 19:52:54 +00004128 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00004129
John McCall4bc41ae2010-11-18 19:01:18 +00004130 assert(VK == VK_RValue || LangOpts.CPlusPlus ||
Douglas Gregor5476205b2011-06-23 00:49:38 +00004131 !ResultType.isCForbiddenLValueType());
John McCall4bc41ae2010-11-18 19:01:18 +00004132
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004133 return new (Context)
4134 ArraySubscriptExpr(LHSExp, RHSExp, ResultType, VK, OK, RLoc);
Chris Lattnere168f762006-11-10 05:29:30 +00004135}
4136
John McCalldadc5752010-08-24 06:29:42 +00004137ExprResult Sema::BuildCXXDefaultArgExpr(SourceLocation CallLoc,
Nico Weber44887f62010-11-29 18:19:25 +00004138 FunctionDecl *FD,
4139 ParmVarDecl *Param) {
Anders Carlsson355933d2009-08-25 03:49:14 +00004140 if (Param->hasUnparsedDefaultArg()) {
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004141 Diag(CallLoc,
Nico Weberebd45a02010-11-30 04:44:33 +00004142 diag::err_use_of_default_argument_to_function_declared_later) <<
Anders Carlsson355933d2009-08-25 03:49:14 +00004143 FD << cast<CXXRecordDecl>(FD->getDeclContext())->getDeclName();
Mike Stump11289f42009-09-09 15:08:12 +00004144 Diag(UnparsedDefaultArgLocs[Param],
Nico Weberebd45a02010-11-30 04:44:33 +00004145 diag::note_default_argument_declared_here);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004146 return ExprError();
4147 }
4148
4149 if (Param->hasUninstantiatedDefaultArg()) {
4150 Expr *UninstExpr = Param->getUninstantiatedDefaultArg();
Anders Carlsson355933d2009-08-25 03:49:14 +00004151
Richard Smith505df232012-07-22 23:45:10 +00004152 EnterExpressionEvaluationContext EvalContext(*this, PotentiallyEvaluated,
4153 Param);
4154
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004155 // Instantiate the expression.
Richard Smith47752e42013-05-03 23:46:09 +00004156 MultiLevelTemplateArgumentList MutiLevelArgList
Craig Topperc3ec1492014-05-26 06:22:03 +00004157 = getTemplateInstantiationArgs(FD, nullptr, /*RelativeToPrimary=*/true);
Anders Carlsson657bad42009-09-05 05:14:19 +00004158
Richard Smith80934652012-07-16 01:09:10 +00004159 InstantiatingTemplate Inst(*this, CallLoc, Param,
Richard Smith47752e42013-05-03 23:46:09 +00004160 MutiLevelArgList.getInnermost());
Alp Tokerd4a72d52013-10-08 08:09:04 +00004161 if (Inst.isInvalid())
Richard Smith8a874c92012-07-08 02:38:24 +00004162 return ExprError();
Anders Carlsson355933d2009-08-25 03:49:14 +00004163
Nico Weber44887f62010-11-29 18:19:25 +00004164 ExprResult Result;
4165 {
4166 // C++ [dcl.fct.default]p5:
4167 // The names in the [default argument] expression are bound, and
4168 // the semantic constraints are checked, at the point where the
4169 // default argument expression appears.
Nico Weberebd45a02010-11-30 04:44:33 +00004170 ContextRAII SavedContext(*this, FD);
Douglas Gregora86bc002012-02-16 21:36:18 +00004171 LocalInstantiationScope Local(*this);
Richard Smith47752e42013-05-03 23:46:09 +00004172 Result = SubstExpr(UninstExpr, MutiLevelArgList);
Nico Weber44887f62010-11-29 18:19:25 +00004173 }
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004174 if (Result.isInvalid())
4175 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00004176
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004177 // Check the expression as an initializer for the parameter.
4178 InitializedEntity Entity
Fariborz Jahanian8fb87ae2010-09-24 17:30:16 +00004179 = InitializedEntity::InitializeParameter(Context, Param);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004180 InitializationKind Kind
4181 = InitializationKind::CreateCopy(Param->getLocation(),
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004182 /*FIXME:EqualLoc*/UninstExpr->getLocStart());
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004183 Expr *ResultE = Result.getAs<Expr>();
Douglas Gregor25ab25f2009-12-23 18:19:08 +00004184
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00004185 InitializationSequence InitSeq(*this, Entity, Kind, ResultE);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00004186 Result = InitSeq.Perform(*this, Entity, Kind, ResultE);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004187 if (Result.isInvalid())
4188 return ExprError();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004189
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004190 Expr *Arg = Result.getAs<Expr>();
Richard Smithc406cb72013-01-17 01:17:56 +00004191 CheckCompletedExpr(Arg, Param->getOuterLocStart());
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004192 // Build the default argument expression.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004193 return CXXDefaultArgExpr::Create(Context, CallLoc, Param, Arg);
Anders Carlsson355933d2009-08-25 03:49:14 +00004194 }
4195
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004196 // If the default expression creates temporaries, we need to
4197 // push them to the current stack of expression temporaries so they'll
4198 // be properly destroyed.
4199 // FIXME: We should really be rebuilding the default argument with new
4200 // bound temporaries; see the comment in PR5810.
John McCall28fc7092011-11-10 05:35:25 +00004201 // We don't need to do that with block decls, though, because
4202 // blocks in default argument expression can never capture anything.
4203 if (isa<ExprWithCleanups>(Param->getInit())) {
4204 // Set the "needs cleanups" bit regardless of whether there are
4205 // any explicit objects.
John McCall31168b02011-06-15 23:02:42 +00004206 ExprNeedsCleanups = true;
John McCall28fc7092011-11-10 05:35:25 +00004207
4208 // Append all the objects to the cleanup list. Right now, this
4209 // should always be a no-op, because blocks in default argument
4210 // expressions should never be able to capture anything.
4211 assert(!cast<ExprWithCleanups>(Param->getInit())->getNumObjects() &&
4212 "default argument expression has capturing blocks?");
Douglas Gregor6ed2fee2010-09-14 22:55:20 +00004213 }
Douglas Gregor8a01b2a2010-09-11 20:24:53 +00004214
4215 // We already type-checked the argument, so we know it works.
Douglas Gregor32b3de52010-09-11 23:32:50 +00004216 // Just mark all of the declarations in this potentially-evaluated expression
4217 // as being "referenced".
Douglas Gregor680e9e02012-02-21 19:11:17 +00004218 MarkDeclarationsReferencedInExpr(Param->getDefaultArg(),
4219 /*SkipLocalVariables=*/true);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004220 return CXXDefaultArgExpr::Create(Context, CallLoc, Param);
Anders Carlsson355933d2009-08-25 03:49:14 +00004221}
4222
Richard Smith55ce3522012-06-25 20:30:08 +00004223
4224Sema::VariadicCallType
4225Sema::getVariadicCallType(FunctionDecl *FDecl, const FunctionProtoType *Proto,
4226 Expr *Fn) {
4227 if (Proto && Proto->isVariadic()) {
4228 if (dyn_cast_or_null<CXXConstructorDecl>(FDecl))
4229 return VariadicConstructor;
4230 else if (Fn && Fn->getType()->isBlockPointerType())
4231 return VariadicBlock;
4232 else if (FDecl) {
4233 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
4234 if (Method->isInstance())
4235 return VariadicMethod;
Richard Trieu9be9c682013-06-22 02:30:38 +00004236 } else if (Fn && Fn->getType() == Context.BoundMemberTy)
4237 return VariadicMethod;
Richard Smith55ce3522012-06-25 20:30:08 +00004238 return VariadicFunction;
4239 }
4240 return VariadicDoesNotApply;
4241}
4242
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004243namespace {
4244class FunctionCallCCC : public FunctionCallFilterCCC {
4245public:
4246 FunctionCallCCC(Sema &SemaRef, const IdentifierInfo *FuncName,
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004247 unsigned NumArgs, MemberExpr *ME)
4248 : FunctionCallFilterCCC(SemaRef, NumArgs, false, ME),
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004249 FunctionName(FuncName) {}
4250
Craig Toppere14c0f82014-03-12 04:55:44 +00004251 bool ValidateCandidate(const TypoCorrection &candidate) override {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004252 if (!candidate.getCorrectionSpecifier() ||
4253 candidate.getCorrectionAsIdentifierInfo() != FunctionName) {
4254 return false;
4255 }
4256
4257 return FunctionCallFilterCCC::ValidateCandidate(candidate);
4258 }
4259
4260private:
4261 const IdentifierInfo *const FunctionName;
4262};
Alexander Kornienkoab9db512015-06-22 23:07:51 +00004263}
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004264
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004265static TypoCorrection TryTypoCorrectionForCall(Sema &S, Expr *Fn,
4266 FunctionDecl *FDecl,
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004267 ArrayRef<Expr *> Args) {
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004268 MemberExpr *ME = dyn_cast<MemberExpr>(Fn);
4269 DeclarationName FuncName = FDecl->getDeclName();
4270 SourceLocation NameLoc = ME ? ME->getMemberLoc() : Fn->getLocStart();
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004271
4272 if (TypoCorrection Corrected = S.CorrectTypo(
4273 DeclarationNameInfo(FuncName, NameLoc), Sema::LookupOrdinaryName,
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004274 S.getScopeForContext(S.CurContext), nullptr,
4275 llvm::make_unique<FunctionCallCCC>(S, FuncName.getAsIdentifierInfo(),
4276 Args.size(), ME),
John Thompson2255f2c2014-04-23 12:57:01 +00004277 Sema::CTK_ErrorRecovery)) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004278 if (NamedDecl *ND = Corrected.getCorrectionDecl()) {
4279 if (Corrected.isOverloaded()) {
Richard Smith100b24a2014-04-17 01:52:14 +00004280 OverloadCandidateSet OCS(NameLoc, OverloadCandidateSet::CSK_Normal);
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004281 OverloadCandidateSet::iterator Best;
4282 for (TypoCorrection::decl_iterator CD = Corrected.begin(),
4283 CDEnd = Corrected.end();
4284 CD != CDEnd; ++CD) {
4285 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(*CD))
4286 S.AddOverloadCandidate(FD, DeclAccessPair::make(FD, AS_none), Args,
4287 OCS);
4288 }
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004289 switch (OCS.BestViableFunction(S, NameLoc, Best)) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004290 case OR_Success:
4291 ND = Best->Function;
4292 Corrected.setCorrectionDecl(ND);
4293 break;
4294 default:
4295 break;
4296 }
4297 }
4298 if (isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND)) {
4299 return Corrected;
4300 }
4301 }
4302 }
4303 return TypoCorrection();
4304}
4305
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004306/// ConvertArgumentsForCall - Converts the arguments specified in
4307/// Args/NumArgs to the parameter types of the function FDecl with
4308/// function prototype Proto. Call is the call expression itself, and
4309/// Fn is the function expression. For a C++ member function, this
4310/// routine does not attempt to convert the object argument. Returns
4311/// true if the call is ill-formed.
Mike Stump4e1f26a2009-02-19 03:04:26 +00004312bool
4313Sema::ConvertArgumentsForCall(CallExpr *Call, Expr *Fn,
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004314 FunctionDecl *FDecl,
Douglas Gregordeaad8c2009-02-26 23:50:07 +00004315 const FunctionProtoType *Proto,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004316 ArrayRef<Expr *> Args,
Peter Collingbourne619a8c72011-10-02 23:49:29 +00004317 SourceLocation RParenLoc,
4318 bool IsExecConfig) {
John McCallbebede42011-02-26 05:39:39 +00004319 // Bail out early if calling a builtin with custom typechecking.
John McCallbebede42011-02-26 05:39:39 +00004320 if (FDecl)
4321 if (unsigned ID = FDecl->getBuiltinID())
4322 if (Context.BuiltinInfo.hasCustomTypechecking(ID))
4323 return false;
4324
Mike Stump4e1f26a2009-02-19 03:04:26 +00004325 // C99 6.5.2.2p7 - the arguments are implicitly converted, as if by
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004326 // assignment, to the types of the corresponding parameter, ...
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004327 unsigned NumParams = Proto->getNumParams();
Douglas Gregorb6b99612009-01-23 21:30:56 +00004328 bool Invalid = false;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004329 unsigned MinArgs = FDecl ? FDecl->getMinRequiredArguments() : NumParams;
Peter Collingbourne619a8c72011-10-02 23:49:29 +00004330 unsigned FnKind = Fn->getType()->isBlockPointerType()
4331 ? 1 /* block */
4332 : (IsExecConfig ? 3 /* kernel function (exec config) */
4333 : 0 /* function */);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004334
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004335 // If too few arguments are available (and we don't have default
4336 // arguments for the remaining parameters), don't make the call.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004337 if (Args.size() < NumParams) {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004338 if (Args.size() < MinArgs) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004339 TypoCorrection TC;
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004340 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004341 unsigned diag_id =
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004342 MinArgs == NumParams && !Proto->isVariadic()
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004343 ? diag::err_typecheck_call_too_few_args_suggest
4344 : diag::err_typecheck_call_too_few_args_at_least_suggest;
Richard Smithf9b15102013-08-17 00:46:16 +00004345 diagnoseTypo(TC, PDiag(diag_id) << FnKind << MinArgs
4346 << static_cast<unsigned>(Args.size())
Kaelyn Uhrain59baee82014-01-28 00:46:47 +00004347 << TC.getCorrectionRange());
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004348 } else if (MinArgs == 1 && FDecl && FDecl->getParamDecl(0)->getDeclName())
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004349 Diag(RParenLoc,
4350 MinArgs == NumParams && !Proto->isVariadic()
4351 ? diag::err_typecheck_call_too_few_args_one
4352 : diag::err_typecheck_call_too_few_args_at_least_one)
4353 << FnKind << FDecl->getParamDecl(0) << Fn->getSourceRange();
Richard Smith10ff50d2012-05-11 05:16:41 +00004354 else
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004355 Diag(RParenLoc, MinArgs == NumParams && !Proto->isVariadic()
4356 ? diag::err_typecheck_call_too_few_args
4357 : diag::err_typecheck_call_too_few_args_at_least)
4358 << FnKind << MinArgs << static_cast<unsigned>(Args.size())
4359 << Fn->getSourceRange();
Peter Collingbourne3bc84ca2011-07-29 00:24:42 +00004360
4361 // Emit the location of the prototype.
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004362 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
Peter Collingbourne3bc84ca2011-07-29 00:24:42 +00004363 Diag(FDecl->getLocStart(), diag::note_callee_decl)
4364 << FDecl;
4365
4366 return true;
4367 }
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004368 Call->setNumArgs(Context, NumParams);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004369 }
4370
4371 // If too many are passed and not variadic, error on the extras and drop
4372 // them.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004373 if (Args.size() > NumParams) {
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004374 if (!Proto->isVariadic()) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004375 TypoCorrection TC;
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004376 if (FDecl && (TC = TryTypoCorrectionForCall(*this, Fn, FDecl, Args))) {
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004377 unsigned diag_id =
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004378 MinArgs == NumParams && !Proto->isVariadic()
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004379 ? diag::err_typecheck_call_too_many_args_suggest
4380 : diag::err_typecheck_call_too_many_args_at_most_suggest;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004381 diagnoseTypo(TC, PDiag(diag_id) << FnKind << NumParams
Richard Smithf9b15102013-08-17 00:46:16 +00004382 << static_cast<unsigned>(Args.size())
Kaelyn Uhrain59baee82014-01-28 00:46:47 +00004383 << TC.getCorrectionRange());
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004384 } else if (NumParams == 1 && FDecl &&
Richard Smithf9b15102013-08-17 00:46:16 +00004385 FDecl->getParamDecl(0)->getDeclName())
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004386 Diag(Args[NumParams]->getLocStart(),
4387 MinArgs == NumParams
4388 ? diag::err_typecheck_call_too_many_args_one
4389 : diag::err_typecheck_call_too_many_args_at_most_one)
4390 << FnKind << FDecl->getParamDecl(0)
4391 << static_cast<unsigned>(Args.size()) << Fn->getSourceRange()
4392 << SourceRange(Args[NumParams]->getLocStart(),
4393 Args.back()->getLocEnd());
Richard Smithd72da152012-05-15 06:21:54 +00004394 else
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004395 Diag(Args[NumParams]->getLocStart(),
4396 MinArgs == NumParams
4397 ? diag::err_typecheck_call_too_many_args
4398 : diag::err_typecheck_call_too_many_args_at_most)
4399 << FnKind << NumParams << static_cast<unsigned>(Args.size())
4400 << Fn->getSourceRange()
4401 << SourceRange(Args[NumParams]->getLocStart(),
4402 Args.back()->getLocEnd());
Ted Kremenek99a337e2011-04-04 17:22:27 +00004403
4404 // Emit the location of the prototype.
Kaelyn Uhrain476c8232013-07-08 23:13:44 +00004405 if (!TC && FDecl && !FDecl->getBuiltinID() && !IsExecConfig)
Peter Collingbourne3bc84ca2011-07-29 00:24:42 +00004406 Diag(FDecl->getLocStart(), diag::note_callee_decl)
4407 << FDecl;
Ted Kremenek99a337e2011-04-04 17:22:27 +00004408
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004409 // This deletes the extra arguments.
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004410 Call->setNumArgs(Context, NumParams);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004411 return true;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004412 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004413 }
Chris Lattner0e62c1c2011-07-23 10:55:15 +00004414 SmallVector<Expr *, 8> AllArgs;
Richard Smith55ce3522012-06-25 20:30:08 +00004415 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn);
4416
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004417 Invalid = GatherArgumentsForCall(Call->getLocStart(), FDecl,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004418 Proto, 0, Args, AllArgs, CallType);
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004419 if (Invalid)
4420 return true;
4421 unsigned TotalNumArgs = AllArgs.size();
4422 for (unsigned i = 0; i < TotalNumArgs; ++i)
4423 Call->setArg(i, AllArgs[i]);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004424
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004425 return false;
4426}
Mike Stump4e1f26a2009-02-19 03:04:26 +00004427
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004428bool Sema::GatherArgumentsForCall(SourceLocation CallLoc, FunctionDecl *FDecl,
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004429 const FunctionProtoType *Proto,
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004430 unsigned FirstParam, ArrayRef<Expr *> Args,
Craig Topper5603df42013-07-05 19:34:19 +00004431 SmallVectorImpl<Expr *> &AllArgs,
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004432 VariadicCallType CallType, bool AllowExplicit,
Richard Smith6b216962013-02-05 05:52:24 +00004433 bool IsListInitialization) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00004434 unsigned NumParams = Proto->getNumParams();
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004435 bool Invalid = false;
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004436 unsigned ArgIx = 0;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004437 // Continue to check argument types (even if we have too few/many args).
Richard Smithd6f9e732014-05-13 19:56:21 +00004438 for (unsigned i = FirstParam; i < NumParams; i++) {
Alp Toker9cacbab2014-01-20 20:26:09 +00004439 QualType ProtoArgType = Proto->getParamType(i);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004440
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004441 Expr *Arg;
Richard Smithd6f9e732014-05-13 19:56:21 +00004442 ParmVarDecl *Param = FDecl ? FDecl->getParamDecl(i) : nullptr;
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004443 if (ArgIx < Args.size()) {
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004444 Arg = Args[ArgIx++];
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004445
Daniel Dunbar62ee6412012-03-09 18:35:03 +00004446 if (RequireCompleteType(Arg->getLocStart(),
Eli Friedman3164fb12009-03-22 22:00:50 +00004447 ProtoArgType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00004448 diag::err_call_incomplete_argument, Arg))
Eli Friedman3164fb12009-03-22 22:00:50 +00004449 return true;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004450
John McCall4124c492011-10-17 18:40:02 +00004451 // Strip the unbridged-cast placeholder expression off, if applicable.
Fariborz Jahanian48d94c82013-07-31 18:39:08 +00004452 bool CFAudited = false;
John McCall4124c492011-10-17 18:40:02 +00004453 if (Arg->getType() == Context.ARCUnbridgedCastTy &&
4454 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
4455 (!Param || !Param->hasAttr<CFConsumedAttr>()))
4456 Arg = stripARCUnbridgedCast(Arg);
Fariborz Jahanian3a25d0d2013-07-31 23:19:34 +00004457 else if (getLangOpts().ObjCAutoRefCount &&
4458 FDecl && FDecl->hasAttr<CFAuditedTransferAttr>() &&
Fariborz Jahanian48d94c82013-07-31 18:39:08 +00004459 (!Param || !Param->hasAttr<CFConsumedAttr>()))
4460 CFAudited = true;
John McCall4124c492011-10-17 18:40:02 +00004461
Alp Toker9cacbab2014-01-20 20:26:09 +00004462 InitializedEntity Entity =
4463 Param ? InitializedEntity::InitializeParameter(Context, Param,
4464 ProtoArgType)
4465 : InitializedEntity::InitializeParameter(
4466 Context, ProtoArgType, Proto->isParamConsumed(i));
4467
Fariborz Jahanian131996b2013-07-31 18:21:45 +00004468 // Remember that parameter belongs to a CF audited API.
Fariborz Jahanian48d94c82013-07-31 18:39:08 +00004469 if (CFAudited)
Fariborz Jahanian131996b2013-07-31 18:21:45 +00004470 Entity.setParameterCFAudited();
Richard Smithd6f9e732014-05-13 19:56:21 +00004471
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004472 ExprResult ArgE = PerformCopyInitialization(
4473 Entity, SourceLocation(), Arg, IsListInitialization, AllowExplicit);
Douglas Gregorbbeb5c32009-12-22 16:09:06 +00004474 if (ArgE.isInvalid())
4475 return true;
4476
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004477 Arg = ArgE.getAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00004478 } else {
Richard Smithd6f9e732014-05-13 19:56:21 +00004479 assert(Param && "can't use default arguments without a known callee");
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004480
John McCalldadc5752010-08-24 06:29:42 +00004481 ExprResult ArgExpr =
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004482 BuildCXXDefaultArgExpr(CallLoc, FDecl, Param);
Anders Carlsson355933d2009-08-25 03:49:14 +00004483 if (ArgExpr.isInvalid())
4484 return true;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004485
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004486 Arg = ArgExpr.getAs<Expr>();
Anders Carlsson84613c42009-06-12 16:51:40 +00004487 }
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00004488
4489 // Check for array bounds violations for each argument to the call. This
4490 // check only triggers warnings when the argument isn't a more complex Expr
4491 // with its own checking, such as a BinaryOperator.
4492 CheckArrayAccess(Arg);
4493
Peter Collingbournea48f33f2011-10-19 00:16:45 +00004494 // Check for violations of C99 static array rules (C99 6.7.5.3p7).
4495 CheckStaticArrayArgument(CallLoc, Param, Arg);
4496
Fariborz Jahanian835026e2009-11-24 18:29:37 +00004497 AllArgs.push_back(Arg);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004498 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00004499
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004500 // If this is a variadic call, handle args passed through "...".
Fariborz Jahanian6f2d25e2009-11-24 19:27:49 +00004501 if (CallType != VariadicDoesNotApply) {
John McCall2979fe02011-04-12 00:42:48 +00004502 // Assume that extern "C" functions with variadic arguments that
4503 // return __unknown_anytype aren't *really* variadic.
Alp Toker314cc812014-01-25 16:55:45 +00004504 if (Proto->getReturnType() == Context.UnknownAnyTy && FDecl &&
4505 FDecl->isExternC()) {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004506 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) {
John McCallcc5788c2013-03-04 07:34:02 +00004507 QualType paramType; // ignored
4508 ExprResult arg = checkUnknownAnyArg(CallLoc, Args[i], paramType);
John McCall2979fe02011-04-12 00:42:48 +00004509 Invalid |= arg.isInvalid();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004510 AllArgs.push_back(arg.get());
John McCall2979fe02011-04-12 00:42:48 +00004511 }
4512
4513 // Otherwise do argument promotion, (C99 6.5.2.2p7).
4514 } else {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004515 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i) {
Richard Trieucfc491d2011-08-02 04:35:43 +00004516 ExprResult Arg = DefaultVariadicArgumentPromotion(Args[i], CallType,
4517 FDecl);
John McCall2979fe02011-04-12 00:42:48 +00004518 Invalid |= Arg.isInvalid();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004519 AllArgs.push_back(Arg.get());
John McCall2979fe02011-04-12 00:42:48 +00004520 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004521 }
Ted Kremenekd41f3462011-09-26 23:36:13 +00004522
4523 // Check for array bounds violations.
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004524 for (unsigned i = ArgIx, e = Args.size(); i != e; ++i)
Ted Kremenekd41f3462011-09-26 23:36:13 +00004525 CheckArrayAccess(Args[i]);
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004526 }
Douglas Gregorb6b99612009-01-23 21:30:56 +00004527 return Invalid;
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004528}
4529
Peter Collingbournea48f33f2011-10-19 00:16:45 +00004530static void DiagnoseCalleeStaticArrayParam(Sema &S, ParmVarDecl *PVD) {
4531 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
Reid Kleckner8a365022013-06-24 17:51:48 +00004532 if (DecayedTypeLoc DTL = TL.getAs<DecayedTypeLoc>())
4533 TL = DTL.getOriginalLoc();
David Blaikie6adc78e2013-02-18 22:06:02 +00004534 if (ArrayTypeLoc ATL = TL.getAs<ArrayTypeLoc>())
Peter Collingbournea48f33f2011-10-19 00:16:45 +00004535 S.Diag(PVD->getLocation(), diag::note_callee_static_array)
David Blaikie6adc78e2013-02-18 22:06:02 +00004536 << ATL.getLocalSourceRange();
Peter Collingbournea48f33f2011-10-19 00:16:45 +00004537}
4538
4539/// CheckStaticArrayArgument - If the given argument corresponds to a static
4540/// array parameter, check that it is non-null, and that if it is formed by
4541/// array-to-pointer decay, the underlying array is sufficiently large.
4542///
4543/// C99 6.7.5.3p7: If the keyword static also appears within the [ and ] of the
4544/// array type derivation, then for each call to the function, the value of the
4545/// corresponding actual argument shall provide access to the first element of
4546/// an array with at least as many elements as specified by the size expression.
4547void
4548Sema::CheckStaticArrayArgument(SourceLocation CallLoc,
4549 ParmVarDecl *Param,
4550 const Expr *ArgExpr) {
4551 // Static array parameters are not supported in C++.
David Blaikiebbafb8a2012-03-11 07:00:24 +00004552 if (!Param || getLangOpts().CPlusPlus)
Peter Collingbournea48f33f2011-10-19 00:16:45 +00004553 return;
4554
4555 QualType OrigTy = Param->getOriginalType();
4556
4557 const ArrayType *AT = Context.getAsArrayType(OrigTy);
4558 if (!AT || AT->getSizeModifier() != ArrayType::Static)
4559 return;
4560
4561 if (ArgExpr->isNullPointerConstant(Context,
4562 Expr::NPC_NeverValueDependent)) {
4563 Diag(CallLoc, diag::warn_null_arg) << ArgExpr->getSourceRange();
4564 DiagnoseCalleeStaticArrayParam(*this, Param);
4565 return;
4566 }
4567
4568 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT);
4569 if (!CAT)
4570 return;
4571
4572 const ConstantArrayType *ArgCAT =
4573 Context.getAsConstantArrayType(ArgExpr->IgnoreParenImpCasts()->getType());
4574 if (!ArgCAT)
4575 return;
4576
4577 if (ArgCAT->getSize().ult(CAT->getSize())) {
4578 Diag(CallLoc, diag::warn_static_array_too_small)
4579 << ArgExpr->getSourceRange()
4580 << (unsigned) ArgCAT->getSize().getZExtValue()
4581 << (unsigned) CAT->getSize().getZExtValue();
4582 DiagnoseCalleeStaticArrayParam(*this, Param);
4583 }
4584}
4585
John McCall2979fe02011-04-12 00:42:48 +00004586/// Given a function expression of unknown-any type, try to rebuild it
4587/// to have a function type.
4588static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *fn);
4589
John McCall5e77d762013-04-16 07:28:30 +00004590/// Is the given type a placeholder that we need to lower out
4591/// immediately during argument processing?
4592static bool isPlaceholderToRemoveAsArg(QualType type) {
4593 // Placeholders are never sugared.
4594 const BuiltinType *placeholder = dyn_cast<BuiltinType>(type);
4595 if (!placeholder) return false;
4596
4597 switch (placeholder->getKind()) {
4598 // Ignore all the non-placeholder types.
4599#define PLACEHOLDER_TYPE(ID, SINGLETON_ID)
4600#define BUILTIN_TYPE(ID, SINGLETON_ID) case BuiltinType::ID:
4601#include "clang/AST/BuiltinTypes.def"
4602 return false;
4603
4604 // We cannot lower out overload sets; they might validly be resolved
4605 // by the call machinery.
4606 case BuiltinType::Overload:
4607 return false;
4608
4609 // Unbridged casts in ARC can be handled in some call positions and
4610 // should be left in place.
4611 case BuiltinType::ARCUnbridgedCast:
4612 return false;
4613
4614 // Pseudo-objects should be converted as soon as possible.
4615 case BuiltinType::PseudoObject:
4616 return true;
4617
4618 // The debugger mode could theoretically but currently does not try
4619 // to resolve unknown-typed arguments based on known parameter types.
4620 case BuiltinType::UnknownAny:
4621 return true;
4622
4623 // These are always invalid as call arguments and should be reported.
4624 case BuiltinType::BoundMember:
4625 case BuiltinType::BuiltinFn:
4626 return true;
4627 }
4628 llvm_unreachable("bad builtin type kind");
4629}
4630
4631/// Check an argument list for placeholders that we won't try to
4632/// handle later.
4633static bool checkArgsForPlaceholders(Sema &S, MultiExprArg args) {
4634 // Apply this processing to all the arguments at once instead of
4635 // dying at the first failure.
4636 bool hasInvalid = false;
4637 for (size_t i = 0, e = args.size(); i != e; i++) {
4638 if (isPlaceholderToRemoveAsArg(args[i]->getType())) {
4639 ExprResult result = S.CheckPlaceholderExpr(args[i]);
4640 if (result.isInvalid()) hasInvalid = true;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004641 else args[i] = result.get();
Kaelyn Takata15867822014-11-21 18:48:04 +00004642 } else if (hasInvalid) {
4643 (void)S.CorrectDelayedTyposInExpr(args[i]);
John McCall5e77d762013-04-16 07:28:30 +00004644 }
4645 }
4646 return hasInvalid;
4647}
4648
Tom Stellardb919c7d2015-03-31 16:39:02 +00004649/// If a builtin function has a pointer argument with no explicit address
4650/// space, than it should be able to accept a pointer to any address
4651/// space as input. In order to do this, we need to replace the
4652/// standard builtin declaration with one that uses the same address space
4653/// as the call.
4654///
4655/// \returns nullptr If this builtin is not a candidate for a rewrite i.e.
4656/// it does not contain any pointer arguments without
4657/// an address space qualifer. Otherwise the rewritten
4658/// FunctionDecl is returned.
4659/// TODO: Handle pointer return types.
4660static FunctionDecl *rewriteBuiltinFunctionDecl(Sema *Sema, ASTContext &Context,
4661 const FunctionDecl *FDecl,
4662 MultiExprArg ArgExprs) {
4663
4664 QualType DeclType = FDecl->getType();
4665 const FunctionProtoType *FT = dyn_cast<FunctionProtoType>(DeclType);
4666
4667 if (!Context.BuiltinInfo.hasPtrArgsOrResult(FDecl->getBuiltinID()) ||
4668 !FT || FT->isVariadic() || ArgExprs.size() != FT->getNumParams())
4669 return nullptr;
4670
4671 bool NeedsNewDecl = false;
4672 unsigned i = 0;
4673 SmallVector<QualType, 8> OverloadParams;
4674
4675 for (QualType ParamType : FT->param_types()) {
4676
4677 // Convert array arguments to pointer to simplify type lookup.
4678 Expr *Arg = Sema->DefaultFunctionArrayLvalueConversion(ArgExprs[i++]).get();
4679 QualType ArgType = Arg->getType();
4680 if (!ParamType->isPointerType() ||
4681 ParamType.getQualifiers().hasAddressSpace() ||
4682 !ArgType->isPointerType() ||
4683 !ArgType->getPointeeType().getQualifiers().hasAddressSpace()) {
4684 OverloadParams.push_back(ParamType);
4685 continue;
4686 }
4687
4688 NeedsNewDecl = true;
4689 unsigned AS = ArgType->getPointeeType().getQualifiers().getAddressSpace();
4690
4691 QualType PointeeType = ParamType->getPointeeType();
4692 PointeeType = Context.getAddrSpaceQualType(PointeeType, AS);
4693 OverloadParams.push_back(Context.getPointerType(PointeeType));
4694 }
4695
4696 if (!NeedsNewDecl)
4697 return nullptr;
4698
4699 FunctionProtoType::ExtProtoInfo EPI;
4700 QualType OverloadTy = Context.getFunctionType(FT->getReturnType(),
4701 OverloadParams, EPI);
4702 DeclContext *Parent = Context.getTranslationUnitDecl();
4703 FunctionDecl *OverloadDecl = FunctionDecl::Create(Context, Parent,
4704 FDecl->getLocation(),
4705 FDecl->getLocation(),
4706 FDecl->getIdentifier(),
4707 OverloadTy,
4708 /*TInfo=*/nullptr,
4709 SC_Extern, false,
4710 /*hasPrototype=*/true);
4711 SmallVector<ParmVarDecl*, 16> Params;
4712 FT = cast<FunctionProtoType>(OverloadTy);
4713 for (unsigned i = 0, e = FT->getNumParams(); i != e; ++i) {
4714 QualType ParamType = FT->getParamType(i);
4715 ParmVarDecl *Parm =
4716 ParmVarDecl::Create(Context, OverloadDecl, SourceLocation(),
4717 SourceLocation(), nullptr, ParamType,
4718 /*TInfo=*/nullptr, SC_None, nullptr);
4719 Parm->setScopeInfo(0, i);
4720 Params.push_back(Parm);
4721 }
4722 OverloadDecl->setParams(Params);
4723 return OverloadDecl;
4724}
4725
Steve Naroff83895f72007-09-16 03:34:24 +00004726/// ActOnCallExpr - Handle a call to Fn with the specified array of arguments.
Chris Lattnere168f762006-11-10 05:29:30 +00004727/// This provides the location of the left/right parens and a list of comma
4728/// locations.
John McCalldadc5752010-08-24 06:29:42 +00004729ExprResult
John McCallb268a282010-08-23 23:25:46 +00004730Sema::ActOnCallExpr(Scope *S, Expr *Fn, SourceLocation LParenLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +00004731 MultiExprArg ArgExprs, SourceLocation RParenLoc,
Peter Collingbourne619a8c72011-10-02 23:49:29 +00004732 Expr *ExecConfig, bool IsExecConfig) {
Nate Begeman5ec4b312009-08-10 23:49:36 +00004733 // Since this might be a postfix expression, get rid of ParenListExprs.
John McCalldadc5752010-08-24 06:29:42 +00004734 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, Fn);
John McCallb268a282010-08-23 23:25:46 +00004735 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004736 Fn = Result.get();
Mike Stump11289f42009-09-09 15:08:12 +00004737
John McCall5e77d762013-04-16 07:28:30 +00004738 if (checkArgsForPlaceholders(*this, ArgExprs))
4739 return ExprError();
4740
David Blaikiebbafb8a2012-03-11 07:00:24 +00004741 if (getLangOpts().CPlusPlus) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00004742 // If this is a pseudo-destructor expression, build the call immediately.
4743 if (isa<CXXPseudoDestructorExpr>(Fn)) {
Benjamin Kramerc215e762012-08-24 11:54:20 +00004744 if (!ArgExprs.empty()) {
Douglas Gregorad8a3362009-09-04 17:36:40 +00004745 // Pseudo-destructor calls should not have any arguments.
4746 Diag(Fn->getLocStart(), diag::err_pseudo_dtor_call_with_args)
Douglas Gregora771f462010-03-31 17:46:05 +00004747 << FixItHint::CreateRemoval(
Benjamin Kramerc215e762012-08-24 11:54:20 +00004748 SourceRange(ArgExprs[0]->getLocStart(),
4749 ArgExprs.back()->getLocEnd()));
Douglas Gregorad8a3362009-09-04 17:36:40 +00004750 }
Mike Stump11289f42009-09-09 15:08:12 +00004751
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004752 return new (Context)
4753 CallExpr(Context, Fn, None, Context.VoidTy, VK_RValue, RParenLoc);
Douglas Gregorad8a3362009-09-04 17:36:40 +00004754 }
John McCall5e77d762013-04-16 07:28:30 +00004755 if (Fn->getType() == Context.PseudoObjectTy) {
4756 ExprResult result = CheckPlaceholderExpr(Fn);
4757 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004758 Fn = result.get();
John McCall5e77d762013-04-16 07:28:30 +00004759 }
Mike Stump11289f42009-09-09 15:08:12 +00004760
Douglas Gregorb8a9a412009-02-04 15:01:18 +00004761 // Determine whether this is a dependent call inside a C++ template,
Mike Stump4e1f26a2009-02-19 03:04:26 +00004762 // in which case we won't do any semantic analysis now.
Mike Stump87c57ac2009-05-16 07:39:55 +00004763 // FIXME: Will need to cache the results of name lookup (including ADL) in
4764 // Fn.
Douglas Gregorb8a9a412009-02-04 15:01:18 +00004765 bool Dependent = false;
4766 if (Fn->isTypeDependent())
4767 Dependent = true;
Benjamin Kramerc215e762012-08-24 11:54:20 +00004768 else if (Expr::hasAnyTypeDependentArguments(ArgExprs))
Douglas Gregorb8a9a412009-02-04 15:01:18 +00004769 Dependent = true;
4770
Peter Collingbourne41f85462011-02-09 21:07:24 +00004771 if (Dependent) {
4772 if (ExecConfig) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004773 return new (Context) CUDAKernelCallExpr(
Benjamin Kramerc215e762012-08-24 11:54:20 +00004774 Context, Fn, cast<CallExpr>(ExecConfig), ArgExprs,
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004775 Context.DependentTy, VK_RValue, RParenLoc);
Peter Collingbourne41f85462011-02-09 21:07:24 +00004776 } else {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004777 return new (Context) CallExpr(
4778 Context, Fn, ArgExprs, Context.DependentTy, VK_RValue, RParenLoc);
Peter Collingbourne41f85462011-02-09 21:07:24 +00004779 }
4780 }
Douglas Gregorb8a9a412009-02-04 15:01:18 +00004781
4782 // Determine whether this is a call to an object (C++ [over.call.object]).
4783 if (Fn->getType()->isRecordType())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004784 return BuildCallToObjectOfClassType(S, Fn, LParenLoc, ArgExprs,
4785 RParenLoc);
Douglas Gregorb8a9a412009-02-04 15:01:18 +00004786
John McCall2979fe02011-04-12 00:42:48 +00004787 if (Fn->getType() == Context.UnknownAnyTy) {
4788 ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
4789 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004790 Fn = result.get();
John McCall2979fe02011-04-12 00:42:48 +00004791 }
4792
John McCall0009fcc2011-04-26 20:42:42 +00004793 if (Fn->getType() == Context.BoundMemberTy) {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004794 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs, RParenLoc);
John McCall10eae182009-11-30 22:42:35 +00004795 }
John McCall0009fcc2011-04-26 20:42:42 +00004796 }
John McCall10eae182009-11-30 22:42:35 +00004797
John McCall0009fcc2011-04-26 20:42:42 +00004798 // Check for overloaded calls. This can happen even in C due to extensions.
4799 if (Fn->getType() == Context.OverloadTy) {
4800 OverloadExpr::FindResult find = OverloadExpr::find(Fn);
4801
Douglas Gregorcda22702011-10-13 18:10:35 +00004802 // We aren't supposed to apply this logic for if there's an '&' involved.
Douglas Gregorf4a06c22011-10-13 18:26:27 +00004803 if (!find.HasFormOfMemberPointer) {
John McCall0009fcc2011-04-26 20:42:42 +00004804 OverloadExpr *ovl = find.Expression;
4805 if (isa<UnresolvedLookupExpr>(ovl)) {
4806 UnresolvedLookupExpr *ULE = cast<UnresolvedLookupExpr>(ovl);
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004807 return BuildOverloadedCallExpr(S, Fn, ULE, LParenLoc, ArgExprs,
4808 RParenLoc, ExecConfig);
John McCall0009fcc2011-04-26 20:42:42 +00004809 } else {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004810 return BuildCallToMemberFunction(S, Fn, LParenLoc, ArgExprs,
4811 RParenLoc);
Anders Carlsson61914b52009-10-03 17:40:22 +00004812 }
4813 }
Douglas Gregor97fd6e22008-12-22 05:46:06 +00004814 }
4815
Douglas Gregore254f902009-02-04 00:32:51 +00004816 // If we're directly calling a function, get the appropriate declaration.
Douglas Gregord8fb1e32011-12-01 01:37:36 +00004817 if (Fn->getType() == Context.UnknownAnyTy) {
4818 ExprResult result = rebuildUnknownAnyFunction(*this, Fn);
4819 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004820 Fn = result.get();
Douglas Gregord8fb1e32011-12-01 01:37:36 +00004821 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00004822
Eli Friedmane14b1992009-12-26 03:35:45 +00004823 Expr *NakedFn = Fn->IgnoreParens();
Douglas Gregor928479e2010-11-09 20:03:54 +00004824
Craig Topperc3ec1492014-05-26 06:22:03 +00004825 NamedDecl *NDecl = nullptr;
Douglas Gregor59f16ed2010-10-25 20:48:33 +00004826 if (UnaryOperator *UnOp = dyn_cast<UnaryOperator>(NakedFn))
4827 if (UnOp->getOpcode() == UO_AddrOf)
4828 NakedFn = UnOp->getSubExpr()->IgnoreParens();
Tom Stellardb919c7d2015-03-31 16:39:02 +00004829
4830 if (isa<DeclRefExpr>(NakedFn)) {
John McCall57500772009-12-16 12:17:52 +00004831 NDecl = cast<DeclRefExpr>(NakedFn)->getDecl();
Tom Stellardb919c7d2015-03-31 16:39:02 +00004832
4833 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(NDecl);
4834 if (FDecl && FDecl->getBuiltinID()) {
4835 // Rewrite the function decl for this builtin by replacing paramaters
4836 // with no explicit address space with the address space of the arguments
4837 // in ArgExprs.
4838 if ((FDecl = rewriteBuiltinFunctionDecl(this, Context, FDecl, ArgExprs))) {
4839 NDecl = FDecl;
4840 Fn = DeclRefExpr::Create(Context, FDecl->getQualifierLoc(),
4841 SourceLocation(), FDecl, false,
4842 SourceLocation(), FDecl->getType(),
4843 Fn->getValueKind(), FDecl);
4844 }
4845 }
4846 } else if (isa<MemberExpr>(NakedFn))
John McCall0009fcc2011-04-26 20:42:42 +00004847 NDecl = cast<MemberExpr>(NakedFn)->getMemberDecl();
John McCall57500772009-12-16 12:17:52 +00004848
Nick Lewycky35a6ef42014-01-11 02:50:57 +00004849 if (FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(NDecl)) {
4850 if (FD->hasAttr<EnableIfAttr>()) {
4851 if (const EnableIfAttr *Attr = CheckEnableIf(FD, ArgExprs, true)) {
4852 Diag(Fn->getLocStart(),
4853 isa<CXXMethodDecl>(FD) ?
4854 diag::err_ovl_no_viable_member_function_in_call :
4855 diag::err_ovl_no_viable_function_in_call)
4856 << FD << FD->getSourceRange();
4857 Diag(FD->getLocation(),
4858 diag::note_ovl_candidate_disabled_by_enable_if_attr)
4859 << Attr->getCond()->getSourceRange() << Attr->getMessage();
4860 }
4861 }
4862 }
4863
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004864 return BuildResolvedCallExpr(Fn, NDecl, LParenLoc, ArgExprs, RParenLoc,
4865 ExecConfig, IsExecConfig);
Peter Collingbourne41f85462011-02-09 21:07:24 +00004866}
4867
Tanya Lattner55808c12011-06-04 00:47:47 +00004868/// ActOnAsTypeExpr - create a new asType (bitcast) from the arguments.
4869///
4870/// __builtin_astype( value, dst type )
4871///
Richard Trieuba63ce62011-09-09 01:45:06 +00004872ExprResult Sema::ActOnAsTypeExpr(Expr *E, ParsedType ParsedDestTy,
Tanya Lattner55808c12011-06-04 00:47:47 +00004873 SourceLocation BuiltinLoc,
4874 SourceLocation RParenLoc) {
4875 ExprValueKind VK = VK_RValue;
4876 ExprObjectKind OK = OK_Ordinary;
Richard Trieuba63ce62011-09-09 01:45:06 +00004877 QualType DstTy = GetTypeFromParser(ParsedDestTy);
4878 QualType SrcTy = E->getType();
Tanya Lattner55808c12011-06-04 00:47:47 +00004879 if (Context.getTypeSize(DstTy) != Context.getTypeSize(SrcTy))
4880 return ExprError(Diag(BuiltinLoc,
4881 diag::err_invalid_astype_of_different_size)
Peter Collingbourne23f1bee2011-06-08 15:15:17 +00004882 << DstTy
4883 << SrcTy
Richard Trieuba63ce62011-09-09 01:45:06 +00004884 << E->getSourceRange());
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00004885 return new (Context) AsTypeExpr(E, DstTy, VK, OK, BuiltinLoc, RParenLoc);
Tanya Lattner55808c12011-06-04 00:47:47 +00004886}
4887
Hal Finkelc4d7c822013-09-18 03:29:45 +00004888/// ActOnConvertVectorExpr - create a new convert-vector expression from the
4889/// provided arguments.
4890///
4891/// __builtin_convertvector( value, dst type )
4892///
4893ExprResult Sema::ActOnConvertVectorExpr(Expr *E, ParsedType ParsedDestTy,
4894 SourceLocation BuiltinLoc,
4895 SourceLocation RParenLoc) {
4896 TypeSourceInfo *TInfo;
4897 GetTypeFromParser(ParsedDestTy, &TInfo);
4898 return SemaConvertVectorExpr(E, TInfo, BuiltinLoc, RParenLoc);
4899}
4900
John McCall57500772009-12-16 12:17:52 +00004901/// BuildResolvedCallExpr - Build a call to a resolved expression,
4902/// i.e. an expression not of \p OverloadTy. The expression should
John McCall2d74de92009-12-01 22:10:20 +00004903/// unary-convert to an expression of function-pointer or
4904/// block-pointer type.
4905///
4906/// \param NDecl the declaration being called, if available
John McCalldadc5752010-08-24 06:29:42 +00004907ExprResult
John McCall2d74de92009-12-01 22:10:20 +00004908Sema::BuildResolvedCallExpr(Expr *Fn, NamedDecl *NDecl,
4909 SourceLocation LParenLoc,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004910 ArrayRef<Expr *> Args,
Peter Collingbourne41f85462011-02-09 21:07:24 +00004911 SourceLocation RParenLoc,
Peter Collingbourne619a8c72011-10-02 23:49:29 +00004912 Expr *Config, bool IsExecConfig) {
John McCall2d74de92009-12-01 22:10:20 +00004913 FunctionDecl *FDecl = dyn_cast_or_null<FunctionDecl>(NDecl);
Eli Friedman34866c72012-08-31 00:14:07 +00004914 unsigned BuiltinID = (FDecl ? FDecl->getBuiltinID() : 0);
John McCall2d74de92009-12-01 22:10:20 +00004915
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00004916 // Promote the function operand.
Eli Friedman34866c72012-08-31 00:14:07 +00004917 // We special-case function promotion here because we only allow promoting
4918 // builtin functions to function pointers in the callee of a call.
4919 ExprResult Result;
4920 if (BuiltinID &&
4921 Fn->getType()->isSpecificBuiltinType(BuiltinType::BuiltinFn)) {
4922 Result = ImpCastExprToType(Fn, Context.getPointerType(FDecl->getType()),
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004923 CK_BuiltinFnToFnPtr).get();
Eli Friedman34866c72012-08-31 00:14:07 +00004924 } else {
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +00004925 Result = CallExprUnaryConversions(Fn);
Eli Friedman34866c72012-08-31 00:14:07 +00004926 }
John Wiegley01296292011-04-08 18:41:53 +00004927 if (Result.isInvalid())
4928 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004929 Fn = Result.get();
Chris Lattneraa9c7ae2008-04-08 04:40:51 +00004930
Chris Lattner08464942007-12-28 05:29:59 +00004931 // Make the call expr early, before semantic checks. This guarantees cleanup
4932 // of arguments and function on error.
Peter Collingbourne41f85462011-02-09 21:07:24 +00004933 CallExpr *TheCall;
Eric Christopher13586ab2012-05-30 01:14:28 +00004934 if (Config)
Peter Collingbourne41f85462011-02-09 21:07:24 +00004935 TheCall = new (Context) CUDAKernelCallExpr(Context, Fn,
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004936 cast<CallExpr>(Config), Args,
4937 Context.BoolTy, VK_RValue,
Peter Collingbourne41f85462011-02-09 21:07:24 +00004938 RParenLoc);
Eric Christopher13586ab2012-05-30 01:14:28 +00004939 else
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00004940 TheCall = new (Context) CallExpr(Context, Fn, Args, Context.BoolTy,
4941 VK_RValue, RParenLoc);
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004942
Kaelyn Takata72d16a52015-06-23 19:13:17 +00004943 if (!getLangOpts().CPlusPlus) {
4944 // C cannot always handle TypoExpr nodes in builtin calls and direct
4945 // function calls as their argument checking don't necessarily handle
4946 // dependent types properly, so make sure any TypoExprs have been
4947 // dealt with.
4948 ExprResult Result = CorrectDelayedTyposInExpr(TheCall);
4949 if (!Result.isUsable()) return ExprError();
4950 TheCall = dyn_cast<CallExpr>(Result.get());
4951 if (!TheCall) return Result;
Kaelyn Takatae53f0f92015-06-23 18:42:21 +00004952 }
John McCallbebede42011-02-26 05:39:39 +00004953
Kaelyn Takata72d16a52015-06-23 19:13:17 +00004954 // Bail out early if calling a builtin with custom typechecking.
4955 if (BuiltinID && Context.BuiltinInfo.hasCustomTypechecking(BuiltinID))
4956 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
4957
John McCall31996342011-04-07 08:22:57 +00004958 retry:
Steve Naroff8de9c3a2008-09-05 22:11:13 +00004959 const FunctionType *FuncT;
John McCallbebede42011-02-26 05:39:39 +00004960 if (const PointerType *PT = Fn->getType()->getAs<PointerType>()) {
Steve Naroff8de9c3a2008-09-05 22:11:13 +00004961 // C99 6.5.2.2p1 - "The expression that denotes the called function shall
4962 // have type pointer to function".
John McCall9dd450b2009-09-21 23:43:11 +00004963 FuncT = PT->getPointeeType()->getAs<FunctionType>();
Craig Topperc3ec1492014-05-26 06:22:03 +00004964 if (!FuncT)
John McCallbebede42011-02-26 05:39:39 +00004965 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4966 << Fn->getType() << Fn->getSourceRange());
4967 } else if (const BlockPointerType *BPT =
4968 Fn->getType()->getAs<BlockPointerType>()) {
4969 FuncT = BPT->getPointeeType()->castAs<FunctionType>();
4970 } else {
John McCall31996342011-04-07 08:22:57 +00004971 // Handle calls to expressions of unknown-any type.
4972 if (Fn->getType() == Context.UnknownAnyTy) {
John McCall2979fe02011-04-12 00:42:48 +00004973 ExprResult rewrite = rebuildUnknownAnyFunction(*this, Fn);
John McCall31996342011-04-07 08:22:57 +00004974 if (rewrite.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00004975 Fn = rewrite.get();
John McCall39439732011-04-09 22:50:59 +00004976 TheCall->setCallee(Fn);
John McCall31996342011-04-07 08:22:57 +00004977 goto retry;
4978 }
4979
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004980 return ExprError(Diag(LParenLoc, diag::err_typecheck_call_not_function)
4981 << Fn->getType() << Fn->getSourceRange());
John McCallbebede42011-02-26 05:39:39 +00004982 }
Sebastian Redlc215cfc2009-01-19 00:08:26 +00004983
David Blaikiebbafb8a2012-03-11 07:00:24 +00004984 if (getLangOpts().CUDA) {
Peter Collingbourne4b66c472011-02-23 01:53:29 +00004985 if (Config) {
4986 // CUDA: Kernel calls must be to global functions
4987 if (FDecl && !FDecl->hasAttr<CUDAGlobalAttr>())
4988 return ExprError(Diag(LParenLoc,diag::err_kern_call_not_global_function)
4989 << FDecl->getName() << Fn->getSourceRange());
4990
4991 // CUDA: Kernel function must have 'void' return type
Alp Toker314cc812014-01-25 16:55:45 +00004992 if (!FuncT->getReturnType()->isVoidType())
Peter Collingbourne4b66c472011-02-23 01:53:29 +00004993 return ExprError(Diag(LParenLoc, diag::err_kern_type_not_void_return)
4994 << Fn->getType() << Fn->getSourceRange());
Peter Collingbourne34a20b02011-10-02 23:49:15 +00004995 } else {
4996 // CUDA: Calls to global functions must be configured
4997 if (FDecl && FDecl->hasAttr<CUDAGlobalAttr>())
4998 return ExprError(Diag(LParenLoc, diag::err_global_call_not_config)
4999 << FDecl->getName() << Fn->getSourceRange());
Peter Collingbourne4b66c472011-02-23 01:53:29 +00005000 }
5001 }
5002
Eli Friedman3164fb12009-03-22 22:00:50 +00005003 // Check for a valid return type
Alp Toker314cc812014-01-25 16:55:45 +00005004 if (CheckCallReturnType(FuncT->getReturnType(), Fn->getLocStart(), TheCall,
Anders Carlsson7f84ed92009-10-09 23:51:55 +00005005 FDecl))
Eli Friedman3164fb12009-03-22 22:00:50 +00005006 return ExprError();
5007
Chris Lattner08464942007-12-28 05:29:59 +00005008 // We know the result type of the call, set it.
Douglas Gregor603d81b2010-07-13 08:18:22 +00005009 TheCall->setType(FuncT->getCallResultType(Context));
Alp Toker314cc812014-01-25 16:55:45 +00005010 TheCall->setValueKind(Expr::getValueKindForType(FuncT->getReturnType()));
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005011
Richard Smith55ce3522012-06-25 20:30:08 +00005012 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FuncT);
5013 if (Proto) {
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005014 if (ConvertArgumentsForCall(TheCall, Fn, FDecl, Proto, Args, RParenLoc,
5015 IsExecConfig))
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005016 return ExprError();
Chris Lattner08464942007-12-28 05:29:59 +00005017 } else {
Douglas Gregordeaad8c2009-02-26 23:50:07 +00005018 assert(isa<FunctionNoProtoType>(FuncT) && "Unknown FunctionType!");
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005019
Douglas Gregord8e97de2009-04-02 15:37:10 +00005020 if (FDecl) {
5021 // Check if we have too few/too many template arguments, based
5022 // on our knowledge of the function definition.
Craig Topperc3ec1492014-05-26 06:22:03 +00005023 const FunctionDecl *Def = nullptr;
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005024 if (FDecl->hasBody(Def) && Args.size() != Def->param_size()) {
Richard Smith55ce3522012-06-25 20:30:08 +00005025 Proto = Def->getType()->getAs<FunctionProtoType>();
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005026 if (!Proto || !(Proto->isVariadic() && Args.size() >= Def->param_size()))
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00005027 Diag(RParenLoc, diag::warn_call_wrong_number_of_arguments)
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005028 << (Args.size() > Def->param_size()) << FDecl << Fn->getSourceRange();
Eli Friedmanfcbf7d22009-06-01 09:24:59 +00005029 }
Douglas Gregor8e09a722010-10-25 20:39:23 +00005030
5031 // If the function we're calling isn't a function prototype, but we have
5032 // a function prototype from a prior declaratiom, use that prototype.
5033 if (!FDecl->hasPrototype())
5034 Proto = FDecl->getType()->getAs<FunctionProtoType>();
Douglas Gregord8e97de2009-04-02 15:37:10 +00005035 }
5036
Steve Naroff0b661582007-08-28 23:30:39 +00005037 // Promote the arguments (C99 6.5.2.2p6).
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005038 for (unsigned i = 0, e = Args.size(); i != e; i++) {
Chris Lattner08464942007-12-28 05:29:59 +00005039 Expr *Arg = Args[i];
Douglas Gregor8e09a722010-10-25 20:39:23 +00005040
Alp Toker9cacbab2014-01-20 20:26:09 +00005041 if (Proto && i < Proto->getNumParams()) {
5042 InitializedEntity Entity = InitializedEntity::InitializeParameter(
5043 Context, Proto->getParamType(i), Proto->isParamConsumed(i));
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005044 ExprResult ArgE =
5045 PerformCopyInitialization(Entity, SourceLocation(), Arg);
Douglas Gregor8e09a722010-10-25 20:39:23 +00005046 if (ArgE.isInvalid())
5047 return true;
5048
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005049 Arg = ArgE.getAs<Expr>();
Douglas Gregor8e09a722010-10-25 20:39:23 +00005050
5051 } else {
John Wiegley01296292011-04-08 18:41:53 +00005052 ExprResult ArgE = DefaultArgumentPromotion(Arg);
5053
5054 if (ArgE.isInvalid())
5055 return true;
5056
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005057 Arg = ArgE.getAs<Expr>();
Douglas Gregor8e09a722010-10-25 20:39:23 +00005058 }
5059
Daniel Dunbar62ee6412012-03-09 18:35:03 +00005060 if (RequireCompleteType(Arg->getLocStart(),
Douglas Gregor83025412010-10-26 05:45:40 +00005061 Arg->getType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00005062 diag::err_call_incomplete_argument, Arg))
Douglas Gregor83025412010-10-26 05:45:40 +00005063 return ExprError();
5064
Chris Lattner08464942007-12-28 05:29:59 +00005065 TheCall->setArg(i, Arg);
Steve Naroff0b661582007-08-28 23:30:39 +00005066 }
Steve Naroffae4143e2007-04-26 20:39:23 +00005067 }
Chris Lattner08464942007-12-28 05:29:59 +00005068
Douglas Gregor97fd6e22008-12-22 05:46:06 +00005069 if (CXXMethodDecl *Method = dyn_cast_or_null<CXXMethodDecl>(FDecl))
5070 if (!Method->isStatic())
Sebastian Redlc215cfc2009-01-19 00:08:26 +00005071 return ExprError(Diag(LParenLoc, diag::err_member_call_without_object)
5072 << Fn->getSourceRange());
Douglas Gregor97fd6e22008-12-22 05:46:06 +00005073
Fariborz Jahanian0aa5c452009-05-15 20:33:25 +00005074 // Check for sentinels
5075 if (NDecl)
Dmitri Gribenko9c785c22013-05-09 21:02:07 +00005076 DiagnoseSentinelCalls(NDecl, LParenLoc, Args);
Mike Stump11289f42009-09-09 15:08:12 +00005077
Chris Lattnerb87b1b32007-08-10 20:18:51 +00005078 // Do special checking on direct calls to functions.
Anders Carlssonbc4c1072009-08-16 01:56:34 +00005079 if (FDecl) {
Richard Smith55ce3522012-06-25 20:30:08 +00005080 if (CheckFunctionCall(FDecl, TheCall, Proto))
Anders Carlssonbc4c1072009-08-16 01:56:34 +00005081 return ExprError();
Mike Stump11289f42009-09-09 15:08:12 +00005082
John McCallbebede42011-02-26 05:39:39 +00005083 if (BuiltinID)
Fariborz Jahanian3e6a0be2014-09-18 17:58:27 +00005084 return CheckBuiltinFunctionCall(FDecl, BuiltinID, TheCall);
Anders Carlssonbc4c1072009-08-16 01:56:34 +00005085 } else if (NDecl) {
Richard Trieu664c4c62013-06-20 21:03:13 +00005086 if (CheckPointerCall(NDecl, TheCall, Proto))
Anders Carlssonbc4c1072009-08-16 01:56:34 +00005087 return ExprError();
Richard Trieu41bc0992013-06-22 00:20:41 +00005088 } else {
5089 if (CheckOtherCall(TheCall, Proto))
5090 return ExprError();
Anders Carlssonbc4c1072009-08-16 01:56:34 +00005091 }
Chris Lattnerb87b1b32007-08-10 20:18:51 +00005092
John McCallb268a282010-08-23 23:25:46 +00005093 return MaybeBindToTemporary(TheCall);
Chris Lattnere168f762006-11-10 05:29:30 +00005094}
5095
John McCalldadc5752010-08-24 06:29:42 +00005096ExprResult
John McCallba7bf592010-08-24 05:47:05 +00005097Sema::ActOnCompoundLiteral(SourceLocation LParenLoc, ParsedType Ty,
John McCallb268a282010-08-23 23:25:46 +00005098 SourceLocation RParenLoc, Expr *InitExpr) {
David Blaikie7d170102013-05-15 07:37:26 +00005099 assert(Ty && "ActOnCompoundLiteral(): missing type");
Steve Naroff57eb2c52007-07-19 21:32:11 +00005100 // FIXME: put back this assert when initializers are worked out.
Steve Naroff83895f72007-09-16 03:34:24 +00005101 //assert((InitExpr != 0) && "ActOnCompoundLiteral(): missing expression");
John McCalle15bbff2010-01-18 19:35:47 +00005102
5103 TypeSourceInfo *TInfo;
5104 QualType literalType = GetTypeFromParser(Ty, &TInfo);
5105 if (!TInfo)
5106 TInfo = Context.getTrivialTypeSourceInfo(literalType);
5107
John McCallb268a282010-08-23 23:25:46 +00005108 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, InitExpr);
John McCalle15bbff2010-01-18 19:35:47 +00005109}
5110
John McCalldadc5752010-08-24 06:29:42 +00005111ExprResult
John McCalle15bbff2010-01-18 19:35:47 +00005112Sema::BuildCompoundLiteralExpr(SourceLocation LParenLoc, TypeSourceInfo *TInfo,
Richard Trieuba63ce62011-09-09 01:45:06 +00005113 SourceLocation RParenLoc, Expr *LiteralExpr) {
John McCalle15bbff2010-01-18 19:35:47 +00005114 QualType literalType = TInfo->getType();
Anders Carlsson2c1ec6d2007-12-05 07:24:19 +00005115
Eli Friedman37a186d2008-05-20 05:22:08 +00005116 if (literalType->isArrayType()) {
Argyrios Kyrtzidis85663562010-11-08 19:14:19 +00005117 if (RequireCompleteType(LParenLoc, Context.getBaseElementType(literalType),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00005118 diag::err_illegal_decl_array_incomplete_type,
5119 SourceRange(LParenLoc,
5120 LiteralExpr->getSourceRange().getEnd())))
Argyrios Kyrtzidis85663562010-11-08 19:14:19 +00005121 return ExprError();
Chris Lattner7adf0762008-08-04 07:31:14 +00005122 if (literalType->isVariableArrayType())
Sebastian Redlb5d49352009-01-19 22:31:54 +00005123 return ExprError(Diag(LParenLoc, diag::err_variable_object_no_init)
Richard Trieuba63ce62011-09-09 01:45:06 +00005124 << SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd()));
Douglas Gregor1c37d9e2009-05-21 23:48:18 +00005125 } else if (!literalType->isDependentType() &&
5126 RequireCompleteType(LParenLoc, literalType,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00005127 diag::err_typecheck_decl_incomplete_type,
5128 SourceRange(LParenLoc, LiteralExpr->getSourceRange().getEnd())))
Sebastian Redlb5d49352009-01-19 22:31:54 +00005129 return ExprError();
Eli Friedman37a186d2008-05-20 05:22:08 +00005130
Douglas Gregor85dabae2009-12-16 01:38:02 +00005131 InitializedEntity Entity
Jordan Rose6c0505e2013-05-06 16:48:12 +00005132 = InitializedEntity::InitializeCompoundLiteralInit(TInfo);
Douglas Gregor85dabae2009-12-16 01:38:02 +00005133 InitializationKind Kind
John McCall31168b02011-06-15 23:02:42 +00005134 = InitializationKind::CreateCStyleCast(LParenLoc,
Sebastian Redl0501c632012-02-12 16:37:36 +00005135 SourceRange(LParenLoc, RParenLoc),
5136 /*InitList=*/true);
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +00005137 InitializationSequence InitSeq(*this, Entity, Kind, LiteralExpr);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +00005138 ExprResult Result = InitSeq.Perform(*this, Entity, Kind, LiteralExpr,
5139 &literalType);
Eli Friedmana553d4a2009-12-22 02:35:53 +00005140 if (Result.isInvalid())
Sebastian Redlb5d49352009-01-19 22:31:54 +00005141 return ExprError();
Richard Trieuba63ce62011-09-09 01:45:06 +00005142 LiteralExpr = Result.get();
Steve Naroffd32419d2008-01-14 18:19:28 +00005143
Craig Topperc3ec1492014-05-26 06:22:03 +00005144 bool isFileScope = getCurFunctionOrMethodDecl() == nullptr;
Eli Friedman4a962f02013-10-01 00:28:29 +00005145 if (isFileScope &&
5146 !LiteralExpr->isTypeDependent() &&
5147 !LiteralExpr->isValueDependent() &&
5148 !literalType->isDependentType()) { // 6.5.2.5p3
Richard Trieuba63ce62011-09-09 01:45:06 +00005149 if (CheckForConstantInitializer(LiteralExpr, literalType))
Sebastian Redlb5d49352009-01-19 22:31:54 +00005150 return ExprError();
Steve Naroff98f72032008-01-10 22:15:12 +00005151 }
Eli Friedmana553d4a2009-12-22 02:35:53 +00005152
John McCall7decc9e2010-11-18 06:31:45 +00005153 // In C, compound literals are l-values for some reason.
David Blaikiebbafb8a2012-03-11 07:00:24 +00005154 ExprValueKind VK = getLangOpts().CPlusPlus ? VK_RValue : VK_LValue;
John McCall7decc9e2010-11-18 06:31:45 +00005155
Douglas Gregor9b71f0c2011-06-17 04:59:12 +00005156 return MaybeBindToTemporary(
5157 new (Context) CompoundLiteralExpr(LParenLoc, TInfo, literalType,
Richard Trieuba63ce62011-09-09 01:45:06 +00005158 VK, LiteralExpr, isFileScope));
Steve Narofffbd09832007-07-19 01:06:55 +00005159}
5160
John McCalldadc5752010-08-24 06:29:42 +00005161ExprResult
Richard Trieuba63ce62011-09-09 01:45:06 +00005162Sema::ActOnInitList(SourceLocation LBraceLoc, MultiExprArg InitArgList,
Sebastian Redlb5d49352009-01-19 22:31:54 +00005163 SourceLocation RBraceLoc) {
John McCall526ab472011-10-25 17:37:35 +00005164 // Immediately handle non-overload placeholders. Overloads can be
5165 // resolved contextually, but everything else here can't.
Benjamin Kramerc215e762012-08-24 11:54:20 +00005166 for (unsigned I = 0, E = InitArgList.size(); I != E; ++I) {
5167 if (InitArgList[I]->getType()->isNonOverloadPlaceholderType()) {
5168 ExprResult result = CheckPlaceholderExpr(InitArgList[I]);
John McCall526ab472011-10-25 17:37:35 +00005169
5170 // Ignore failures; dropping the entire initializer list because
5171 // of one failure would be terrible for indexing/etc.
5172 if (result.isInvalid()) continue;
5173
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005174 InitArgList[I] = result.get();
John McCall526ab472011-10-25 17:37:35 +00005175 }
5176 }
5177
Steve Naroff30d242c2007-09-15 18:49:24 +00005178 // Semantic analysis for initializers is done by ActOnDeclarator() and
Mike Stump4e1f26a2009-02-19 03:04:26 +00005179 // CheckInitializer() - it requires knowledge of the object being intialized.
Sebastian Redlb5d49352009-01-19 22:31:54 +00005180
Benjamin Kramerc215e762012-08-24 11:54:20 +00005181 InitListExpr *E = new (Context) InitListExpr(Context, LBraceLoc, InitArgList,
5182 RBraceLoc);
Chris Lattner24d5bfe2008-04-02 04:24:33 +00005183 E->setType(Context.VoidTy); // FIXME: just a place holder for now.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005184 return E;
Steve Narofffbd09832007-07-19 01:06:55 +00005185}
5186
John McCallcd78e802011-09-10 01:16:55 +00005187/// Do an explicit extend of the given block pointer if we're in ARC.
Douglas Gregore83b9562015-07-07 03:57:53 +00005188void Sema::maybeExtendBlockObject(ExprResult &E) {
John McCallcd78e802011-09-10 01:16:55 +00005189 assert(E.get()->getType()->isBlockPointerType());
5190 assert(E.get()->isRValue());
5191
5192 // Only do this in an r-value context.
Douglas Gregore83b9562015-07-07 03:57:53 +00005193 if (!getLangOpts().ObjCAutoRefCount) return;
John McCallcd78e802011-09-10 01:16:55 +00005194
Douglas Gregore83b9562015-07-07 03:57:53 +00005195 E = ImplicitCastExpr::Create(Context, E.get()->getType(),
John McCall2d637d22011-09-10 06:18:15 +00005196 CK_ARCExtendBlockObject, E.get(),
Craig Topperc3ec1492014-05-26 06:22:03 +00005197 /*base path*/ nullptr, VK_RValue);
Douglas Gregore83b9562015-07-07 03:57:53 +00005198 ExprNeedsCleanups = true;
John McCallcd78e802011-09-10 01:16:55 +00005199}
5200
5201/// Prepare a conversion of the given expression to an ObjC object
5202/// pointer type.
5203CastKind Sema::PrepareCastToObjCObjectPointer(ExprResult &E) {
5204 QualType type = E.get()->getType();
5205 if (type->isObjCObjectPointerType()) {
5206 return CK_BitCast;
5207 } else if (type->isBlockPointerType()) {
Douglas Gregore83b9562015-07-07 03:57:53 +00005208 maybeExtendBlockObject(E);
John McCallcd78e802011-09-10 01:16:55 +00005209 return CK_BlockPointerToObjCPointerCast;
5210 } else {
5211 assert(type->isPointerType());
5212 return CK_CPointerToObjCPointerCast;
5213 }
5214}
5215
John McCalld7646252010-11-14 08:17:51 +00005216/// Prepares for a scalar cast, performing all the necessary stages
5217/// except the final cast and returning the kind required.
John McCall9776e432011-10-06 23:25:11 +00005218CastKind Sema::PrepareScalarCast(ExprResult &Src, QualType DestTy) {
John McCalld7646252010-11-14 08:17:51 +00005219 // Both Src and Dest are scalar types, i.e. arithmetic or pointer.
5220 // Also, callers should have filtered out the invalid cases with
5221 // pointers. Everything else should be possible.
5222
John Wiegley01296292011-04-08 18:41:53 +00005223 QualType SrcTy = Src.get()->getType();
John McCall9776e432011-10-06 23:25:11 +00005224 if (Context.hasSameUnqualifiedType(SrcTy, DestTy))
John McCalle3027922010-08-25 11:45:40 +00005225 return CK_NoOp;
Anders Carlsson094c4592009-10-18 18:12:03 +00005226
John McCall9320b872011-09-09 05:25:32 +00005227 switch (Type::ScalarTypeKind SrcKind = SrcTy->getScalarTypeKind()) {
John McCall8cb679e2010-11-15 09:13:47 +00005228 case Type::STK_MemberPointer:
5229 llvm_unreachable("member pointer type in C");
Abramo Bagnaraba854972011-01-04 09:50:03 +00005230
John McCall9320b872011-09-09 05:25:32 +00005231 case Type::STK_CPointer:
5232 case Type::STK_BlockPointer:
5233 case Type::STK_ObjCObjectPointer:
John McCall8cb679e2010-11-15 09:13:47 +00005234 switch (DestTy->getScalarTypeKind()) {
David Tweede1468322013-12-11 13:39:46 +00005235 case Type::STK_CPointer: {
5236 unsigned SrcAS = SrcTy->getPointeeType().getAddressSpace();
5237 unsigned DestAS = DestTy->getPointeeType().getAddressSpace();
5238 if (SrcAS != DestAS)
5239 return CK_AddressSpaceConversion;
John McCall9320b872011-09-09 05:25:32 +00005240 return CK_BitCast;
David Tweede1468322013-12-11 13:39:46 +00005241 }
John McCall9320b872011-09-09 05:25:32 +00005242 case Type::STK_BlockPointer:
5243 return (SrcKind == Type::STK_BlockPointer
5244 ? CK_BitCast : CK_AnyPointerToBlockPointerCast);
5245 case Type::STK_ObjCObjectPointer:
5246 if (SrcKind == Type::STK_ObjCObjectPointer)
5247 return CK_BitCast;
David Blaikie8a40f702012-01-17 06:56:22 +00005248 if (SrcKind == Type::STK_CPointer)
John McCall9320b872011-09-09 05:25:32 +00005249 return CK_CPointerToObjCPointerCast;
Douglas Gregore83b9562015-07-07 03:57:53 +00005250 maybeExtendBlockObject(Src);
David Blaikie8a40f702012-01-17 06:56:22 +00005251 return CK_BlockPointerToObjCPointerCast;
John McCall8cb679e2010-11-15 09:13:47 +00005252 case Type::STK_Bool:
5253 return CK_PointerToBoolean;
5254 case Type::STK_Integral:
5255 return CK_PointerToIntegral;
5256 case Type::STK_Floating:
5257 case Type::STK_FloatingComplex:
5258 case Type::STK_IntegralComplex:
5259 case Type::STK_MemberPointer:
5260 llvm_unreachable("illegal cast from pointer");
5261 }
David Blaikie8a40f702012-01-17 06:56:22 +00005262 llvm_unreachable("Should have returned before this");
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005263
John McCall8cb679e2010-11-15 09:13:47 +00005264 case Type::STK_Bool: // casting from bool is like casting from an integer
5265 case Type::STK_Integral:
5266 switch (DestTy->getScalarTypeKind()) {
John McCall9320b872011-09-09 05:25:32 +00005267 case Type::STK_CPointer:
5268 case Type::STK_ObjCObjectPointer:
5269 case Type::STK_BlockPointer:
John McCall9776e432011-10-06 23:25:11 +00005270 if (Src.get()->isNullPointerConstant(Context,
Richard Trieucfc491d2011-08-02 04:35:43 +00005271 Expr::NPC_ValueDependentIsNull))
John McCalle84af4e2010-11-13 01:35:44 +00005272 return CK_NullToPointer;
John McCalle3027922010-08-25 11:45:40 +00005273 return CK_IntegralToPointer;
John McCall8cb679e2010-11-15 09:13:47 +00005274 case Type::STK_Bool:
5275 return CK_IntegralToBoolean;
5276 case Type::STK_Integral:
John McCalld7646252010-11-14 08:17:51 +00005277 return CK_IntegralCast;
John McCall8cb679e2010-11-15 09:13:47 +00005278 case Type::STK_Floating:
John McCalle3027922010-08-25 11:45:40 +00005279 return CK_IntegralToFloating;
John McCall8cb679e2010-11-15 09:13:47 +00005280 case Type::STK_IntegralComplex:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005281 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005282 DestTy->castAs<ComplexType>()->getElementType(),
5283 CK_IntegralCast);
John McCalld7646252010-11-14 08:17:51 +00005284 return CK_IntegralRealToComplex;
John McCall8cb679e2010-11-15 09:13:47 +00005285 case Type::STK_FloatingComplex:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005286 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005287 DestTy->castAs<ComplexType>()->getElementType(),
5288 CK_IntegralToFloating);
John McCalld7646252010-11-14 08:17:51 +00005289 return CK_FloatingRealToComplex;
John McCall8cb679e2010-11-15 09:13:47 +00005290 case Type::STK_MemberPointer:
5291 llvm_unreachable("member pointer type in C");
John McCalld7646252010-11-14 08:17:51 +00005292 }
David Blaikie8a40f702012-01-17 06:56:22 +00005293 llvm_unreachable("Should have returned before this");
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005294
John McCall8cb679e2010-11-15 09:13:47 +00005295 case Type::STK_Floating:
5296 switch (DestTy->getScalarTypeKind()) {
5297 case Type::STK_Floating:
John McCalle3027922010-08-25 11:45:40 +00005298 return CK_FloatingCast;
John McCall8cb679e2010-11-15 09:13:47 +00005299 case Type::STK_Bool:
5300 return CK_FloatingToBoolean;
5301 case Type::STK_Integral:
John McCalle3027922010-08-25 11:45:40 +00005302 return CK_FloatingToIntegral;
John McCall8cb679e2010-11-15 09:13:47 +00005303 case Type::STK_FloatingComplex:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005304 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005305 DestTy->castAs<ComplexType>()->getElementType(),
5306 CK_FloatingCast);
John McCalld7646252010-11-14 08:17:51 +00005307 return CK_FloatingRealToComplex;
John McCall8cb679e2010-11-15 09:13:47 +00005308 case Type::STK_IntegralComplex:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005309 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005310 DestTy->castAs<ComplexType>()->getElementType(),
5311 CK_FloatingToIntegral);
John McCalld7646252010-11-14 08:17:51 +00005312 return CK_IntegralRealToComplex;
John McCall9320b872011-09-09 05:25:32 +00005313 case Type::STK_CPointer:
5314 case Type::STK_ObjCObjectPointer:
5315 case Type::STK_BlockPointer:
John McCall8cb679e2010-11-15 09:13:47 +00005316 llvm_unreachable("valid float->pointer cast?");
5317 case Type::STK_MemberPointer:
5318 llvm_unreachable("member pointer type in C");
John McCalld7646252010-11-14 08:17:51 +00005319 }
David Blaikie8a40f702012-01-17 06:56:22 +00005320 llvm_unreachable("Should have returned before this");
John McCalld7646252010-11-14 08:17:51 +00005321
John McCall8cb679e2010-11-15 09:13:47 +00005322 case Type::STK_FloatingComplex:
5323 switch (DestTy->getScalarTypeKind()) {
5324 case Type::STK_FloatingComplex:
John McCalld7646252010-11-14 08:17:51 +00005325 return CK_FloatingComplexCast;
John McCall8cb679e2010-11-15 09:13:47 +00005326 case Type::STK_IntegralComplex:
John McCalld7646252010-11-14 08:17:51 +00005327 return CK_FloatingComplexToIntegralComplex;
John McCallfcef3cf2010-12-14 17:51:41 +00005328 case Type::STK_Floating: {
John McCall9776e432011-10-06 23:25:11 +00005329 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5330 if (Context.hasSameType(ET, DestTy))
John McCallfcef3cf2010-12-14 17:51:41 +00005331 return CK_FloatingComplexToReal;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005332 Src = ImpCastExprToType(Src.get(), ET, CK_FloatingComplexToReal);
John McCallfcef3cf2010-12-14 17:51:41 +00005333 return CK_FloatingCast;
5334 }
John McCall8cb679e2010-11-15 09:13:47 +00005335 case Type::STK_Bool:
John McCalld7646252010-11-14 08:17:51 +00005336 return CK_FloatingComplexToBoolean;
John McCall8cb679e2010-11-15 09:13:47 +00005337 case Type::STK_Integral:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005338 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005339 SrcTy->castAs<ComplexType>()->getElementType(),
5340 CK_FloatingComplexToReal);
John McCalld7646252010-11-14 08:17:51 +00005341 return CK_FloatingToIntegral;
John McCall9320b872011-09-09 05:25:32 +00005342 case Type::STK_CPointer:
5343 case Type::STK_ObjCObjectPointer:
5344 case Type::STK_BlockPointer:
John McCall8cb679e2010-11-15 09:13:47 +00005345 llvm_unreachable("valid complex float->pointer cast?");
5346 case Type::STK_MemberPointer:
5347 llvm_unreachable("member pointer type in C");
John McCalld7646252010-11-14 08:17:51 +00005348 }
David Blaikie8a40f702012-01-17 06:56:22 +00005349 llvm_unreachable("Should have returned before this");
John McCalld7646252010-11-14 08:17:51 +00005350
John McCall8cb679e2010-11-15 09:13:47 +00005351 case Type::STK_IntegralComplex:
5352 switch (DestTy->getScalarTypeKind()) {
5353 case Type::STK_FloatingComplex:
John McCalld7646252010-11-14 08:17:51 +00005354 return CK_IntegralComplexToFloatingComplex;
John McCall8cb679e2010-11-15 09:13:47 +00005355 case Type::STK_IntegralComplex:
John McCalld7646252010-11-14 08:17:51 +00005356 return CK_IntegralComplexCast;
John McCallfcef3cf2010-12-14 17:51:41 +00005357 case Type::STK_Integral: {
John McCall9776e432011-10-06 23:25:11 +00005358 QualType ET = SrcTy->castAs<ComplexType>()->getElementType();
5359 if (Context.hasSameType(ET, DestTy))
John McCallfcef3cf2010-12-14 17:51:41 +00005360 return CK_IntegralComplexToReal;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005361 Src = ImpCastExprToType(Src.get(), ET, CK_IntegralComplexToReal);
John McCallfcef3cf2010-12-14 17:51:41 +00005362 return CK_IntegralCast;
5363 }
John McCall8cb679e2010-11-15 09:13:47 +00005364 case Type::STK_Bool:
John McCalld7646252010-11-14 08:17:51 +00005365 return CK_IntegralComplexToBoolean;
John McCall8cb679e2010-11-15 09:13:47 +00005366 case Type::STK_Floating:
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005367 Src = ImpCastExprToType(Src.get(),
John McCall9776e432011-10-06 23:25:11 +00005368 SrcTy->castAs<ComplexType>()->getElementType(),
5369 CK_IntegralComplexToReal);
John McCalld7646252010-11-14 08:17:51 +00005370 return CK_IntegralToFloating;
John McCall9320b872011-09-09 05:25:32 +00005371 case Type::STK_CPointer:
5372 case Type::STK_ObjCObjectPointer:
5373 case Type::STK_BlockPointer:
John McCall8cb679e2010-11-15 09:13:47 +00005374 llvm_unreachable("valid complex int->pointer cast?");
5375 case Type::STK_MemberPointer:
5376 llvm_unreachable("member pointer type in C");
John McCalld7646252010-11-14 08:17:51 +00005377 }
David Blaikie8a40f702012-01-17 06:56:22 +00005378 llvm_unreachable("Should have returned before this");
Anders Carlsson094c4592009-10-18 18:12:03 +00005379 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005380
John McCalld7646252010-11-14 08:17:51 +00005381 llvm_unreachable("Unhandled scalar cast");
Anders Carlsson094c4592009-10-18 18:12:03 +00005382}
5383
Fariborz Jahanian328a7c42014-03-06 22:47:09 +00005384static bool breakDownVectorType(QualType type, uint64_t &len,
5385 QualType &eltType) {
5386 // Vectors are simple.
5387 if (const VectorType *vecType = type->getAs<VectorType>()) {
5388 len = vecType->getNumElements();
5389 eltType = vecType->getElementType();
5390 assert(eltType->isScalarType());
5391 return true;
5392 }
5393
5394 // We allow lax conversion to and from non-vector types, but only if
5395 // they're real types (i.e. non-complex, non-pointer scalar types).
5396 if (!type->isRealType()) return false;
5397
5398 len = 1;
5399 eltType = type;
5400 return true;
5401}
5402
5403static bool VectorTypesMatch(Sema &S, QualType srcTy, QualType destTy) {
5404 uint64_t srcLen, destLen;
5405 QualType srcElt, destElt;
5406 if (!breakDownVectorType(srcTy, srcLen, srcElt)) return false;
5407 if (!breakDownVectorType(destTy, destLen, destElt)) return false;
5408
5409 // ASTContext::getTypeSize will return the size rounded up to a
5410 // power of 2, so instead of using that, we need to use the raw
5411 // element size multiplied by the element count.
5412 uint64_t srcEltSize = S.Context.getTypeSize(srcElt);
5413 uint64_t destEltSize = S.Context.getTypeSize(destElt);
5414
5415 return (srcLen * srcEltSize == destLen * destEltSize);
5416}
5417
5418/// Is this a legal conversion between two known vector types?
5419bool Sema::isLaxVectorConversion(QualType srcTy, QualType destTy) {
5420 assert(destTy->isVectorType() || srcTy->isVectorType());
5421
5422 if (!Context.getLangOpts().LaxVectorConversions)
5423 return false;
5424 return VectorTypesMatch(*this, srcTy, destTy);
5425}
5426
Anders Carlsson525b76b2009-10-16 02:48:28 +00005427bool Sema::CheckVectorCast(SourceRange R, QualType VectorTy, QualType Ty,
John McCalle3027922010-08-25 11:45:40 +00005428 CastKind &Kind) {
Anders Carlssonde71adf2007-11-27 05:51:55 +00005429 assert(VectorTy->isVectorType() && "Not a vector type!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00005430
Anders Carlssonde71adf2007-11-27 05:51:55 +00005431 if (Ty->isVectorType() || Ty->isIntegerType()) {
Fariborz Jahanian328a7c42014-03-06 22:47:09 +00005432 if (!VectorTypesMatch(*this, Ty, VectorTy))
Anders Carlssonde71adf2007-11-27 05:51:55 +00005433 return Diag(R.getBegin(),
Mike Stump4e1f26a2009-02-19 03:04:26 +00005434 Ty->isVectorType() ?
Anders Carlssonde71adf2007-11-27 05:51:55 +00005435 diag::err_invalid_conversion_between_vectors :
Chris Lattner3b054132008-11-19 05:08:23 +00005436 diag::err_invalid_conversion_between_vector_and_integer)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005437 << VectorTy << Ty << R;
Anders Carlssonde71adf2007-11-27 05:51:55 +00005438 } else
5439 return Diag(R.getBegin(),
Chris Lattner3b054132008-11-19 05:08:23 +00005440 diag::err_invalid_conversion_between_vector_and_scalar)
Chris Lattner1e5665e2008-11-24 06:25:27 +00005441 << VectorTy << Ty << R;
Mike Stump4e1f26a2009-02-19 03:04:26 +00005442
John McCalle3027922010-08-25 11:45:40 +00005443 Kind = CK_BitCast;
Anders Carlssonde71adf2007-11-27 05:51:55 +00005444 return false;
5445}
5446
John Wiegley01296292011-04-08 18:41:53 +00005447ExprResult Sema::CheckExtVectorCast(SourceRange R, QualType DestTy,
5448 Expr *CastExpr, CastKind &Kind) {
Nate Begemanc69b7402009-06-26 00:50:28 +00005449 assert(DestTy->isExtVectorType() && "Not an extended vector type!");
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005450
Anders Carlsson43d70f82009-10-16 05:23:41 +00005451 QualType SrcTy = CastExpr->getType();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005452
Nate Begemanc8961a42009-06-27 22:05:55 +00005453 // If SrcTy is a VectorType, the total size must match to explicitly cast to
5454 // an ExtVectorType.
Tobias Grosser766bcc22011-09-22 13:03:14 +00005455 // In OpenCL, casts between vectors of different types are not allowed.
5456 // (See OpenCL 6.2).
Nate Begemanc69b7402009-06-26 00:50:28 +00005457 if (SrcTy->isVectorType()) {
Fariborz Jahanian328a7c42014-03-06 22:47:09 +00005458 if (!VectorTypesMatch(*this, SrcTy, DestTy)
David Blaikiebbafb8a2012-03-11 07:00:24 +00005459 || (getLangOpts().OpenCL &&
Tobias Grosser766bcc22011-09-22 13:03:14 +00005460 (DestTy.getCanonicalType() != SrcTy.getCanonicalType()))) {
John Wiegley01296292011-04-08 18:41:53 +00005461 Diag(R.getBegin(),diag::err_invalid_conversion_between_ext_vectors)
Nate Begemanc69b7402009-06-26 00:50:28 +00005462 << DestTy << SrcTy << R;
John Wiegley01296292011-04-08 18:41:53 +00005463 return ExprError();
5464 }
John McCalle3027922010-08-25 11:45:40 +00005465 Kind = CK_BitCast;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005466 return CastExpr;
Nate Begemanc69b7402009-06-26 00:50:28 +00005467 }
5468
Nate Begemanbd956c42009-06-28 02:36:38 +00005469 // All non-pointer scalars can be cast to ExtVector type. The appropriate
Nate Begemanc69b7402009-06-26 00:50:28 +00005470 // conversion will take place first from scalar to elt type, and then
5471 // splat from elt type to vector.
Nate Begemanbd956c42009-06-28 02:36:38 +00005472 if (SrcTy->isPointerType())
5473 return Diag(R.getBegin(),
5474 diag::err_invalid_conversion_between_vector_and_scalar)
5475 << DestTy << SrcTy << R;
Eli Friedman06ed2a52009-10-20 08:27:19 +00005476
5477 QualType DestElemTy = DestTy->getAs<ExtVectorType>()->getElementType();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005478 ExprResult CastExprRes = CastExpr;
John McCall9776e432011-10-06 23:25:11 +00005479 CastKind CK = PrepareScalarCast(CastExprRes, DestElemTy);
John Wiegley01296292011-04-08 18:41:53 +00005480 if (CastExprRes.isInvalid())
5481 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005482 CastExpr = ImpCastExprToType(CastExprRes.get(), DestElemTy, CK).get();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00005483
John McCalle3027922010-08-25 11:45:40 +00005484 Kind = CK_VectorSplat;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005485 return CastExpr;
Nate Begemanc69b7402009-06-26 00:50:28 +00005486}
5487
John McCalldadc5752010-08-24 06:29:42 +00005488ExprResult
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00005489Sema::ActOnCastExpr(Scope *S, SourceLocation LParenLoc,
5490 Declarator &D, ParsedType &Ty,
Richard Trieuba63ce62011-09-09 01:45:06 +00005491 SourceLocation RParenLoc, Expr *CastExpr) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005492 assert(!D.isInvalidType() && (CastExpr != nullptr) &&
Sebastian Redlb5d49352009-01-19 22:31:54 +00005493 "ActOnCastExpr(): missing type or expr");
Steve Naroff1a2cf6b2007-07-16 23:25:18 +00005494
Richard Trieuba63ce62011-09-09 01:45:06 +00005495 TypeSourceInfo *castTInfo = GetTypeForDeclaratorCast(D, CastExpr->getType());
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00005496 if (D.isInvalidType())
5497 return ExprError();
5498
David Blaikiebbafb8a2012-03-11 07:00:24 +00005499 if (getLangOpts().CPlusPlus) {
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00005500 // Check that there are no default arguments (C++ only).
5501 CheckExtraCXXDefaultArguments(D);
Kaelyn Takata13da33f2014-11-24 21:46:59 +00005502 } else {
5503 // Make sure any TypoExprs have been dealt with.
5504 ExprResult Res = CorrectDelayedTyposInExpr(CastExpr);
5505 if (!Res.isUsable())
5506 return ExprError();
5507 CastExpr = Res.get();
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00005508 }
5509
John McCall42856de2011-10-01 05:17:03 +00005510 checkUnusedDeclAttributes(D);
5511
Argyrios Kyrtzidis7192a3b2011-07-01 22:22:59 +00005512 QualType castType = castTInfo->getType();
5513 Ty = CreateParsedType(castType, castTInfo);
Mike Stump11289f42009-09-09 15:08:12 +00005514
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005515 bool isVectorLiteral = false;
5516
5517 // Check for an altivec or OpenCL literal,
5518 // i.e. all the elements are integer constants.
Richard Trieuba63ce62011-09-09 01:45:06 +00005519 ParenExpr *PE = dyn_cast<ParenExpr>(CastExpr);
5520 ParenListExpr *PLE = dyn_cast<ParenListExpr>(CastExpr);
David Blaikiebbafb8a2012-03-11 07:00:24 +00005521 if ((getLangOpts().AltiVec || getLangOpts().OpenCL)
Tobias Grosser0a3a22f2011-09-21 18:28:29 +00005522 && castType->isVectorType() && (PE || PLE)) {
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005523 if (PLE && PLE->getNumExprs() == 0) {
5524 Diag(PLE->getExprLoc(), diag::err_altivec_empty_initializer);
5525 return ExprError();
5526 }
5527 if (PE || PLE->getNumExprs() == 1) {
5528 Expr *E = (PE ? PE->getSubExpr() : PLE->getExpr(0));
5529 if (!E->getType()->isVectorType())
5530 isVectorLiteral = true;
5531 }
5532 else
5533 isVectorLiteral = true;
5534 }
5535
5536 // If this is a vector initializer, '(' type ')' '(' init, ..., init ')'
5537 // then handle it as such.
5538 if (isVectorLiteral)
Richard Trieuba63ce62011-09-09 01:45:06 +00005539 return BuildVectorLiteral(LParenLoc, RParenLoc, CastExpr, castTInfo);
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005540
Nate Begeman5ec4b312009-08-10 23:49:36 +00005541 // If the Expr being casted is a ParenListExpr, handle it specially.
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005542 // This is not an AltiVec-style cast, so turn the ParenListExpr into a
5543 // sequence of BinOp comma operators.
Richard Trieuba63ce62011-09-09 01:45:06 +00005544 if (isa<ParenListExpr>(CastExpr)) {
5545 ExprResult Result = MaybeConvertParenListExprToParenExpr(S, CastExpr);
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005546 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005547 CastExpr = Result.get();
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005548 }
John McCallebe54742010-01-15 18:56:44 +00005549
Alp Toker15ab3732013-12-12 12:47:48 +00005550 if (getLangOpts().CPlusPlus && !castType->isVoidType() &&
5551 !getSourceManager().isInSystemMacro(LParenLoc))
5552 Diag(LParenLoc, diag::warn_old_style_cast) << CastExpr->getSourceRange();
Fariborz Jahanianf1a22f42014-04-29 16:12:56 +00005553
5554 CheckTollFreeBridgeCast(castType, CastExpr);
Fariborz Jahanian53f867a2014-06-26 21:22:16 +00005555
5556 CheckObjCBridgeRelatedCast(castType, CastExpr);
5557
Richard Trieuba63ce62011-09-09 01:45:06 +00005558 return BuildCStyleCastExpr(LParenLoc, castTInfo, RParenLoc, CastExpr);
John McCallebe54742010-01-15 18:56:44 +00005559}
5560
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005561ExprResult Sema::BuildVectorLiteral(SourceLocation LParenLoc,
5562 SourceLocation RParenLoc, Expr *E,
5563 TypeSourceInfo *TInfo) {
5564 assert((isa<ParenListExpr>(E) || isa<ParenExpr>(E)) &&
5565 "Expected paren or paren list expression");
5566
5567 Expr **exprs;
5568 unsigned numExprs;
5569 Expr *subExpr;
Richard Smith9ca91012013-02-05 05:55:57 +00005570 SourceLocation LiteralLParenLoc, LiteralRParenLoc;
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005571 if (ParenListExpr *PE = dyn_cast<ParenListExpr>(E)) {
Richard Smith9ca91012013-02-05 05:55:57 +00005572 LiteralLParenLoc = PE->getLParenLoc();
5573 LiteralRParenLoc = PE->getRParenLoc();
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005574 exprs = PE->getExprs();
5575 numExprs = PE->getNumExprs();
Richard Smith9ca91012013-02-05 05:55:57 +00005576 } else { // isa<ParenExpr> by assertion at function entrance
5577 LiteralLParenLoc = cast<ParenExpr>(E)->getLParen();
5578 LiteralRParenLoc = cast<ParenExpr>(E)->getRParen();
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005579 subExpr = cast<ParenExpr>(E)->getSubExpr();
5580 exprs = &subExpr;
5581 numExprs = 1;
5582 }
5583
5584 QualType Ty = TInfo->getType();
5585 assert(Ty->isVectorType() && "Expected vector type");
5586
Chris Lattner0e62c1c2011-07-23 10:55:15 +00005587 SmallVector<Expr *, 8> initExprs;
Tanya Lattner83559382011-07-15 23:07:01 +00005588 const VectorType *VTy = Ty->getAs<VectorType>();
5589 unsigned numElems = Ty->getAs<VectorType>()->getNumElements();
5590
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005591 // '(...)' form of vector initialization in AltiVec: the number of
5592 // initializers must be one or must match the size of the vector.
5593 // If a single value is specified in the initializer then it will be
5594 // replicated to all the components of the vector
Tanya Lattner83559382011-07-15 23:07:01 +00005595 if (VTy->getVectorKind() == VectorType::AltiVecVector) {
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005596 // The number of initializers must be one or must match the size of the
5597 // vector. If a single value is specified in the initializer then it will
5598 // be replicated to all the components of the vector
5599 if (numExprs == 1) {
5600 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
Richard Smith01ebacd2011-10-27 23:31:58 +00005601 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5602 if (Literal.isInvalid())
5603 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005604 Literal = ImpCastExprToType(Literal.get(), ElemTy,
John McCall9776e432011-10-06 23:25:11 +00005605 PrepareScalarCast(Literal, ElemTy));
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005606 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005607 }
5608 else if (numExprs < numElems) {
5609 Diag(E->getExprLoc(),
5610 diag::err_incorrect_number_of_vector_initializers);
5611 return ExprError();
5612 }
5613 else
Benjamin Kramer8001f742012-02-14 12:06:21 +00005614 initExprs.append(exprs, exprs + numExprs);
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005615 }
Tanya Lattner83559382011-07-15 23:07:01 +00005616 else {
5617 // For OpenCL, when the number of initializers is a single value,
5618 // it will be replicated to all components of the vector.
David Blaikiebbafb8a2012-03-11 07:00:24 +00005619 if (getLangOpts().OpenCL &&
Tanya Lattner83559382011-07-15 23:07:01 +00005620 VTy->getVectorKind() == VectorType::GenericVector &&
5621 numExprs == 1) {
5622 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
Richard Smith01ebacd2011-10-27 23:31:58 +00005623 ExprResult Literal = DefaultLvalueConversion(exprs[0]);
5624 if (Literal.isInvalid())
5625 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005626 Literal = ImpCastExprToType(Literal.get(), ElemTy,
John McCall9776e432011-10-06 23:25:11 +00005627 PrepareScalarCast(Literal, ElemTy));
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005628 return BuildCStyleCastExpr(LParenLoc, TInfo, RParenLoc, Literal.get());
Tanya Lattner83559382011-07-15 23:07:01 +00005629 }
5630
Benjamin Kramer8001f742012-02-14 12:06:21 +00005631 initExprs.append(exprs, exprs + numExprs);
Tanya Lattner83559382011-07-15 23:07:01 +00005632 }
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005633 // FIXME: This means that pretty-printing the final AST will produce curly
5634 // braces instead of the original commas.
Richard Smith9ca91012013-02-05 05:55:57 +00005635 InitListExpr *initE = new (Context) InitListExpr(Context, LiteralLParenLoc,
5636 initExprs, LiteralRParenLoc);
Argyrios Kyrtzidisd8701b62011-07-01 22:22:54 +00005637 initE->setType(Ty);
5638 return BuildCompoundLiteralExpr(LParenLoc, TInfo, RParenLoc, initE);
5639}
5640
Sebastian Redla9351792012-02-11 23:51:47 +00005641/// This is not an AltiVec-style cast or or C++ direct-initialization, so turn
5642/// the ParenListExpr into a sequence of comma binary operators.
John McCalldadc5752010-08-24 06:29:42 +00005643ExprResult
Richard Trieuba63ce62011-09-09 01:45:06 +00005644Sema::MaybeConvertParenListExprToParenExpr(Scope *S, Expr *OrigExpr) {
5645 ParenListExpr *E = dyn_cast<ParenListExpr>(OrigExpr);
Nate Begeman5ec4b312009-08-10 23:49:36 +00005646 if (!E)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005647 return OrigExpr;
Mike Stump11289f42009-09-09 15:08:12 +00005648
John McCalldadc5752010-08-24 06:29:42 +00005649 ExprResult Result(E->getExpr(0));
Mike Stump11289f42009-09-09 15:08:12 +00005650
Nate Begeman5ec4b312009-08-10 23:49:36 +00005651 for (unsigned i = 1, e = E->getNumExprs(); i != e && !Result.isInvalid(); ++i)
John McCallb268a282010-08-23 23:25:46 +00005652 Result = ActOnBinOp(S, E->getExprLoc(), tok::comma, Result.get(),
5653 E->getExpr(i));
Mike Stump11289f42009-09-09 15:08:12 +00005654
John McCallb268a282010-08-23 23:25:46 +00005655 if (Result.isInvalid()) return ExprError();
5656
5657 return ActOnParenExpr(E->getLParenLoc(), E->getRParenLoc(), Result.get());
Nate Begeman5ec4b312009-08-10 23:49:36 +00005658}
5659
Sebastian Redla9351792012-02-11 23:51:47 +00005660ExprResult Sema::ActOnParenListExpr(SourceLocation L,
5661 SourceLocation R,
5662 MultiExprArg Val) {
Benjamin Kramerc215e762012-08-24 11:54:20 +00005663 Expr *expr = new (Context) ParenListExpr(Context, L, Val, R);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00005664 return expr;
Nate Begeman5ec4b312009-08-10 23:49:36 +00005665}
5666
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005667/// \brief Emit a specialized diagnostic when one expression is a null pointer
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005668/// constant and the other is not a pointer. Returns true if a diagnostic is
5669/// emitted.
Richard Trieud33e46e2011-09-06 20:06:39 +00005670bool Sema::DiagnoseConditionalForNull(Expr *LHSExpr, Expr *RHSExpr,
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005671 SourceLocation QuestionLoc) {
Richard Trieud33e46e2011-09-06 20:06:39 +00005672 Expr *NullExpr = LHSExpr;
5673 Expr *NonPointerExpr = RHSExpr;
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005674 Expr::NullPointerConstantKind NullKind =
5675 NullExpr->isNullPointerConstant(Context,
5676 Expr::NPC_ValueDependentIsNotNull);
5677
5678 if (NullKind == Expr::NPCK_NotNull) {
Richard Trieud33e46e2011-09-06 20:06:39 +00005679 NullExpr = RHSExpr;
5680 NonPointerExpr = LHSExpr;
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005681 NullKind =
5682 NullExpr->isNullPointerConstant(Context,
5683 Expr::NPC_ValueDependentIsNotNull);
5684 }
5685
5686 if (NullKind == Expr::NPCK_NotNull)
5687 return false;
5688
David Blaikie1c7c8f72012-08-08 17:33:31 +00005689 if (NullKind == Expr::NPCK_ZeroExpression)
5690 return false;
5691
5692 if (NullKind == Expr::NPCK_ZeroLiteral) {
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005693 // In this case, check to make sure that we got here from a "NULL"
5694 // string in the source code.
5695 NullExpr = NullExpr->IgnoreParenImpCasts();
John McCall462c0552011-03-08 07:59:04 +00005696 SourceLocation loc = NullExpr->getExprLoc();
5697 if (!findMacroSpelling(loc, "NULL"))
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005698 return false;
5699 }
5700
Richard Smith89645bc2013-01-02 12:01:23 +00005701 int DiagType = (NullKind == Expr::NPCK_CXX11_nullptr);
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00005702 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands_null)
5703 << NonPointerExpr->getType() << DiagType
5704 << NonPointerExpr->getSourceRange();
5705 return true;
5706}
5707
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005708/// \brief Return false if the condition expression is valid, true otherwise.
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00005709static bool checkCondition(Sema &S, Expr *Cond, SourceLocation QuestionLoc) {
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005710 QualType CondTy = Cond->getType();
5711
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00005712 // OpenCL v1.1 s6.3.i says the condition cannot be a floating point type.
5713 if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
5714 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
5715 << CondTy << Cond->getSourceRange();
5716 return true;
5717 }
5718
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005719 // C99 6.5.15p2
5720 if (CondTy->isScalarType()) return false;
5721
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00005722 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_scalar)
5723 << CondTy << Cond->getSourceRange();
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005724 return true;
5725}
5726
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005727/// \brief Handle when one or both operands are void type.
5728static QualType checkConditionalVoidType(Sema &S, ExprResult &LHS,
5729 ExprResult &RHS) {
5730 Expr *LHSExpr = LHS.get();
5731 Expr *RHSExpr = RHS.get();
5732
5733 if (!LHSExpr->getType()->isVoidType())
5734 S.Diag(RHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5735 << RHSExpr->getSourceRange();
5736 if (!RHSExpr->getType()->isVoidType())
5737 S.Diag(LHSExpr->getLocStart(), diag::ext_typecheck_cond_one_void)
5738 << LHSExpr->getSourceRange();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005739 LHS = S.ImpCastExprToType(LHS.get(), S.Context.VoidTy, CK_ToVoid);
5740 RHS = S.ImpCastExprToType(RHS.get(), S.Context.VoidTy, CK_ToVoid);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005741 return S.Context.VoidTy;
5742}
5743
5744/// \brief Return false if the NullExpr can be promoted to PointerTy,
5745/// true otherwise.
5746static bool checkConditionalNullPointer(Sema &S, ExprResult &NullExpr,
5747 QualType PointerTy) {
5748 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) ||
5749 !NullExpr.get()->isNullPointerConstant(S.Context,
5750 Expr::NPC_ValueDependentIsNull))
5751 return true;
5752
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005753 NullExpr = S.ImpCastExprToType(NullExpr.get(), PointerTy, CK_NullToPointer);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005754 return false;
5755}
5756
5757/// \brief Checks compatibility between two pointers and return the resulting
5758/// type.
5759static QualType checkConditionalPointerCompatibility(Sema &S, ExprResult &LHS,
5760 ExprResult &RHS,
5761 SourceLocation Loc) {
5762 QualType LHSTy = LHS.get()->getType();
5763 QualType RHSTy = RHS.get()->getType();
5764
5765 if (S.Context.hasSameType(LHSTy, RHSTy)) {
5766 // Two identical pointers types are always compatible.
5767 return LHSTy;
5768 }
5769
5770 QualType lhptee, rhptee;
5771
5772 // Get the pointee types.
Fariborz Jahanian1edacec2013-06-07 16:07:38 +00005773 bool IsBlockPointer = false;
John McCall9320b872011-09-09 05:25:32 +00005774 if (const BlockPointerType *LHSBTy = LHSTy->getAs<BlockPointerType>()) {
5775 lhptee = LHSBTy->getPointeeType();
5776 rhptee = RHSTy->castAs<BlockPointerType>()->getPointeeType();
Fariborz Jahanian1edacec2013-06-07 16:07:38 +00005777 IsBlockPointer = true;
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005778 } else {
John McCall9320b872011-09-09 05:25:32 +00005779 lhptee = LHSTy->castAs<PointerType>()->getPointeeType();
5780 rhptee = RHSTy->castAs<PointerType>()->getPointeeType();
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005781 }
5782
Eli Friedman57a75392012-04-05 22:30:04 +00005783 // C99 6.5.15p6: If both operands are pointers to compatible types or to
5784 // differently qualified versions of compatible types, the result type is
5785 // a pointer to an appropriately qualified version of the composite
5786 // type.
5787
5788 // Only CVR-qualifiers exist in the standard, and the differently-qualified
5789 // clause doesn't make sense for our extensions. E.g. address space 2 should
5790 // be incompatible with address space 3: they may live on different devices or
5791 // anything.
5792 Qualifiers lhQual = lhptee.getQualifiers();
5793 Qualifiers rhQual = rhptee.getQualifiers();
5794
5795 unsigned MergedCVRQual = lhQual.getCVRQualifiers() | rhQual.getCVRQualifiers();
5796 lhQual.removeCVRQualifiers();
5797 rhQual.removeCVRQualifiers();
5798
5799 lhptee = S.Context.getQualifiedType(lhptee.getUnqualifiedType(), lhQual);
5800 rhptee = S.Context.getQualifiedType(rhptee.getUnqualifiedType(), rhQual);
5801
5802 QualType CompositeTy = S.Context.mergeTypes(lhptee, rhptee);
5803
5804 if (CompositeTy.isNull()) {
Richard Smith1b98ccc2014-07-19 01:39:17 +00005805 S.Diag(Loc, diag::ext_typecheck_cond_incompatible_pointers)
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005806 << LHSTy << RHSTy << LHS.get()->getSourceRange()
5807 << RHS.get()->getSourceRange();
5808 // In this situation, we assume void* type. No especially good
5809 // reason, but this is what gcc does, and we do have to pick
5810 // to get a consistent AST.
5811 QualType incompatTy = S.Context.getPointerType(S.Context.VoidTy);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005812 LHS = S.ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
5813 RHS = S.ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005814 return incompatTy;
5815 }
5816
5817 // The pointer types are compatible.
Eli Friedman57a75392012-04-05 22:30:04 +00005818 QualType ResultTy = CompositeTy.withCVRQualifiers(MergedCVRQual);
Fariborz Jahanian1edacec2013-06-07 16:07:38 +00005819 if (IsBlockPointer)
Fariborz Jahanian44d23b82013-06-07 00:48:14 +00005820 ResultTy = S.Context.getBlockPointerType(ResultTy);
5821 else
5822 ResultTy = S.Context.getPointerType(ResultTy);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005823
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005824 LHS = S.ImpCastExprToType(LHS.get(), ResultTy, CK_BitCast);
5825 RHS = S.ImpCastExprToType(RHS.get(), ResultTy, CK_BitCast);
Eli Friedman57a75392012-04-05 22:30:04 +00005826 return ResultTy;
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005827}
5828
5829/// \brief Return the resulting type when the operands are both block pointers.
5830static QualType checkConditionalBlockPointerCompatibility(Sema &S,
5831 ExprResult &LHS,
5832 ExprResult &RHS,
5833 SourceLocation Loc) {
5834 QualType LHSTy = LHS.get()->getType();
5835 QualType RHSTy = RHS.get()->getType();
5836
5837 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) {
5838 if (LHSTy->isVoidPointerType() || RHSTy->isVoidPointerType()) {
5839 QualType destType = S.Context.getPointerType(S.Context.VoidTy);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005840 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
5841 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005842 return destType;
5843 }
5844 S.Diag(Loc, diag::err_typecheck_cond_incompatible_operands)
5845 << LHSTy << RHSTy << LHS.get()->getSourceRange()
5846 << RHS.get()->getSourceRange();
5847 return QualType();
5848 }
5849
5850 // We have 2 block pointer types.
5851 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
5852}
5853
5854/// \brief Return the resulting type when the operands are both pointers.
5855static QualType
5856checkConditionalObjectPointersCompatibility(Sema &S, ExprResult &LHS,
5857 ExprResult &RHS,
5858 SourceLocation Loc) {
5859 // get the pointer types
5860 QualType LHSTy = LHS.get()->getType();
5861 QualType RHSTy = RHS.get()->getType();
5862
5863 // get the "pointed to" types
5864 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
5865 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
5866
5867 // ignore qualifiers on void (C99 6.5.15p3, clause 6)
5868 if (lhptee->isVoidType() && rhptee->isIncompleteOrObjectType()) {
5869 // Figure out necessary qualifiers (C99 6.5.15p6)
5870 QualType destPointee
5871 = S.Context.getQualifiedType(lhptee, rhptee.getQualifiers());
5872 QualType destType = S.Context.getPointerType(destPointee);
5873 // Add qualifiers if necessary.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005874 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_NoOp);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005875 // Promote to void*.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005876 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_BitCast);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005877 return destType;
5878 }
5879 if (rhptee->isVoidType() && lhptee->isIncompleteOrObjectType()) {
5880 QualType destPointee
5881 = S.Context.getQualifiedType(rhptee, lhptee.getQualifiers());
5882 QualType destType = S.Context.getPointerType(destPointee);
5883 // Add qualifiers if necessary.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005884 RHS = S.ImpCastExprToType(RHS.get(), destType, CK_NoOp);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005885 // Promote to void*.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005886 LHS = S.ImpCastExprToType(LHS.get(), destType, CK_BitCast);
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005887 return destType;
5888 }
5889
5890 return checkConditionalPointerCompatibility(S, LHS, RHS, Loc);
5891}
5892
5893/// \brief Return false if the first expression is not an integer and the second
5894/// expression is not a pointer, true otherwise.
5895static bool checkPointerIntegerMismatch(Sema &S, ExprResult &Int,
5896 Expr* PointerExpr, SourceLocation Loc,
Richard Trieuba63ce62011-09-09 01:45:06 +00005897 bool IsIntFirstExpr) {
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005898 if (!PointerExpr->getType()->isPointerType() ||
5899 !Int.get()->getType()->isIntegerType())
5900 return false;
5901
Richard Trieuba63ce62011-09-09 01:45:06 +00005902 Expr *Expr1 = IsIntFirstExpr ? Int.get() : PointerExpr;
5903 Expr *Expr2 = IsIntFirstExpr ? PointerExpr : Int.get();
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005904
Richard Smith1b98ccc2014-07-19 01:39:17 +00005905 S.Diag(Loc, diag::ext_typecheck_cond_pointer_integer_mismatch)
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005906 << Expr1->getType() << Expr2->getType()
5907 << Expr1->getSourceRange() << Expr2->getSourceRange();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005908 Int = S.ImpCastExprToType(Int.get(), PointerExpr->getType(),
Richard Trieu27ae4cb2011-09-02 01:51:02 +00005909 CK_IntegralToPointer);
5910 return true;
5911}
5912
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00005913/// \brief Simple conversion between integer and floating point types.
5914///
5915/// Used when handling the OpenCL conditional operator where the
5916/// condition is a vector while the other operands are scalar.
5917///
5918/// OpenCL v1.1 s6.3.i and s6.11.6 together require that the scalar
5919/// types are either integer or floating type. Between the two
5920/// operands, the type with the higher rank is defined as the "result
5921/// type". The other operand needs to be promoted to the same type. No
5922/// other type promotion is allowed. We cannot use
5923/// UsualArithmeticConversions() for this purpose, since it always
5924/// promotes promotable types.
5925static QualType OpenCLArithmeticConversions(Sema &S, ExprResult &LHS,
5926 ExprResult &RHS,
5927 SourceLocation QuestionLoc) {
5928 LHS = S.DefaultFunctionArrayLvalueConversion(LHS.get());
5929 if (LHS.isInvalid())
5930 return QualType();
5931 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
5932 if (RHS.isInvalid())
5933 return QualType();
5934
5935 // For conversion purposes, we ignore any qualifiers.
5936 // For example, "const float" and "float" are equivalent.
5937 QualType LHSType =
5938 S.Context.getCanonicalType(LHS.get()->getType()).getUnqualifiedType();
5939 QualType RHSType =
5940 S.Context.getCanonicalType(RHS.get()->getType()).getUnqualifiedType();
5941
5942 if (!LHSType->isIntegerType() && !LHSType->isRealFloatingType()) {
5943 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
5944 << LHSType << LHS.get()->getSourceRange();
5945 return QualType();
5946 }
5947
5948 if (!RHSType->isIntegerType() && !RHSType->isRealFloatingType()) {
5949 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_int_float)
5950 << RHSType << RHS.get()->getSourceRange();
5951 return QualType();
5952 }
5953
5954 // If both types are identical, no conversion is needed.
5955 if (LHSType == RHSType)
5956 return LHSType;
5957
5958 // Now handle "real" floating types (i.e. float, double, long double).
5959 if (LHSType->isRealFloatingType() || RHSType->isRealFloatingType())
5960 return handleFloatConversion(S, LHS, RHS, LHSType, RHSType,
5961 /*IsCompAssign = */ false);
5962
5963 // Finally, we have two differing integer types.
5964 return handleIntegerConversion<doIntegralCast, doIntegralCast>
5965 (S, LHS, RHS, LHSType, RHSType, /*IsCompAssign = */ false);
5966}
5967
5968/// \brief Convert scalar operands to a vector that matches the
5969/// condition in length.
5970///
5971/// Used when handling the OpenCL conditional operator where the
5972/// condition is a vector while the other operands are scalar.
5973///
5974/// We first compute the "result type" for the scalar operands
5975/// according to OpenCL v1.1 s6.3.i. Both operands are then converted
5976/// into a vector of that type where the length matches the condition
5977/// vector type. s6.11.6 requires that the element types of the result
5978/// and the condition must have the same number of bits.
5979static QualType
5980OpenCLConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS,
5981 QualType CondTy, SourceLocation QuestionLoc) {
5982 QualType ResTy = OpenCLArithmeticConversions(S, LHS, RHS, QuestionLoc);
5983 if (ResTy.isNull()) return QualType();
5984
5985 const VectorType *CV = CondTy->getAs<VectorType>();
5986 assert(CV);
5987
5988 // Determine the vector result type
5989 unsigned NumElements = CV->getNumElements();
5990 QualType VectorTy = S.Context.getExtVectorType(ResTy, NumElements);
5991
5992 // Ensure that all types have the same number of bits
5993 if (S.Context.getTypeSize(CV->getElementType())
5994 != S.Context.getTypeSize(ResTy)) {
5995 // Since VectorTy is created internally, it does not pretty print
5996 // with an OpenCL name. Instead, we just print a description.
5997 std::string EleTyName = ResTy.getUnqualifiedType().getAsString();
5998 SmallString<64> Str;
5999 llvm::raw_svector_ostream OS(Str);
6000 OS << "(vector of " << NumElements << " '" << EleTyName << "' values)";
6001 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6002 << CondTy << OS.str();
6003 return QualType();
6004 }
6005
6006 // Convert operands to the vector result type
6007 LHS = S.ImpCastExprToType(LHS.get(), VectorTy, CK_VectorSplat);
6008 RHS = S.ImpCastExprToType(RHS.get(), VectorTy, CK_VectorSplat);
6009
6010 return VectorTy;
6011}
6012
6013/// \brief Return false if this is a valid OpenCL condition vector
6014static bool checkOpenCLConditionVector(Sema &S, Expr *Cond,
6015 SourceLocation QuestionLoc) {
6016 // OpenCL v1.1 s6.11.6 says the elements of the vector must be of
6017 // integral type.
6018 const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
6019 assert(CondTy);
6020 QualType EleTy = CondTy->getElementType();
6021 if (EleTy->isIntegerType()) return false;
6022
6023 S.Diag(QuestionLoc, diag::err_typecheck_cond_expect_nonfloat)
6024 << Cond->getType() << Cond->getSourceRange();
6025 return true;
6026}
6027
6028/// \brief Return false if the vector condition type and the vector
6029/// result type are compatible.
6030///
6031/// OpenCL v1.1 s6.11.6 requires that both vector types have the same
6032/// number of elements, and their element types have the same number
6033/// of bits.
6034static bool checkVectorResult(Sema &S, QualType CondTy, QualType VecResTy,
6035 SourceLocation QuestionLoc) {
6036 const VectorType *CV = CondTy->getAs<VectorType>();
6037 const VectorType *RV = VecResTy->getAs<VectorType>();
6038 assert(CV && RV);
6039
6040 if (CV->getNumElements() != RV->getNumElements()) {
6041 S.Diag(QuestionLoc, diag::err_conditional_vector_size)
6042 << CondTy << VecResTy;
6043 return true;
6044 }
6045
6046 QualType CVE = CV->getElementType();
6047 QualType RVE = RV->getElementType();
6048
6049 if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE)) {
6050 S.Diag(QuestionLoc, diag::err_conditional_vector_element_size)
6051 << CondTy << VecResTy;
6052 return true;
6053 }
6054
6055 return false;
6056}
6057
6058/// \brief Return the resulting type for the conditional operator in
6059/// OpenCL (aka "ternary selection operator", OpenCL v1.1
6060/// s6.3.i) when the condition is a vector type.
6061static QualType
6062OpenCLCheckVectorConditional(Sema &S, ExprResult &Cond,
6063 ExprResult &LHS, ExprResult &RHS,
6064 SourceLocation QuestionLoc) {
6065 Cond = S.DefaultFunctionArrayLvalueConversion(Cond.get());
6066 if (Cond.isInvalid())
6067 return QualType();
6068 QualType CondTy = Cond.get()->getType();
6069
6070 if (checkOpenCLConditionVector(S, Cond.get(), QuestionLoc))
6071 return QualType();
6072
6073 // If either operand is a vector then find the vector type of the
6074 // result as specified in OpenCL v1.1 s6.3.i.
6075 if (LHS.get()->getType()->isVectorType() ||
6076 RHS.get()->getType()->isVectorType()) {
6077 QualType VecResTy = S.CheckVectorOperands(LHS, RHS, QuestionLoc,
6078 /*isCompAssign*/false);
6079 if (VecResTy.isNull()) return QualType();
6080 // The result type must match the condition type as specified in
6081 // OpenCL v1.1 s6.11.6.
6082 if (checkVectorResult(S, CondTy, VecResTy, QuestionLoc))
6083 return QualType();
6084 return VecResTy;
6085 }
6086
6087 // Both operands are scalar.
6088 return OpenCLConvertScalarsToVectors(S, LHS, RHS, CondTy, QuestionLoc);
6089}
6090
Richard Trieud33e46e2011-09-06 20:06:39 +00006091/// Note that LHS is not null here, even if this is the gnu "x ?: y" extension.
6092/// In that case, LHS = cond.
Chris Lattner2c486602009-02-18 04:38:20 +00006093/// C99 6.5.15
Richard Trieucfc491d2011-08-02 04:35:43 +00006094QualType Sema::CheckConditionalOperands(ExprResult &Cond, ExprResult &LHS,
6095 ExprResult &RHS, ExprValueKind &VK,
6096 ExprObjectKind &OK,
Chris Lattner2c486602009-02-18 04:38:20 +00006097 SourceLocation QuestionLoc) {
Douglas Gregor1beec452011-03-12 01:48:56 +00006098
Richard Trieud33e46e2011-09-06 20:06:39 +00006099 ExprResult LHSResult = CheckPlaceholderExpr(LHS.get());
6100 if (!LHSResult.isUsable()) return QualType();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006101 LHS = LHSResult;
Douglas Gregor0124e9b2010-11-09 21:07:58 +00006102
Richard Trieud33e46e2011-09-06 20:06:39 +00006103 ExprResult RHSResult = CheckPlaceholderExpr(RHS.get());
6104 if (!RHSResult.isUsable()) return QualType();
Benjamin Kramer62b95d82012-08-23 21:35:17 +00006105 RHS = RHSResult;
Douglas Gregor0124e9b2010-11-09 21:07:58 +00006106
Sebastian Redl1a99f442009-04-16 17:51:27 +00006107 // C++ is sufficiently different to merit its own checker.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006108 if (getLangOpts().CPlusPlus)
John McCallc07a0c72011-02-17 10:25:35 +00006109 return CXXCheckConditionalOperands(Cond, LHS, RHS, VK, OK, QuestionLoc);
John McCall7decc9e2010-11-18 06:31:45 +00006110
6111 VK = VK_RValue;
John McCall4bc41ae2010-11-18 19:01:18 +00006112 OK = OK_Ordinary;
Sebastian Redl1a99f442009-04-16 17:51:27 +00006113
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00006114 // The OpenCL operator with a vector condition is sufficiently
6115 // different to merit its own checker.
6116 if (getLangOpts().OpenCL && Cond.get()->getType()->isVectorType())
6117 return OpenCLCheckVectorConditional(*this, Cond, LHS, RHS, QuestionLoc);
6118
Jin-Gu Kang09c22132013-09-02 20:32:37 +00006119 // First, check the condition.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006120 Cond = UsualUnaryConversions(Cond.get());
John Wiegley01296292011-04-08 18:41:53 +00006121 if (Cond.isInvalid())
6122 return QualType();
Sameer Sahasrabuddhee8d2aaf2015-02-04 06:38:18 +00006123 if (checkCondition(*this, Cond.get(), QuestionLoc))
Jin-Gu Kang09c22132013-09-02 20:32:37 +00006124 return QualType();
6125
6126 // Now check the two expressions.
6127 if (LHS.get()->getType()->isVectorType() ||
6128 RHS.get()->getType()->isVectorType())
6129 return CheckVectorOperands(LHS, RHS, QuestionLoc, /*isCompAssign*/false);
6130
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00006131 QualType ResTy = UsualArithmeticConversions(LHS, RHS);
Eli Friedmane6d33952013-07-08 20:20:06 +00006132 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00006133 return QualType();
6134
John Wiegley01296292011-04-08 18:41:53 +00006135 QualType LHSTy = LHS.get()->getType();
6136 QualType RHSTy = RHS.get()->getType();
Steve Naroff31090012007-07-16 21:54:35 +00006137
Chris Lattnere2949f42008-01-06 22:42:25 +00006138 // If both operands have arithmetic type, do the usual arithmetic conversions
6139 // to find a common type: C99 6.5.15p3,5.
Anton Korobeynikov5f951ee2014-11-14 22:09:15 +00006140 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) {
6141 LHS = ImpCastExprToType(LHS.get(), ResTy, PrepareScalarCast(LHS, ResTy));
6142 RHS = ImpCastExprToType(RHS.get(), ResTy, PrepareScalarCast(RHS, ResTy));
6143
6144 return ResTy;
6145 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006146
Chris Lattnere2949f42008-01-06 22:42:25 +00006147 // If both operands are the same structure or union type, the result is that
6148 // type.
Ted Kremenekc23c7e62009-07-29 21:53:49 +00006149 if (const RecordType *LHSRT = LHSTy->getAs<RecordType>()) { // C99 6.5.15p3
6150 if (const RecordType *RHSRT = RHSTy->getAs<RecordType>())
Chris Lattner2ab40a62007-11-26 01:40:58 +00006151 if (LHSRT->getDecl() == RHSRT->getDecl())
Mike Stump4e1f26a2009-02-19 03:04:26 +00006152 // "If both the operands have structure or union type, the result has
Chris Lattnere2949f42008-01-06 22:42:25 +00006153 // that type." This implies that CV qualifiers are dropped.
Chris Lattner432cff52009-02-18 04:28:32 +00006154 return LHSTy.getUnqualifiedType();
Eli Friedmanba961a92009-03-23 00:24:07 +00006155 // FIXME: Type of conditional expression must be complete in C mode.
Steve Naroffa78fe7e2007-05-16 19:47:19 +00006156 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006157
Chris Lattnere2949f42008-01-06 22:42:25 +00006158 // C99 6.5.15p5: "If both operands have void type, the result has void type."
Steve Naroffbf1516c2008-05-12 21:44:38 +00006159 // The following || allows only one side to be void (a GCC-ism).
Chris Lattner432cff52009-02-18 04:28:32 +00006160 if (LHSTy->isVoidType() || RHSTy->isVoidType()) {
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006161 return checkConditionalVoidType(*this, LHS, RHS);
Steve Naroffbf1516c2008-05-12 21:44:38 +00006162 }
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006163
Steve Naroff039ad3c2008-01-08 01:11:38 +00006164 // C99 6.5.15p6 - "if one operand is a null pointer constant, the result has
6165 // the type of the other operand."
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006166 if (!checkConditionalNullPointer(*this, RHS, LHSTy)) return LHSTy;
6167 if (!checkConditionalNullPointer(*this, LHS, RHSTy)) return RHSTy;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006168
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006169 // All objective-c pointer type analysis is done here.
6170 QualType compositeType = FindCompositeObjCPointerType(LHS, RHS,
6171 QuestionLoc);
John Wiegley01296292011-04-08 18:41:53 +00006172 if (LHS.isInvalid() || RHS.isInvalid())
6173 return QualType();
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006174 if (!compositeType.isNull())
6175 return compositeType;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006176
6177
Steve Naroff05efa972009-07-01 14:36:47 +00006178 // Handle block pointer types.
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006179 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType())
6180 return checkConditionalBlockPointerCompatibility(*this, LHS, RHS,
6181 QuestionLoc);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006182
Steve Naroff05efa972009-07-01 14:36:47 +00006183 // Check constraints for C object pointers types (C99 6.5.15p3,6).
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006184 if (LHSTy->isPointerType() && RHSTy->isPointerType())
6185 return checkConditionalObjectPointersCompatibility(*this, LHS, RHS,
6186 QuestionLoc);
Mike Stump11289f42009-09-09 15:08:12 +00006187
John McCalle84af4e2010-11-13 01:35:44 +00006188 // GCC compatibility: soften pointer/integer mismatch. Note that
6189 // null pointers have been filtered out by this point.
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006190 if (checkPointerIntegerMismatch(*this, LHS, RHS.get(), QuestionLoc,
6191 /*isIntFirstExpr=*/true))
Steve Naroff05efa972009-07-01 14:36:47 +00006192 return RHSTy;
Richard Trieu27ae4cb2011-09-02 01:51:02 +00006193 if (checkPointerIntegerMismatch(*this, RHS, LHS.get(), QuestionLoc,
6194 /*isIntFirstExpr=*/false))
Steve Naroff05efa972009-07-01 14:36:47 +00006195 return LHSTy;
Daniel Dunbar484603b2008-09-11 23:12:46 +00006196
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00006197 // Emit a better diagnostic if one of the expressions is a null pointer
6198 // constant and the other is not a pointer type. In this case, the user most
6199 // likely forgot to take the address of the other expression.
John Wiegley01296292011-04-08 18:41:53 +00006200 if (DiagnoseConditionalForNull(LHS.get(), RHS.get(), QuestionLoc))
Chandler Carrutha8bea4b2011-02-18 23:54:50 +00006201 return QualType();
6202
Chris Lattnere2949f42008-01-06 22:42:25 +00006203 // Otherwise, the operands are not compatible.
Chris Lattner432cff52009-02-18 04:28:32 +00006204 Diag(QuestionLoc, diag::err_typecheck_cond_incompatible_operands)
Richard Trieucfc491d2011-08-02 04:35:43 +00006205 << LHSTy << RHSTy << LHS.get()->getSourceRange()
6206 << RHS.get()->getSourceRange();
Steve Naroffa78fe7e2007-05-16 19:47:19 +00006207 return QualType();
Steve Narofff8a28c52007-05-15 20:29:32 +00006208}
6209
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006210/// FindCompositeObjCPointerType - Helper method to find composite type of
6211/// two objective-c pointer types of the two input expressions.
John Wiegley01296292011-04-08 18:41:53 +00006212QualType Sema::FindCompositeObjCPointerType(ExprResult &LHS, ExprResult &RHS,
Richard Trieucfc491d2011-08-02 04:35:43 +00006213 SourceLocation QuestionLoc) {
John Wiegley01296292011-04-08 18:41:53 +00006214 QualType LHSTy = LHS.get()->getType();
6215 QualType RHSTy = RHS.get()->getType();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006216
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006217 // Handle things like Class and struct objc_class*. Here we case the result
6218 // to the pseudo-builtin, because that will be implicitly cast back to the
6219 // redefinition type if an attempt is made to access its fields.
6220 if (LHSTy->isObjCClassType() &&
Douglas Gregor97673472011-08-11 20:58:55 +00006221 (Context.hasSameType(RHSTy, Context.getObjCClassRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006222 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006223 return LHSTy;
6224 }
6225 if (RHSTy->isObjCClassType() &&
Douglas Gregor97673472011-08-11 20:58:55 +00006226 (Context.hasSameType(LHSTy, Context.getObjCClassRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006227 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006228 return RHSTy;
6229 }
6230 // And the same for struct objc_object* / id
6231 if (LHSTy->isObjCIdType() &&
Douglas Gregor97673472011-08-11 20:58:55 +00006232 (Context.hasSameType(RHSTy, Context.getObjCIdRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006233 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006234 return LHSTy;
6235 }
6236 if (RHSTy->isObjCIdType() &&
Douglas Gregor97673472011-08-11 20:58:55 +00006237 (Context.hasSameType(LHSTy, Context.getObjCIdRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006238 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_CPointerToObjCPointerCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006239 return RHSTy;
6240 }
6241 // And the same for struct objc_selector* / SEL
6242 if (Context.isObjCSelType(LHSTy) &&
Douglas Gregor97673472011-08-11 20:58:55 +00006243 (Context.hasSameType(RHSTy, Context.getObjCSelRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006244 RHS = ImpCastExprToType(RHS.get(), LHSTy, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006245 return LHSTy;
6246 }
6247 if (Context.isObjCSelType(RHSTy) &&
Douglas Gregor97673472011-08-11 20:58:55 +00006248 (Context.hasSameType(LHSTy, Context.getObjCSelRedefinitionType()))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006249 LHS = ImpCastExprToType(LHS.get(), RHSTy, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006250 return RHSTy;
6251 }
6252 // Check constraints for Objective-C object pointers types.
6253 if (LHSTy->isObjCObjectPointerType() && RHSTy->isObjCObjectPointerType()) {
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006254
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006255 if (Context.getCanonicalType(LHSTy) == Context.getCanonicalType(RHSTy)) {
6256 // Two identical object pointer types are always compatible.
6257 return LHSTy;
6258 }
John McCall9320b872011-09-09 05:25:32 +00006259 const ObjCObjectPointerType *LHSOPT = LHSTy->castAs<ObjCObjectPointerType>();
6260 const ObjCObjectPointerType *RHSOPT = RHSTy->castAs<ObjCObjectPointerType>();
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006261 QualType compositeType = LHSTy;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006262
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006263 // If both operands are interfaces and either operand can be
6264 // assigned to the other, use that type as the composite
6265 // type. This allows
6266 // xxx ? (A*) a : (B*) b
6267 // where B is a subclass of A.
6268 //
6269 // Additionally, as for assignment, if either type is 'id'
6270 // allow silent coercion. Finally, if the types are
6271 // incompatible then make sure to use 'id' as the composite
6272 // type so the result is acceptable for sending messages to.
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006273
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006274 // FIXME: Consider unifying with 'areComparableObjCPointerTypes'.
6275 // It could return the composite type.
Douglas Gregorc5e07f52015-07-07 03:58:01 +00006276 if (!(compositeType =
6277 Context.areCommonBaseCompatible(LHSOPT, RHSOPT)).isNull()) {
6278 // Nothing more to do.
6279 } else if (Context.canAssignObjCInterfaces(LHSOPT, RHSOPT)) {
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006280 compositeType = RHSOPT->isObjCBuiltinType() ? RHSTy : LHSTy;
6281 } else if (Context.canAssignObjCInterfaces(RHSOPT, LHSOPT)) {
6282 compositeType = LHSOPT->isObjCBuiltinType() ? LHSTy : RHSTy;
6283 } else if ((LHSTy->isObjCQualifiedIdType() ||
6284 RHSTy->isObjCQualifiedIdType()) &&
6285 Context.ObjCQualifiedIdTypesAreCompatible(LHSTy, RHSTy, true)) {
6286 // Need to handle "id<xx>" explicitly.
6287 // GCC allows qualified id and any Objective-C type to devolve to
6288 // id. Currently localizing to here until clear this should be
6289 // part of ObjCQualifiedIdTypesAreCompatible.
6290 compositeType = Context.getObjCIdType();
6291 } else if (LHSTy->isObjCIdType() || RHSTy->isObjCIdType()) {
6292 compositeType = Context.getObjCIdType();
Douglas Gregorc5e07f52015-07-07 03:58:01 +00006293 } else {
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006294 Diag(QuestionLoc, diag::ext_typecheck_cond_incompatible_operands)
6295 << LHSTy << RHSTy
John Wiegley01296292011-04-08 18:41:53 +00006296 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006297 QualType incompatTy = Context.getObjCIdType();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006298 LHS = ImpCastExprToType(LHS.get(), incompatTy, CK_BitCast);
6299 RHS = ImpCastExprToType(RHS.get(), incompatTy, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006300 return incompatTy;
6301 }
6302 // The object pointer types are compatible.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006303 LHS = ImpCastExprToType(LHS.get(), compositeType, CK_BitCast);
6304 RHS = ImpCastExprToType(RHS.get(), compositeType, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006305 return compositeType;
6306 }
6307 // Check Objective-C object pointer types and 'void *'
6308 if (LHSTy->isVoidPointerType() && RHSTy->isObjCObjectPointerType()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00006309 if (getLangOpts().ObjCAutoRefCount) {
Eli Friedman8a78a582012-02-25 00:23:44 +00006310 // ARC forbids the implicit conversion of object pointers to 'void *',
6311 // so these types are not compatible.
6312 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6313 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6314 LHS = RHS = true;
6315 return QualType();
6316 }
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006317 QualType lhptee = LHSTy->getAs<PointerType>()->getPointeeType();
6318 QualType rhptee = RHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6319 QualType destPointee
6320 = Context.getQualifiedType(lhptee, rhptee.getQualifiers());
6321 QualType destType = Context.getPointerType(destPointee);
6322 // Add qualifiers if necessary.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006323 LHS = ImpCastExprToType(LHS.get(), destType, CK_NoOp);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006324 // Promote to void*.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006325 RHS = ImpCastExprToType(RHS.get(), destType, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006326 return destType;
6327 }
6328 if (LHSTy->isObjCObjectPointerType() && RHSTy->isVoidPointerType()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00006329 if (getLangOpts().ObjCAutoRefCount) {
Eli Friedman8a78a582012-02-25 00:23:44 +00006330 // ARC forbids the implicit conversion of object pointers to 'void *',
6331 // so these types are not compatible.
6332 Diag(QuestionLoc, diag::err_cond_voidptr_arc) << LHSTy << RHSTy
6333 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
6334 LHS = RHS = true;
6335 return QualType();
6336 }
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006337 QualType lhptee = LHSTy->getAs<ObjCObjectPointerType>()->getPointeeType();
6338 QualType rhptee = RHSTy->getAs<PointerType>()->getPointeeType();
6339 QualType destPointee
6340 = Context.getQualifiedType(rhptee, lhptee.getQualifiers());
6341 QualType destType = Context.getPointerType(destPointee);
6342 // Add qualifiers if necessary.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006343 RHS = ImpCastExprToType(RHS.get(), destType, CK_NoOp);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006344 // Promote to void*.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006345 LHS = ImpCastExprToType(LHS.get(), destType, CK_BitCast);
Fariborz Jahaniana430f712009-12-10 19:47:41 +00006346 return destType;
6347 }
6348 return QualType();
6349}
6350
Chandler Carruthb00e8c02011-06-16 01:05:14 +00006351/// SuggestParentheses - Emit a note with a fixit hint that wraps
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006352/// ParenRange in parentheses.
6353static void SuggestParentheses(Sema &Self, SourceLocation Loc,
Chandler Carruthb00e8c02011-06-16 01:05:14 +00006354 const PartialDiagnostic &Note,
6355 SourceRange ParenRange) {
6356 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(ParenRange.getEnd());
6357 if (ParenRange.getBegin().isFileID() && ParenRange.getEnd().isFileID() &&
6358 EndLoc.isValid()) {
6359 Self.Diag(Loc, Note)
6360 << FixItHint::CreateInsertion(ParenRange.getBegin(), "(")
6361 << FixItHint::CreateInsertion(EndLoc, ")");
6362 } else {
6363 // We can't display the parentheses, so just show the bare note.
6364 Self.Diag(Loc, Note) << ParenRange;
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006365 }
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006366}
6367
6368static bool IsArithmeticOp(BinaryOperatorKind Opc) {
6369 return Opc >= BO_Mul && Opc <= BO_Shr;
6370}
6371
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006372/// IsArithmeticBinaryExpr - Returns true if E is an arithmetic binary
6373/// expression, either using a built-in or overloaded operator,
Richard Trieud33e46e2011-09-06 20:06:39 +00006374/// and sets *OpCode to the opcode and *RHSExprs to the right-hand side
6375/// expression.
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006376static bool IsArithmeticBinaryExpr(Expr *E, BinaryOperatorKind *Opcode,
Richard Trieud33e46e2011-09-06 20:06:39 +00006377 Expr **RHSExprs) {
Hans Wennborgbe207b32011-09-12 12:07:30 +00006378 // Don't strip parenthesis: we should not warn if E is in parenthesis.
6379 E = E->IgnoreImpCasts();
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006380 E = E->IgnoreConversionOperator();
Hans Wennborgbe207b32011-09-12 12:07:30 +00006381 E = E->IgnoreImpCasts();
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006382
6383 // Built-in binary operator.
6384 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E)) {
6385 if (IsArithmeticOp(OP->getOpcode())) {
6386 *Opcode = OP->getOpcode();
Richard Trieud33e46e2011-09-06 20:06:39 +00006387 *RHSExprs = OP->getRHS();
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006388 return true;
6389 }
6390 }
6391
6392 // Overloaded operator.
6393 if (CXXOperatorCallExpr *Call = dyn_cast<CXXOperatorCallExpr>(E)) {
6394 if (Call->getNumArgs() != 2)
6395 return false;
6396
6397 // Make sure this is really a binary operator that is safe to pass into
6398 // BinaryOperator::getOverloadedOpcode(), e.g. it's not a subscript op.
6399 OverloadedOperatorKind OO = Call->getOperator();
Benjamin Kramer0345f9f2013-03-30 11:56:00 +00006400 if (OO < OO_Plus || OO > OO_Arrow ||
6401 OO == OO_PlusPlus || OO == OO_MinusMinus)
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006402 return false;
6403
6404 BinaryOperatorKind OpKind = BinaryOperator::getOverloadedOpcode(OO);
6405 if (IsArithmeticOp(OpKind)) {
6406 *Opcode = OpKind;
Richard Trieud33e46e2011-09-06 20:06:39 +00006407 *RHSExprs = Call->getArg(1);
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006408 return true;
6409 }
6410 }
6411
6412 return false;
6413}
6414
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006415static bool IsLogicOp(BinaryOperatorKind Opc) {
6416 return (Opc >= BO_LT && Opc <= BO_NE) || (Opc >= BO_LAnd && Opc <= BO_LOr);
6417}
6418
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006419/// ExprLooksBoolean - Returns true if E looks boolean, i.e. it has boolean type
6420/// or is a logical expression such as (x==y) which has int type, but is
6421/// commonly interpreted as boolean.
6422static bool ExprLooksBoolean(Expr *E) {
6423 E = E->IgnoreParenImpCasts();
6424
6425 if (E->getType()->isBooleanType())
6426 return true;
6427 if (BinaryOperator *OP = dyn_cast<BinaryOperator>(E))
6428 return IsLogicOp(OP->getOpcode());
6429 if (UnaryOperator *OP = dyn_cast<UnaryOperator>(E))
6430 return OP->getOpcode() == UO_LNot;
Hans Wennborgb60dfbe2015-01-22 22:11:56 +00006431 if (E->getType()->isPointerType())
6432 return true;
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006433
6434 return false;
6435}
6436
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006437/// DiagnoseConditionalPrecedence - Emit a warning when a conditional operator
6438/// and binary operator are mixed in a way that suggests the programmer assumed
6439/// the conditional operator has higher precedence, for example:
6440/// "int x = a + someBinaryCondition ? 1 : 2".
6441static void DiagnoseConditionalPrecedence(Sema &Self,
6442 SourceLocation OpLoc,
Chandler Carruth08dc2ba2011-06-16 01:05:08 +00006443 Expr *Condition,
Richard Trieud33e46e2011-09-06 20:06:39 +00006444 Expr *LHSExpr,
6445 Expr *RHSExpr) {
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006446 BinaryOperatorKind CondOpcode;
6447 Expr *CondRHS;
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006448
Chandler Carruth08dc2ba2011-06-16 01:05:08 +00006449 if (!IsArithmeticBinaryExpr(Condition, &CondOpcode, &CondRHS))
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006450 return;
6451 if (!ExprLooksBoolean(CondRHS))
6452 return;
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006453
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006454 // The condition is an arithmetic binary expression, with a right-
6455 // hand side that looks boolean, so warn.
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006456
Chandler Carruthb00e8c02011-06-16 01:05:14 +00006457 Self.Diag(OpLoc, diag::warn_precedence_conditional)
Chandler Carruth08dc2ba2011-06-16 01:05:08 +00006458 << Condition->getSourceRange()
Hans Wennborgde2e67e2011-06-09 17:06:51 +00006459 << BinaryOperator::getOpcodeStr(CondOpcode);
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006460
Chandler Carruthb00e8c02011-06-16 01:05:14 +00006461 SuggestParentheses(Self, OpLoc,
David Blaikiedac86fd2012-10-08 01:19:49 +00006462 Self.PDiag(diag::note_precedence_silence)
Chandler Carruthb00e8c02011-06-16 01:05:14 +00006463 << BinaryOperator::getOpcodeStr(CondOpcode),
6464 SourceRange(Condition->getLocStart(), Condition->getLocEnd()));
Chandler Carruthf51c5a52011-06-21 23:04:18 +00006465
6466 SuggestParentheses(Self, OpLoc,
6467 Self.PDiag(diag::note_precedence_conditional_first),
Richard Trieud33e46e2011-09-06 20:06:39 +00006468 SourceRange(CondRHS->getLocStart(), RHSExpr->getLocEnd()));
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006469}
6470
Steve Naroff83895f72007-09-16 03:34:24 +00006471/// ActOnConditionalOp - Parse a ?: operation. Note that 'LHS' may be null
Chris Lattnere168f762006-11-10 05:29:30 +00006472/// in the case of a the GNU conditional expr extension.
John McCalldadc5752010-08-24 06:29:42 +00006473ExprResult Sema::ActOnConditionalOp(SourceLocation QuestionLoc,
John McCallc07a0c72011-02-17 10:25:35 +00006474 SourceLocation ColonLoc,
6475 Expr *CondExpr, Expr *LHSExpr,
6476 Expr *RHSExpr) {
Kaelyn Takata05f40502015-01-27 18:26:18 +00006477 if (!getLangOpts().CPlusPlus) {
6478 // C cannot handle TypoExpr nodes in the condition because it
6479 // doesn't handle dependent types properly, so make sure any TypoExprs have
6480 // been dealt with before checking the operands.
6481 ExprResult CondResult = CorrectDelayedTyposInExpr(CondExpr);
6482 if (!CondResult.isUsable()) return ExprError();
6483 CondExpr = CondResult.get();
6484 }
6485
Chris Lattner2ab40a62007-11-26 01:40:58 +00006486 // If this is the gnu "x ?: y" extension, analyze the types as though the LHS
6487 // was the condition.
Craig Topperc3ec1492014-05-26 06:22:03 +00006488 OpaqueValueExpr *opaqueValue = nullptr;
6489 Expr *commonExpr = nullptr;
6490 if (!LHSExpr) {
John McCallc07a0c72011-02-17 10:25:35 +00006491 commonExpr = CondExpr;
Fariborz Jahanian3caab6c2013-05-17 16:29:36 +00006492 // Lower out placeholder types first. This is important so that we don't
6493 // try to capture a placeholder. This happens in few cases in C++; such
6494 // as Objective-C++'s dictionary subscripting syntax.
6495 if (commonExpr->hasPlaceholderType()) {
6496 ExprResult result = CheckPlaceholderExpr(commonExpr);
6497 if (!result.isUsable()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006498 commonExpr = result.get();
Fariborz Jahanian3caab6c2013-05-17 16:29:36 +00006499 }
John McCallc07a0c72011-02-17 10:25:35 +00006500 // We usually want to apply unary conversions *before* saving, except
6501 // in the special case of a C++ l-value conditional.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006502 if (!(getLangOpts().CPlusPlus
John McCallc07a0c72011-02-17 10:25:35 +00006503 && !commonExpr->isTypeDependent()
6504 && commonExpr->getValueKind() == RHSExpr->getValueKind()
6505 && commonExpr->isGLValue()
6506 && commonExpr->isOrdinaryOrBitFieldObject()
6507 && RHSExpr->isOrdinaryOrBitFieldObject()
6508 && Context.hasSameType(commonExpr->getType(), RHSExpr->getType()))) {
John Wiegley01296292011-04-08 18:41:53 +00006509 ExprResult commonRes = UsualUnaryConversions(commonExpr);
6510 if (commonRes.isInvalid())
6511 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006512 commonExpr = commonRes.get();
John McCallc07a0c72011-02-17 10:25:35 +00006513 }
6514
6515 opaqueValue = new (Context) OpaqueValueExpr(commonExpr->getExprLoc(),
6516 commonExpr->getType(),
6517 commonExpr->getValueKind(),
Douglas Gregor2d5aea02012-02-23 22:17:26 +00006518 commonExpr->getObjectKind(),
6519 commonExpr);
John McCallc07a0c72011-02-17 10:25:35 +00006520 LHSExpr = CondExpr = opaqueValue;
Fariborz Jahanianc6bf0bd2010-08-31 18:02:20 +00006521 }
Sebastian Redlb5d49352009-01-19 22:31:54 +00006522
John McCall7decc9e2010-11-18 06:31:45 +00006523 ExprValueKind VK = VK_RValue;
John McCall4bc41ae2010-11-18 19:01:18 +00006524 ExprObjectKind OK = OK_Ordinary;
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006525 ExprResult Cond = CondExpr, LHS = LHSExpr, RHS = RHSExpr;
John Wiegley01296292011-04-08 18:41:53 +00006526 QualType result = CheckConditionalOperands(Cond, LHS, RHS,
John McCallc07a0c72011-02-17 10:25:35 +00006527 VK, OK, QuestionLoc);
John Wiegley01296292011-04-08 18:41:53 +00006528 if (result.isNull() || Cond.isInvalid() || LHS.isInvalid() ||
6529 RHS.isInvalid())
Sebastian Redlb5d49352009-01-19 22:31:54 +00006530 return ExprError();
6531
Hans Wennborgcf9bac42011-06-03 18:00:36 +00006532 DiagnoseConditionalPrecedence(*this, QuestionLoc, Cond.get(), LHS.get(),
6533 RHS.get());
6534
Richard Trieucbab79a2015-05-20 23:29:18 +00006535 CheckBoolLikeConversion(Cond.get(), QuestionLoc);
6536
John McCallc07a0c72011-02-17 10:25:35 +00006537 if (!commonExpr)
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006538 return new (Context)
6539 ConditionalOperator(Cond.get(), QuestionLoc, LHS.get(), ColonLoc,
6540 RHS.get(), result, VK, OK);
John McCallc07a0c72011-02-17 10:25:35 +00006541
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00006542 return new (Context) BinaryConditionalOperator(
6543 commonExpr, opaqueValue, Cond.get(), LHS.get(), RHS.get(), QuestionLoc,
6544 ColonLoc, result, VK, OK);
Chris Lattnere168f762006-11-10 05:29:30 +00006545}
6546
John McCallaba90822011-01-31 23:13:11 +00006547// checkPointerTypesForAssignment - This is a very tricky routine (despite
Mike Stump4e1f26a2009-02-19 03:04:26 +00006548// being closely modeled after the C99 spec:-). The odd characteristic of this
Steve Naroff3f597292007-05-11 22:18:03 +00006549// routine is it effectively iqnores the qualifiers on the top level pointee.
6550// This circumvents the usual type rules specified in 6.2.7p1 & 6.7.5.[1-3].
6551// FIXME: add a couple examples in this comment.
John McCallaba90822011-01-31 23:13:11 +00006552static Sema::AssignConvertType
Richard Trieua871b972011-09-06 20:21:22 +00006553checkPointerTypesForAssignment(Sema &S, QualType LHSType, QualType RHSType) {
6554 assert(LHSType.isCanonical() && "LHS not canonicalized!");
6555 assert(RHSType.isCanonical() && "RHS not canonicalized!");
Mike Stump4e1f26a2009-02-19 03:04:26 +00006556
Steve Naroff1f4d7272007-05-11 04:00:31 +00006557 // get the "pointed to" type (ignoring qualifiers at the top level)
John McCall4fff8f62011-02-01 00:10:29 +00006558 const Type *lhptee, *rhptee;
6559 Qualifiers lhq, rhq;
Benjamin Kramercef536e2014-03-02 13:18:22 +00006560 std::tie(lhptee, lhq) =
6561 cast<PointerType>(LHSType)->getPointeeType().split().asPair();
6562 std::tie(rhptee, rhq) =
6563 cast<PointerType>(RHSType)->getPointeeType().split().asPair();
Mike Stump4e1f26a2009-02-19 03:04:26 +00006564
John McCallaba90822011-01-31 23:13:11 +00006565 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006566
6567 // C99 6.5.16.1p1: This following citation is common to constraints
6568 // 3 & 4 (below). ...and the type *pointed to* by the left has all the
6569 // qualifiers of the type *pointed to* by the right;
John McCall4fff8f62011-02-01 00:10:29 +00006570
John McCall31168b02011-06-15 23:02:42 +00006571 // As a special case, 'non-__weak A *' -> 'non-__weak const *' is okay.
6572 if (lhq.getObjCLifetime() != rhq.getObjCLifetime() &&
6573 lhq.compatiblyIncludesObjCLifetime(rhq)) {
6574 // Ignore lifetime for further calculation.
6575 lhq.removeObjCLifetime();
6576 rhq.removeObjCLifetime();
6577 }
6578
John McCall4fff8f62011-02-01 00:10:29 +00006579 if (!lhq.compatiblyIncludes(rhq)) {
6580 // Treat address-space mismatches as fatal. TODO: address subspaces
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00006581 if (!lhq.isAddressSpaceSupersetOf(rhq))
John McCall4fff8f62011-02-01 00:10:29 +00006582 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6583
John McCall31168b02011-06-15 23:02:42 +00006584 // It's okay to add or remove GC or lifetime qualifiers when converting to
John McCall78535952011-03-26 02:56:45 +00006585 // and from void*.
John McCall18ce25e2012-02-08 00:46:36 +00006586 else if (lhq.withoutObjCGCAttr().withoutObjCLifetime()
John McCall31168b02011-06-15 23:02:42 +00006587 .compatiblyIncludes(
John McCall18ce25e2012-02-08 00:46:36 +00006588 rhq.withoutObjCGCAttr().withoutObjCLifetime())
John McCall78535952011-03-26 02:56:45 +00006589 && (lhptee->isVoidType() || rhptee->isVoidType()))
6590 ; // keep old
6591
John McCall31168b02011-06-15 23:02:42 +00006592 // Treat lifetime mismatches as fatal.
6593 else if (lhq.getObjCLifetime() != rhq.getObjCLifetime())
6594 ConvTy = Sema::IncompatiblePointerDiscardsQualifiers;
6595
John McCall4fff8f62011-02-01 00:10:29 +00006596 // For GCC compatibility, other qualifier mismatches are treated
6597 // as still compatible in C.
6598 else ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
6599 }
Steve Naroff3f597292007-05-11 22:18:03 +00006600
Mike Stump4e1f26a2009-02-19 03:04:26 +00006601 // C99 6.5.16.1p1 (constraint 4): If one operand is a pointer to an object or
6602 // incomplete type and the other is a pointer to a qualified or unqualified
Steve Naroff3f597292007-05-11 22:18:03 +00006603 // version of void...
Chris Lattner0a788432008-01-03 22:56:36 +00006604 if (lhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00006605 if (rhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00006606 return ConvTy;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006607
Chris Lattner0a788432008-01-03 22:56:36 +00006608 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00006609 assert(rhptee->isFunctionType());
John McCallaba90822011-01-31 23:13:11 +00006610 return Sema::FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00006611 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006612
Chris Lattner0a788432008-01-03 22:56:36 +00006613 if (rhptee->isVoidType()) {
Chris Lattnerb3a176d2008-04-02 06:59:01 +00006614 if (lhptee->isIncompleteOrObjectType())
Chris Lattner9bad62c2008-01-04 18:04:52 +00006615 return ConvTy;
Chris Lattner0a788432008-01-03 22:56:36 +00006616
6617 // As an extension, we allow cast to/from void* to function pointer.
Chris Lattnerb3a176d2008-04-02 06:59:01 +00006618 assert(lhptee->isFunctionType());
John McCallaba90822011-01-31 23:13:11 +00006619 return Sema::FunctionVoidPointer;
Chris Lattner0a788432008-01-03 22:56:36 +00006620 }
John McCall4fff8f62011-02-01 00:10:29 +00006621
Mike Stump4e1f26a2009-02-19 03:04:26 +00006622 // C99 6.5.16.1p1 (constraint 3): both operands are pointers to qualified or
Steve Naroff3f597292007-05-11 22:18:03 +00006623 // unqualified versions of compatible types, ...
John McCall4fff8f62011-02-01 00:10:29 +00006624 QualType ltrans = QualType(lhptee, 0), rtrans = QualType(rhptee, 0);
6625 if (!S.Context.typesAreCompatible(ltrans, rtrans)) {
Eli Friedman80160bd2009-03-22 23:59:44 +00006626 // Check if the pointee types are compatible ignoring the sign.
6627 // We explicitly check for char so that we catch "char" vs
6628 // "unsigned char" on systems where "char" is unsigned.
Chris Lattnerec3a1562009-10-17 20:33:28 +00006629 if (lhptee->isCharType())
John McCall4fff8f62011-02-01 00:10:29 +00006630 ltrans = S.Context.UnsignedCharTy;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00006631 else if (lhptee->hasSignedIntegerRepresentation())
John McCall4fff8f62011-02-01 00:10:29 +00006632 ltrans = S.Context.getCorrespondingUnsignedType(ltrans);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006633
Chris Lattnerec3a1562009-10-17 20:33:28 +00006634 if (rhptee->isCharType())
John McCall4fff8f62011-02-01 00:10:29 +00006635 rtrans = S.Context.UnsignedCharTy;
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00006636 else if (rhptee->hasSignedIntegerRepresentation())
John McCall4fff8f62011-02-01 00:10:29 +00006637 rtrans = S.Context.getCorrespondingUnsignedType(rtrans);
Chris Lattnerec3a1562009-10-17 20:33:28 +00006638
John McCall4fff8f62011-02-01 00:10:29 +00006639 if (ltrans == rtrans) {
Eli Friedman80160bd2009-03-22 23:59:44 +00006640 // Types are compatible ignoring the sign. Qualifier incompatibility
6641 // takes priority over sign incompatibility because the sign
6642 // warning can be disabled.
John McCallaba90822011-01-31 23:13:11 +00006643 if (ConvTy != Sema::Compatible)
Eli Friedman80160bd2009-03-22 23:59:44 +00006644 return ConvTy;
John McCall4fff8f62011-02-01 00:10:29 +00006645
John McCallaba90822011-01-31 23:13:11 +00006646 return Sema::IncompatiblePointerSign;
Eli Friedman80160bd2009-03-22 23:59:44 +00006647 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006648
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00006649 // If we are a multi-level pointer, it's possible that our issue is simply
6650 // one of qualification - e.g. char ** -> const char ** is not allowed. If
6651 // the eventual target type is the same and the pointers have the same
6652 // level of indirection, this must be the issue.
John McCallaba90822011-01-31 23:13:11 +00006653 if (isa<PointerType>(lhptee) && isa<PointerType>(rhptee)) {
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00006654 do {
John McCall4fff8f62011-02-01 00:10:29 +00006655 lhptee = cast<PointerType>(lhptee)->getPointeeType().getTypePtr();
6656 rhptee = cast<PointerType>(rhptee)->getPointeeType().getTypePtr();
John McCallaba90822011-01-31 23:13:11 +00006657 } while (isa<PointerType>(lhptee) && isa<PointerType>(rhptee));
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006658
John McCall4fff8f62011-02-01 00:10:29 +00006659 if (lhptee == rhptee)
John McCallaba90822011-01-31 23:13:11 +00006660 return Sema::IncompatibleNestedPointerQualifiers;
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +00006661 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006662
Eli Friedman80160bd2009-03-22 23:59:44 +00006663 // General pointer incompatibility takes priority over qualifiers.
John McCallaba90822011-01-31 23:13:11 +00006664 return Sema::IncompatiblePointer;
Eli Friedman80160bd2009-03-22 23:59:44 +00006665 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00006666 if (!S.getLangOpts().CPlusPlus &&
Fariborz Jahanian48c69102011-10-05 00:05:34 +00006667 S.IsNoReturnConversion(ltrans, rtrans, ltrans))
6668 return Sema::IncompatiblePointer;
Chris Lattner9bad62c2008-01-04 18:04:52 +00006669 return ConvTy;
Steve Naroff1f4d7272007-05-11 04:00:31 +00006670}
6671
John McCallaba90822011-01-31 23:13:11 +00006672/// checkBlockPointerTypesForAssignment - This routine determines whether two
Steve Naroff081c7422008-09-04 15:10:53 +00006673/// block pointer types are compatible or whether a block and normal pointer
6674/// are compatible. It is more restrict than comparing two function pointer
6675// types.
John McCallaba90822011-01-31 23:13:11 +00006676static Sema::AssignConvertType
Richard Trieua871b972011-09-06 20:21:22 +00006677checkBlockPointerTypesForAssignment(Sema &S, QualType LHSType,
6678 QualType RHSType) {
6679 assert(LHSType.isCanonical() && "LHS not canonicalized!");
6680 assert(RHSType.isCanonical() && "RHS not canonicalized!");
John McCallaba90822011-01-31 23:13:11 +00006681
Steve Naroff081c7422008-09-04 15:10:53 +00006682 QualType lhptee, rhptee;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006683
Steve Naroff081c7422008-09-04 15:10:53 +00006684 // get the "pointed to" type (ignoring qualifiers at the top level)
Richard Trieua871b972011-09-06 20:21:22 +00006685 lhptee = cast<BlockPointerType>(LHSType)->getPointeeType();
6686 rhptee = cast<BlockPointerType>(RHSType)->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00006687
John McCallaba90822011-01-31 23:13:11 +00006688 // In C++, the types have to match exactly.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006689 if (S.getLangOpts().CPlusPlus)
John McCallaba90822011-01-31 23:13:11 +00006690 return Sema::IncompatibleBlockPointer;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006691
John McCallaba90822011-01-31 23:13:11 +00006692 Sema::AssignConvertType ConvTy = Sema::Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006693
Steve Naroff081c7422008-09-04 15:10:53 +00006694 // For blocks we enforce that qualifiers are identical.
John McCallaba90822011-01-31 23:13:11 +00006695 if (lhptee.getLocalQualifiers() != rhptee.getLocalQualifiers())
6696 ConvTy = Sema::CompatiblePointerDiscardsQualifiers;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006697
Richard Trieua871b972011-09-06 20:21:22 +00006698 if (!S.Context.typesAreBlockPointerCompatible(LHSType, RHSType))
John McCallaba90822011-01-31 23:13:11 +00006699 return Sema::IncompatibleBlockPointer;
6700
Steve Naroff081c7422008-09-04 15:10:53 +00006701 return ConvTy;
6702}
6703
John McCallaba90822011-01-31 23:13:11 +00006704/// checkObjCPointerTypesForAssignment - Compares two objective-c pointer types
Fariborz Jahanian410f2eb2009-12-08 18:24:49 +00006705/// for assignment compatibility.
John McCallaba90822011-01-31 23:13:11 +00006706static Sema::AssignConvertType
Richard Trieua871b972011-09-06 20:21:22 +00006707checkObjCPointerTypesForAssignment(Sema &S, QualType LHSType,
6708 QualType RHSType) {
6709 assert(LHSType.isCanonical() && "LHS was not canonicalized!");
6710 assert(RHSType.isCanonical() && "RHS was not canonicalized!");
John McCallaba90822011-01-31 23:13:11 +00006711
Richard Trieua871b972011-09-06 20:21:22 +00006712 if (LHSType->isObjCBuiltinType()) {
Fariborz Jahaniand5bb8cb2010-03-19 18:06:10 +00006713 // Class is not compatible with ObjC object pointers.
Richard Trieua871b972011-09-06 20:21:22 +00006714 if (LHSType->isObjCClassType() && !RHSType->isObjCBuiltinType() &&
6715 !RHSType->isObjCQualifiedClassType())
John McCallaba90822011-01-31 23:13:11 +00006716 return Sema::IncompatiblePointer;
6717 return Sema::Compatible;
Fariborz Jahaniand5bb8cb2010-03-19 18:06:10 +00006718 }
Richard Trieua871b972011-09-06 20:21:22 +00006719 if (RHSType->isObjCBuiltinType()) {
Richard Trieua871b972011-09-06 20:21:22 +00006720 if (RHSType->isObjCClassType() && !LHSType->isObjCBuiltinType() &&
6721 !LHSType->isObjCQualifiedClassType())
Fariborz Jahaniand923eb02011-09-15 20:40:18 +00006722 return Sema::IncompatiblePointer;
John McCallaba90822011-01-31 23:13:11 +00006723 return Sema::Compatible;
Fariborz Jahaniand5bb8cb2010-03-19 18:06:10 +00006724 }
Richard Trieua871b972011-09-06 20:21:22 +00006725 QualType lhptee = LHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
6726 QualType rhptee = RHSType->getAs<ObjCObjectPointerType>()->getPointeeType();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00006727
Fariborz Jahaniane74d47e2012-01-12 22:12:08 +00006728 if (!lhptee.isAtLeastAsQualifiedAs(rhptee) &&
6729 // make an exception for id<P>
6730 !LHSType->isObjCQualifiedIdType())
John McCallaba90822011-01-31 23:13:11 +00006731 return Sema::CompatiblePointerDiscardsQualifiers;
6732
Richard Trieua871b972011-09-06 20:21:22 +00006733 if (S.Context.typesAreCompatible(LHSType, RHSType))
John McCallaba90822011-01-31 23:13:11 +00006734 return Sema::Compatible;
Richard Trieua871b972011-09-06 20:21:22 +00006735 if (LHSType->isObjCQualifiedIdType() || RHSType->isObjCQualifiedIdType())
John McCallaba90822011-01-31 23:13:11 +00006736 return Sema::IncompatibleObjCQualifiedId;
6737 return Sema::IncompatiblePointer;
Fariborz Jahanian410f2eb2009-12-08 18:24:49 +00006738}
6739
John McCall29600e12010-11-16 02:32:08 +00006740Sema::AssignConvertType
Douglas Gregorc03a1082011-01-28 02:26:04 +00006741Sema::CheckAssignmentConstraints(SourceLocation Loc,
Richard Trieua871b972011-09-06 20:21:22 +00006742 QualType LHSType, QualType RHSType) {
John McCall29600e12010-11-16 02:32:08 +00006743 // Fake up an opaque expression. We don't actually care about what
6744 // cast operations are required, so if CheckAssignmentConstraints
6745 // adds casts to this they'll be wasted, but fortunately that doesn't
6746 // usually happen on valid code.
Richard Trieua871b972011-09-06 20:21:22 +00006747 OpaqueValueExpr RHSExpr(Loc, RHSType, VK_RValue);
6748 ExprResult RHSPtr = &RHSExpr;
John McCall29600e12010-11-16 02:32:08 +00006749 CastKind K = CK_Invalid;
6750
Richard Trieua871b972011-09-06 20:21:22 +00006751 return CheckAssignmentConstraints(LHSType, RHSPtr, K);
John McCall29600e12010-11-16 02:32:08 +00006752}
6753
Mike Stump4e1f26a2009-02-19 03:04:26 +00006754/// CheckAssignmentConstraints (C99 6.5.16) - This routine currently
6755/// has code to accommodate several GCC extensions when type checking
Steve Naroff17f76e02007-05-03 21:03:48 +00006756/// pointers. Here are some objectionable examples that GCC considers warnings:
6757///
6758/// int a, *pint;
6759/// short *pshort;
6760/// struct foo *pfoo;
6761///
6762/// pint = pshort; // warning: assignment from incompatible pointer type
6763/// a = pint; // warning: assignment makes integer from pointer without a cast
6764/// pint = a; // warning: assignment makes pointer from integer without a cast
6765/// pint = pfoo; // warning: assignment from incompatible pointer type
6766///
6767/// As a result, the code for dealing with pointers is more complex than the
Mike Stump4e1f26a2009-02-19 03:04:26 +00006768/// C99 spec dictates.
Steve Naroff17f76e02007-05-03 21:03:48 +00006769///
John McCall8cb679e2010-11-15 09:13:47 +00006770/// Sets 'Kind' for any result kind except Incompatible.
Chris Lattner9bad62c2008-01-04 18:04:52 +00006771Sema::AssignConvertType
Richard Trieude4958f2011-09-06 20:30:53 +00006772Sema::CheckAssignmentConstraints(QualType LHSType, ExprResult &RHS,
John McCall8cb679e2010-11-15 09:13:47 +00006773 CastKind &Kind) {
Richard Trieude4958f2011-09-06 20:30:53 +00006774 QualType RHSType = RHS.get()->getType();
6775 QualType OrigLHSType = LHSType;
John McCall29600e12010-11-16 02:32:08 +00006776
Chris Lattnera52c2f22008-01-04 23:18:45 +00006777 // Get canonical types. We're not formatting these types, just comparing
6778 // them.
Richard Trieude4958f2011-09-06 20:30:53 +00006779 LHSType = Context.getCanonicalType(LHSType).getUnqualifiedType();
6780 RHSType = Context.getCanonicalType(RHSType).getUnqualifiedType();
Eli Friedman3360d892008-05-30 18:07:22 +00006781
John McCalle5255932011-01-31 22:28:28 +00006782 // Common case: no conversion required.
Richard Trieude4958f2011-09-06 20:30:53 +00006783 if (LHSType == RHSType) {
John McCall8cb679e2010-11-15 09:13:47 +00006784 Kind = CK_NoOp;
John McCall8cb679e2010-11-15 09:13:47 +00006785 return Compatible;
David Chisnall9f57c292009-08-17 16:35:33 +00006786 }
6787
Eli Friedman93ee5ca2012-06-16 02:19:17 +00006788 // If we have an atomic type, try a non-atomic assignment, then just add an
6789 // atomic qualification step.
David Chisnallfa35df62012-01-16 17:27:18 +00006790 if (const AtomicType *AtomicTy = dyn_cast<AtomicType>(LHSType)) {
Eli Friedman93ee5ca2012-06-16 02:19:17 +00006791 Sema::AssignConvertType result =
6792 CheckAssignmentConstraints(AtomicTy->getValueType(), RHS, Kind);
6793 if (result != Compatible)
6794 return result;
6795 if (Kind != CK_NoOp)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006796 RHS = ImpCastExprToType(RHS.get(), AtomicTy->getValueType(), Kind);
Eli Friedman93ee5ca2012-06-16 02:19:17 +00006797 Kind = CK_NonAtomicToAtomic;
6798 return Compatible;
David Chisnallfa35df62012-01-16 17:27:18 +00006799 }
6800
Douglas Gregor6b754842008-10-28 00:22:11 +00006801 // If the left-hand side is a reference type, then we are in a
6802 // (rare!) case where we've allowed the use of references in C,
6803 // e.g., as a parameter type in a built-in function. In this case,
6804 // just make sure that the type referenced is compatible with the
6805 // right-hand side type. The caller is responsible for adjusting
Richard Trieude4958f2011-09-06 20:30:53 +00006806 // LHSType so that the resulting expression does not have reference
Douglas Gregor6b754842008-10-28 00:22:11 +00006807 // type.
Richard Trieude4958f2011-09-06 20:30:53 +00006808 if (const ReferenceType *LHSTypeRef = LHSType->getAs<ReferenceType>()) {
6809 if (Context.typesAreCompatible(LHSTypeRef->getPointeeType(), RHSType)) {
John McCall8cb679e2010-11-15 09:13:47 +00006810 Kind = CK_LValueBitCast;
Anders Carlsson24ebce62007-10-12 23:56:29 +00006811 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006812 }
Chris Lattnera52c2f22008-01-04 23:18:45 +00006813 return Incompatible;
Fariborz Jahaniana1e34202007-12-19 17:45:58 +00006814 }
John McCalle5255932011-01-31 22:28:28 +00006815
Nate Begemanbd956c42009-06-28 02:36:38 +00006816 // Allow scalar to ExtVector assignments, and assignments of an ExtVector type
6817 // to the same ExtVector type.
Richard Trieude4958f2011-09-06 20:30:53 +00006818 if (LHSType->isExtVectorType()) {
6819 if (RHSType->isExtVectorType())
John McCall8cb679e2010-11-15 09:13:47 +00006820 return Incompatible;
Richard Trieude4958f2011-09-06 20:30:53 +00006821 if (RHSType->isArithmeticType()) {
John McCall29600e12010-11-16 02:32:08 +00006822 // CK_VectorSplat does T -> vector T, so first cast to the
6823 // element type.
Richard Trieude4958f2011-09-06 20:30:53 +00006824 QualType elType = cast<ExtVectorType>(LHSType)->getElementType();
6825 if (elType != RHSType) {
John McCall9776e432011-10-06 23:25:11 +00006826 Kind = PrepareScalarCast(RHS, elType);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00006827 RHS = ImpCastExprToType(RHS.get(), elType, Kind);
John McCall29600e12010-11-16 02:32:08 +00006828 }
6829 Kind = CK_VectorSplat;
Nate Begemanbd956c42009-06-28 02:36:38 +00006830 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006831 }
Nate Begemanbd956c42009-06-28 02:36:38 +00006832 }
Mike Stump11289f42009-09-09 15:08:12 +00006833
John McCalle5255932011-01-31 22:28:28 +00006834 // Conversions to or from vector type.
Richard Trieude4958f2011-09-06 20:30:53 +00006835 if (LHSType->isVectorType() || RHSType->isVectorType()) {
6836 if (LHSType->isVectorType() && RHSType->isVectorType()) {
Bob Wilson01856f32010-12-02 00:25:15 +00006837 // Allow assignments of an AltiVec vector type to an equivalent GCC
6838 // vector type and vice versa
Richard Trieude4958f2011-09-06 20:30:53 +00006839 if (Context.areCompatibleVectorTypes(LHSType, RHSType)) {
Bob Wilson01856f32010-12-02 00:25:15 +00006840 Kind = CK_BitCast;
6841 return Compatible;
6842 }
6843
Douglas Gregor59e8b3b2010-08-06 10:14:59 +00006844 // If we are allowing lax vector conversions, and LHS and RHS are both
6845 // vectors, the total size only needs to be the same. This is a bitcast;
6846 // no bits are changed but the result type is different.
John McCall9b595db2014-02-04 23:58:19 +00006847 if (isLaxVectorConversion(RHSType, LHSType)) {
John McCall3065d042010-11-15 10:08:00 +00006848 Kind = CK_BitCast;
Anders Carlssondb5a9b62009-01-30 23:17:46 +00006849 return IncompatibleVectors;
John McCall8cb679e2010-11-15 09:13:47 +00006850 }
Chris Lattner881a2122008-01-04 23:32:24 +00006851 }
6852 return Incompatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00006853 }
Eli Friedman3360d892008-05-30 18:07:22 +00006854
John McCalle5255932011-01-31 22:28:28 +00006855 // Arithmetic conversions.
Richard Trieude4958f2011-09-06 20:30:53 +00006856 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() &&
David Blaikiebbafb8a2012-03-11 07:00:24 +00006857 !(getLangOpts().CPlusPlus && LHSType->isEnumeralType())) {
John McCall9776e432011-10-06 23:25:11 +00006858 Kind = PrepareScalarCast(RHS, LHSType);
Steve Naroff98cf3e92007-06-06 18:38:38 +00006859 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006860 }
Eli Friedman3360d892008-05-30 18:07:22 +00006861
John McCalle5255932011-01-31 22:28:28 +00006862 // Conversions to normal pointers.
Richard Trieude4958f2011-09-06 20:30:53 +00006863 if (const PointerType *LHSPointer = dyn_cast<PointerType>(LHSType)) {
John McCalle5255932011-01-31 22:28:28 +00006864 // U* -> T*
Richard Trieude4958f2011-09-06 20:30:53 +00006865 if (isa<PointerType>(RHSType)) {
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00006866 unsigned AddrSpaceL = LHSPointer->getPointeeType().getAddressSpace();
6867 unsigned AddrSpaceR = RHSType->getPointeeType().getAddressSpace();
6868 Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion : CK_BitCast;
Richard Trieude4958f2011-09-06 20:30:53 +00006869 return checkPointerTypesForAssignment(*this, LHSType, RHSType);
John McCall8cb679e2010-11-15 09:13:47 +00006870 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00006871
John McCalle5255932011-01-31 22:28:28 +00006872 // int -> T*
Richard Trieude4958f2011-09-06 20:30:53 +00006873 if (RHSType->isIntegerType()) {
John McCalle5255932011-01-31 22:28:28 +00006874 Kind = CK_IntegralToPointer; // FIXME: null?
6875 return IntToPointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00006876 }
John McCalle5255932011-01-31 22:28:28 +00006877
6878 // C pointers are not compatible with ObjC object pointers,
6879 // with two exceptions:
Richard Trieude4958f2011-09-06 20:30:53 +00006880 if (isa<ObjCObjectPointerType>(RHSType)) {
John McCalle5255932011-01-31 22:28:28 +00006881 // - conversions to void*
Richard Trieude4958f2011-09-06 20:30:53 +00006882 if (LHSPointer->getPointeeType()->isVoidType()) {
John McCall9320b872011-09-09 05:25:32 +00006883 Kind = CK_BitCast;
John McCalle5255932011-01-31 22:28:28 +00006884 return Compatible;
6885 }
6886
6887 // - conversions from 'Class' to the redefinition type
Richard Trieude4958f2011-09-06 20:30:53 +00006888 if (RHSType->isObjCClassType() &&
6889 Context.hasSameType(LHSType,
Douglas Gregor97673472011-08-11 20:58:55 +00006890 Context.getObjCClassRedefinitionType())) {
John McCall8cb679e2010-11-15 09:13:47 +00006891 Kind = CK_BitCast;
Douglas Gregore7dd1452008-11-27 00:44:28 +00006892 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006893 }
Douglas Gregor486b74e2011-09-27 16:10:05 +00006894
John McCalle5255932011-01-31 22:28:28 +00006895 Kind = CK_BitCast;
6896 return IncompatiblePointer;
6897 }
6898
6899 // U^ -> void*
Richard Trieude4958f2011-09-06 20:30:53 +00006900 if (RHSType->getAs<BlockPointerType>()) {
6901 if (LHSPointer->getPointeeType()->isVoidType()) {
John McCalle5255932011-01-31 22:28:28 +00006902 Kind = CK_BitCast;
Steve Naroff32d072c2008-09-29 18:10:17 +00006903 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006904 }
Steve Naroff32d072c2008-09-29 18:10:17 +00006905 }
John McCalle5255932011-01-31 22:28:28 +00006906
Steve Naroff081c7422008-09-04 15:10:53 +00006907 return Incompatible;
6908 }
6909
John McCalle5255932011-01-31 22:28:28 +00006910 // Conversions to block pointers.
Richard Trieude4958f2011-09-06 20:30:53 +00006911 if (isa<BlockPointerType>(LHSType)) {
John McCalle5255932011-01-31 22:28:28 +00006912 // U^ -> T^
Richard Trieude4958f2011-09-06 20:30:53 +00006913 if (RHSType->isBlockPointerType()) {
John McCall9320b872011-09-09 05:25:32 +00006914 Kind = CK_BitCast;
Richard Trieude4958f2011-09-06 20:30:53 +00006915 return checkBlockPointerTypesForAssignment(*this, LHSType, RHSType);
John McCalle5255932011-01-31 22:28:28 +00006916 }
6917
6918 // int or null -> T^
Richard Trieude4958f2011-09-06 20:30:53 +00006919 if (RHSType->isIntegerType()) {
John McCall8cb679e2010-11-15 09:13:47 +00006920 Kind = CK_IntegralToPointer; // FIXME: null
Eli Friedman8163b7a2009-02-25 04:20:42 +00006921 return IntToBlockPointer;
John McCall8cb679e2010-11-15 09:13:47 +00006922 }
6923
John McCalle5255932011-01-31 22:28:28 +00006924 // id -> T^
David Blaikiebbafb8a2012-03-11 07:00:24 +00006925 if (getLangOpts().ObjC1 && RHSType->isObjCIdType()) {
John McCalle5255932011-01-31 22:28:28 +00006926 Kind = CK_AnyPointerToBlockPointerCast;
Steve Naroff32d072c2008-09-29 18:10:17 +00006927 return Compatible;
John McCalle5255932011-01-31 22:28:28 +00006928 }
Steve Naroff32d072c2008-09-29 18:10:17 +00006929
John McCalle5255932011-01-31 22:28:28 +00006930 // void* -> T^
Richard Trieude4958f2011-09-06 20:30:53 +00006931 if (const PointerType *RHSPT = RHSType->getAs<PointerType>())
John McCalle5255932011-01-31 22:28:28 +00006932 if (RHSPT->getPointeeType()->isVoidType()) {
6933 Kind = CK_AnyPointerToBlockPointerCast;
Douglas Gregore7dd1452008-11-27 00:44:28 +00006934 return Compatible;
John McCalle5255932011-01-31 22:28:28 +00006935 }
John McCall8cb679e2010-11-15 09:13:47 +00006936
Chris Lattnera52c2f22008-01-04 23:18:45 +00006937 return Incompatible;
6938 }
6939
John McCalle5255932011-01-31 22:28:28 +00006940 // Conversions to Objective-C pointers.
Richard Trieude4958f2011-09-06 20:30:53 +00006941 if (isa<ObjCObjectPointerType>(LHSType)) {
John McCalle5255932011-01-31 22:28:28 +00006942 // A* -> B*
Richard Trieude4958f2011-09-06 20:30:53 +00006943 if (RHSType->isObjCObjectPointerType()) {
John McCalle5255932011-01-31 22:28:28 +00006944 Kind = CK_BitCast;
Fariborz Jahanian6f472e82011-07-07 18:55:47 +00006945 Sema::AssignConvertType result =
Richard Trieude4958f2011-09-06 20:30:53 +00006946 checkObjCPointerTypesForAssignment(*this, LHSType, RHSType);
David Blaikiebbafb8a2012-03-11 07:00:24 +00006947 if (getLangOpts().ObjCAutoRefCount &&
Fariborz Jahanian6f472e82011-07-07 18:55:47 +00006948 result == Compatible &&
Richard Trieude4958f2011-09-06 20:30:53 +00006949 !CheckObjCARCUnavailableWeakConversion(OrigLHSType, RHSType))
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00006950 result = IncompatibleObjCWeakRef;
Fariborz Jahanian6f472e82011-07-07 18:55:47 +00006951 return result;
John McCalle5255932011-01-31 22:28:28 +00006952 }
6953
6954 // int or null -> A*
Richard Trieude4958f2011-09-06 20:30:53 +00006955 if (RHSType->isIntegerType()) {
John McCall8cb679e2010-11-15 09:13:47 +00006956 Kind = CK_IntegralToPointer; // FIXME: null
Steve Naroff7cae42b2009-07-10 23:34:53 +00006957 return IntToPointer;
John McCall8cb679e2010-11-15 09:13:47 +00006958 }
6959
John McCalle5255932011-01-31 22:28:28 +00006960 // In general, C pointers are not compatible with ObjC object pointers,
6961 // with two exceptions:
Richard Trieude4958f2011-09-06 20:30:53 +00006962 if (isa<PointerType>(RHSType)) {
John McCall9320b872011-09-09 05:25:32 +00006963 Kind = CK_CPointerToObjCPointerCast;
6964
John McCalle5255932011-01-31 22:28:28 +00006965 // - conversions from 'void*'
Richard Trieude4958f2011-09-06 20:30:53 +00006966 if (RHSType->isVoidPointerType()) {
Steve Naroffaccc4882009-07-20 17:56:53 +00006967 return Compatible;
John McCalle5255932011-01-31 22:28:28 +00006968 }
6969
6970 // - conversions to 'Class' from its redefinition type
Richard Trieude4958f2011-09-06 20:30:53 +00006971 if (LHSType->isObjCClassType() &&
6972 Context.hasSameType(RHSType,
Douglas Gregor97673472011-08-11 20:58:55 +00006973 Context.getObjCClassRedefinitionType())) {
John McCalle5255932011-01-31 22:28:28 +00006974 return Compatible;
6975 }
6976
Steve Naroffaccc4882009-07-20 17:56:53 +00006977 return IncompatiblePointer;
Steve Naroff7cae42b2009-07-10 23:34:53 +00006978 }
John McCalle5255932011-01-31 22:28:28 +00006979
Fariborz Jahanian7ea91b22014-06-09 21:42:01 +00006980 // Only under strict condition T^ is compatible with an Objective-C pointer.
Douglas Gregore9d95f12015-07-07 03:57:35 +00006981 if (RHSType->isBlockPointerType() &&
6982 LHSType->isBlockCompatibleObjCPointerType(Context)) {
Douglas Gregore83b9562015-07-07 03:57:53 +00006983 maybeExtendBlockObject(RHS);
John McCall9320b872011-09-09 05:25:32 +00006984 Kind = CK_BlockPointerToObjCPointerCast;
Steve Naroff7cae42b2009-07-10 23:34:53 +00006985 return Compatible;
John McCalle5255932011-01-31 22:28:28 +00006986 }
6987
Steve Naroff7cae42b2009-07-10 23:34:53 +00006988 return Incompatible;
6989 }
John McCalle5255932011-01-31 22:28:28 +00006990
6991 // Conversions from pointers that are not covered by the above.
Richard Trieude4958f2011-09-06 20:30:53 +00006992 if (isa<PointerType>(RHSType)) {
John McCalle5255932011-01-31 22:28:28 +00006993 // T* -> _Bool
Richard Trieude4958f2011-09-06 20:30:53 +00006994 if (LHSType == Context.BoolTy) {
John McCall8cb679e2010-11-15 09:13:47 +00006995 Kind = CK_PointerToBoolean;
Eli Friedman3360d892008-05-30 18:07:22 +00006996 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00006997 }
Eli Friedman3360d892008-05-30 18:07:22 +00006998
John McCalle5255932011-01-31 22:28:28 +00006999 // T* -> int
Richard Trieude4958f2011-09-06 20:30:53 +00007000 if (LHSType->isIntegerType()) {
John McCall8cb679e2010-11-15 09:13:47 +00007001 Kind = CK_PointerToIntegral;
Chris Lattner940cfeb2008-01-04 18:22:42 +00007002 return PointerToInt;
John McCall8cb679e2010-11-15 09:13:47 +00007003 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007004
Chris Lattnera52c2f22008-01-04 23:18:45 +00007005 return Incompatible;
Chris Lattnera52c2f22008-01-04 23:18:45 +00007006 }
John McCalle5255932011-01-31 22:28:28 +00007007
7008 // Conversions from Objective-C pointers that are not covered by the above.
Richard Trieude4958f2011-09-06 20:30:53 +00007009 if (isa<ObjCObjectPointerType>(RHSType)) {
John McCalle5255932011-01-31 22:28:28 +00007010 // T* -> _Bool
Richard Trieude4958f2011-09-06 20:30:53 +00007011 if (LHSType == Context.BoolTy) {
John McCall8cb679e2010-11-15 09:13:47 +00007012 Kind = CK_PointerToBoolean;
Steve Naroff7cae42b2009-07-10 23:34:53 +00007013 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00007014 }
Steve Naroff7cae42b2009-07-10 23:34:53 +00007015
John McCalle5255932011-01-31 22:28:28 +00007016 // T* -> int
Richard Trieude4958f2011-09-06 20:30:53 +00007017 if (LHSType->isIntegerType()) {
John McCall8cb679e2010-11-15 09:13:47 +00007018 Kind = CK_PointerToIntegral;
Steve Naroff7cae42b2009-07-10 23:34:53 +00007019 return PointerToInt;
John McCall8cb679e2010-11-15 09:13:47 +00007020 }
7021
Steve Naroff7cae42b2009-07-10 23:34:53 +00007022 return Incompatible;
7023 }
Eli Friedman3360d892008-05-30 18:07:22 +00007024
John McCalle5255932011-01-31 22:28:28 +00007025 // struct A -> struct B
Richard Trieude4958f2011-09-06 20:30:53 +00007026 if (isa<TagType>(LHSType) && isa<TagType>(RHSType)) {
7027 if (Context.typesAreCompatible(LHSType, RHSType)) {
John McCall8cb679e2010-11-15 09:13:47 +00007028 Kind = CK_NoOp;
Steve Naroff98cf3e92007-06-06 18:38:38 +00007029 return Compatible;
John McCall8cb679e2010-11-15 09:13:47 +00007030 }
Bill Wendling216423b2007-05-30 06:30:29 +00007031 }
John McCalle5255932011-01-31 22:28:28 +00007032
Steve Naroff98cf3e92007-06-06 18:38:38 +00007033 return Incompatible;
Steve Naroff9eb24652007-05-02 21:58:15 +00007034}
7035
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007036/// \brief Constructs a transparent union from an expression that is
7037/// used to initialize the transparent union.
Richard Trieucfc491d2011-08-02 04:35:43 +00007038static void ConstructTransparentUnion(Sema &S, ASTContext &C,
7039 ExprResult &EResult, QualType UnionType,
7040 FieldDecl *Field) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007041 // Build an initializer list that designates the appropriate member
7042 // of the transparent union.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007043 Expr *E = EResult.get();
Ted Kremenekac034612010-04-13 23:39:13 +00007044 InitListExpr *Initializer = new (C) InitListExpr(C, SourceLocation(),
Benjamin Kramerc215e762012-08-24 11:54:20 +00007045 E, SourceLocation());
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007046 Initializer->setType(UnionType);
7047 Initializer->setInitializedFieldInUnion(Field);
7048
7049 // Build a compound literal constructing a value of the transparent
7050 // union type from this initializer list.
John McCalle15bbff2010-01-18 19:35:47 +00007051 TypeSourceInfo *unionTInfo = C.getTrivialTypeSourceInfo(UnionType);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007052 EResult = new (C) CompoundLiteralExpr(SourceLocation(), unionTInfo, UnionType,
7053 VK_RValue, Initializer, false);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007054}
7055
7056Sema::AssignConvertType
Richard Trieucfc491d2011-08-02 04:35:43 +00007057Sema::CheckTransparentUnionArgumentConstraints(QualType ArgType,
Richard Trieueb299142011-09-06 20:40:12 +00007058 ExprResult &RHS) {
7059 QualType RHSType = RHS.get()->getType();
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007060
Mike Stump11289f42009-09-09 15:08:12 +00007061 // If the ArgType is a Union type, we want to handle a potential
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007062 // transparent_union GCC extension.
7063 const RecordType *UT = ArgType->getAsUnionType();
Argyrios Kyrtzidisb4b64ca2009-06-30 02:34:44 +00007064 if (!UT || !UT->getDecl()->hasAttr<TransparentUnionAttr>())
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007065 return Incompatible;
7066
7067 // The field to initialize within the transparent union.
7068 RecordDecl *UD = UT->getDecl();
Craig Topperc3ec1492014-05-26 06:22:03 +00007069 FieldDecl *InitField = nullptr;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007070 // It's compatible if the expression matches any of the fields.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00007071 for (auto *it : UD->fields()) {
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007072 if (it->getType()->isPointerType()) {
7073 // If the transparent union contains a pointer type, we allow:
7074 // 1) void pointer
7075 // 2) null pointer constant
Richard Trieueb299142011-09-06 20:40:12 +00007076 if (RHSType->isPointerType())
John McCall9320b872011-09-09 05:25:32 +00007077 if (RHSType->castAs<PointerType>()->getPointeeType()->isVoidType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007078 RHS = ImpCastExprToType(RHS.get(), it->getType(), CK_BitCast);
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00007079 InitField = it;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007080 break;
7081 }
Mike Stump11289f42009-09-09 15:08:12 +00007082
Richard Trieueb299142011-09-06 20:40:12 +00007083 if (RHS.get()->isNullPointerConstant(Context,
7084 Expr::NPC_ValueDependentIsNull)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007085 RHS = ImpCastExprToType(RHS.get(), it->getType(),
Richard Trieueb299142011-09-06 20:40:12 +00007086 CK_NullToPointer);
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00007087 InitField = it;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007088 break;
7089 }
7090 }
7091
John McCall8cb679e2010-11-15 09:13:47 +00007092 CastKind Kind = CK_Invalid;
Richard Trieueb299142011-09-06 20:40:12 +00007093 if (CheckAssignmentConstraints(it->getType(), RHS, Kind)
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007094 == Compatible) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007095 RHS = ImpCastExprToType(RHS.get(), it->getType(), Kind);
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00007096 InitField = it;
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007097 break;
7098 }
7099 }
7100
7101 if (!InitField)
7102 return Incompatible;
7103
Richard Trieueb299142011-09-06 20:40:12 +00007104 ConstructTransparentUnion(*this, Context, RHS, ArgType, InitField);
Douglas Gregor0cfbdab2009-04-29 22:16:16 +00007105 return Compatible;
7106}
7107
Chris Lattner9bad62c2008-01-04 18:04:52 +00007108Sema::AssignConvertType
Sebastian Redlb49c46c2011-09-24 17:48:00 +00007109Sema::CheckSingleAssignmentConstraints(QualType LHSType, ExprResult &RHS,
Fariborz Jahanian25eef192013-07-31 21:40:51 +00007110 bool Diagnose,
7111 bool DiagnoseCFAudited) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00007112 if (getLangOpts().CPlusPlus) {
Eli Friedman0dfb8892011-10-06 23:00:33 +00007113 if (!LHSType->isRecordType() && !LHSType->isAtomicType()) {
Douglas Gregor9a657932008-10-21 23:43:52 +00007114 // C++ 5.17p3: If the left operand is not of class type, the
7115 // expression is implicitly converted (C++ 4) to the
7116 // cv-unqualified type of the left operand.
Sebastian Redlcc152642011-10-16 18:19:06 +00007117 ExprResult Res;
7118 if (Diagnose) {
7119 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7120 AA_Assigning);
7121 } else {
7122 ImplicitConversionSequence ICS =
7123 TryImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7124 /*SuppressUserConversions=*/false,
7125 /*AllowExplicit=*/false,
7126 /*InOverloadResolution=*/false,
7127 /*CStyle=*/false,
7128 /*AllowObjCWritebackConversion=*/false);
7129 if (ICS.isFailure())
7130 return Incompatible;
7131 Res = PerformImplicitConversion(RHS.get(), LHSType.getUnqualifiedType(),
7132 ICS, AA_Assigning);
7133 }
John Wiegley01296292011-04-08 18:41:53 +00007134 if (Res.isInvalid())
Douglas Gregor9a657932008-10-21 23:43:52 +00007135 return Incompatible;
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00007136 Sema::AssignConvertType result = Compatible;
David Blaikiebbafb8a2012-03-11 07:00:24 +00007137 if (getLangOpts().ObjCAutoRefCount &&
Richard Trieueb299142011-09-06 20:40:12 +00007138 !CheckObjCARCUnavailableWeakConversion(LHSType,
7139 RHS.get()->getType()))
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00007140 result = IncompatibleObjCWeakRef;
Benjamin Kramer62b95d82012-08-23 21:35:17 +00007141 RHS = Res;
Fariborz Jahanian7fcce682011-07-07 23:04:17 +00007142 return result;
Douglas Gregor9a657932008-10-21 23:43:52 +00007143 }
7144
7145 // FIXME: Currently, we fall through and treat C++ classes like C
7146 // structures.
Eli Friedman0dfb8892011-10-06 23:00:33 +00007147 // FIXME: We also fall through for atomics; not sure what should
7148 // happen there, though.
Sebastian Redlb49c46c2011-09-24 17:48:00 +00007149 }
Douglas Gregor9a657932008-10-21 23:43:52 +00007150
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00007151 // C99 6.5.16.1p1: the left operand is a pointer and the right is
7152 // a null pointer constant.
Richard Smithe934d7c2013-11-21 01:53:02 +00007153 if ((LHSType->isPointerType() || LHSType->isObjCObjectPointerType() ||
7154 LHSType->isBlockPointerType()) &&
7155 RHS.get()->isNullPointerConstant(Context,
7156 Expr::NPC_ValueDependentIsNull)) {
7157 CastKind Kind;
7158 CXXCastPath Path;
7159 CheckPointerConversion(RHS.get(), LHSType, Kind, Path, false);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007160 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind, VK_RValue, &Path);
Steve Naroff0ee0b0a2007-11-27 17:58:44 +00007161 return Compatible;
7162 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007163
Chris Lattnere6dcd502007-10-16 02:55:40 +00007164 // This check seems unnatural, however it is necessary to ensure the proper
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00007165 // conversion of functions/arrays. If the conversion were done for all
Douglas Gregora121b752009-11-03 16:56:39 +00007166 // DeclExpr's (created by ActOnIdExpression), it would mess up the unary
Nick Lewyckyef7c0ff2010-08-05 06:27:49 +00007167 // expressions that suppress this implicit conversion (&, sizeof).
Chris Lattnere6dcd502007-10-16 02:55:40 +00007168 //
Mike Stump4e1f26a2009-02-19 03:04:26 +00007169 // Suppress this for references: C++ 8.5.3p5.
Richard Trieueb299142011-09-06 20:40:12 +00007170 if (!LHSType->isReferenceType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007171 RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
Richard Trieueb299142011-09-06 20:40:12 +00007172 if (RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00007173 return Incompatible;
7174 }
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00007175
Fariborz Jahaniana57d91c22014-07-25 19:45:01 +00007176 Expr *PRE = RHS.get()->IgnoreParenCasts();
7177 if (ObjCProtocolExpr *OPE = dyn_cast<ObjCProtocolExpr>(PRE)) {
7178 ObjCProtocolDecl *PDecl = OPE->getProtocol();
7179 if (PDecl && !PDecl->hasDefinition()) {
7180 Diag(PRE->getExprLoc(), diag::warn_atprotocol_protocol) << PDecl->getName();
7181 Diag(PDecl->getLocation(), diag::note_entity_declared_at) << PDecl;
7182 }
7183 }
7184
John McCall8cb679e2010-11-15 09:13:47 +00007185 CastKind Kind = CK_Invalid;
Chris Lattner9bad62c2008-01-04 18:04:52 +00007186 Sema::AssignConvertType result =
Richard Trieueb299142011-09-06 20:40:12 +00007187 CheckAssignmentConstraints(LHSType, RHS, Kind);
Mike Stump4e1f26a2009-02-19 03:04:26 +00007188
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00007189 // C99 6.5.16.1p2: The value of the right operand is converted to the
7190 // type of the assignment expression.
Douglas Gregor6b754842008-10-28 00:22:11 +00007191 // CheckAssignmentConstraints allows the left-hand side to be a reference,
7192 // so that we can use references in built-in functions even in C.
7193 // The getNonReferenceType() call makes sure that the resulting expression
7194 // does not have reference type.
Fariborz Jahanian374089e2013-07-31 17:12:26 +00007195 if (result != Incompatible && RHS.get()->getType() != LHSType) {
7196 QualType Ty = LHSType.getNonLValueExprType(Context);
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007197 Expr *E = RHS.get();
Fariborz Jahanian374089e2013-07-31 17:12:26 +00007198 if (getLangOpts().ObjCAutoRefCount)
Fariborz Jahanian25eef192013-07-31 21:40:51 +00007199 CheckObjCARCConversion(SourceRange(), Ty, E, CCK_ImplicitConversion,
7200 DiagnoseCFAudited);
Fariborz Jahanian381edf52013-12-16 22:54:37 +00007201 if (getLangOpts().ObjC1 &&
Fariborz Jahanian283bf892013-12-18 21:04:43 +00007202 (CheckObjCBridgeRelatedConversions(E->getLocStart(),
7203 LHSType, E->getType(), E) ||
7204 ConversionToObjCStringLiteralCheck(LHSType, E))) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00007205 RHS = E;
Fariborz Jahanian381edf52013-12-16 22:54:37 +00007206 return Compatible;
7207 }
7208
Fariborz Jahanian374089e2013-07-31 17:12:26 +00007209 RHS = ImpCastExprToType(E, Ty, Kind);
7210 }
Steve Naroff0c1c7ed2007-08-24 22:33:52 +00007211 return result;
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00007212}
7213
Richard Trieueb299142011-09-06 20:40:12 +00007214QualType Sema::InvalidOperands(SourceLocation Loc, ExprResult &LHS,
7215 ExprResult &RHS) {
Chris Lattner377d1f82008-11-18 22:52:51 +00007216 Diag(Loc, diag::err_typecheck_invalid_operands)
Richard Trieueb299142011-09-06 20:40:12 +00007217 << LHS.get()->getType() << RHS.get()->getType()
7218 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Chris Lattner5c11c412007-12-12 05:47:28 +00007219 return QualType();
Steve Naroff6f49f5d2007-05-29 14:23:36 +00007220}
7221
Stephen Canon3ba640d2014-04-03 10:33:25 +00007222/// Try to convert a value of non-vector type to a vector type by converting
7223/// the type to the element type of the vector and then performing a splat.
7224/// If the language is OpenCL, we only use conversions that promote scalar
7225/// rank; for C, Obj-C, and C++ we allow any real scalar conversion except
7226/// for float->int.
John McCall9b595db2014-02-04 23:58:19 +00007227///
7228/// \param scalar - if non-null, actually perform the conversions
7229/// \return true if the operation fails (but without diagnosing the failure)
Stephen Canon3ba640d2014-04-03 10:33:25 +00007230static bool tryVectorConvertAndSplat(Sema &S, ExprResult *scalar,
John McCall9b595db2014-02-04 23:58:19 +00007231 QualType scalarTy,
7232 QualType vectorEltTy,
7233 QualType vectorTy) {
7234 // The conversion to apply to the scalar before splatting it,
7235 // if necessary.
7236 CastKind scalarCast = CK_Invalid;
Stephen Canon3ba640d2014-04-03 10:33:25 +00007237
John McCall9b595db2014-02-04 23:58:19 +00007238 if (vectorEltTy->isIntegralType(S.Context)) {
Stephen Canon3ba640d2014-04-03 10:33:25 +00007239 if (!scalarTy->isIntegralType(S.Context))
7240 return true;
7241 if (S.getLangOpts().OpenCL &&
7242 S.Context.getIntegerTypeOrder(vectorEltTy, scalarTy) < 0)
7243 return true;
7244 scalarCast = CK_IntegralCast;
John McCall9b595db2014-02-04 23:58:19 +00007245 } else if (vectorEltTy->isRealFloatingType()) {
7246 if (scalarTy->isRealFloatingType()) {
Stephen Canon3ba640d2014-04-03 10:33:25 +00007247 if (S.getLangOpts().OpenCL &&
7248 S.Context.getFloatingTypeOrder(vectorEltTy, scalarTy) < 0)
7249 return true;
7250 scalarCast = CK_FloatingCast;
John McCall9b595db2014-02-04 23:58:19 +00007251 }
Stephen Canon3ba640d2014-04-03 10:33:25 +00007252 else if (scalarTy->isIntegralType(S.Context))
7253 scalarCast = CK_IntegralToFloating;
7254 else
7255 return true;
John McCall9b595db2014-02-04 23:58:19 +00007256 } else {
7257 return true;
7258 }
7259
7260 // Adjust scalar if desired.
7261 if (scalar) {
7262 if (scalarCast != CK_Invalid)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007263 *scalar = S.ImpCastExprToType(scalar->get(), vectorEltTy, scalarCast);
7264 *scalar = S.ImpCastExprToType(scalar->get(), vectorTy, CK_VectorSplat);
John McCall9b595db2014-02-04 23:58:19 +00007265 }
7266 return false;
7267}
7268
Richard Trieu859d23f2011-09-06 21:01:04 +00007269QualType Sema::CheckVectorOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieuba63ce62011-09-09 01:45:06 +00007270 SourceLocation Loc, bool IsCompAssign) {
Richard Smith508ebf32011-10-28 03:31:48 +00007271 if (!IsCompAssign) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007272 LHS = DefaultFunctionArrayLvalueConversion(LHS.get());
Richard Smith508ebf32011-10-28 03:31:48 +00007273 if (LHS.isInvalid())
7274 return QualType();
7275 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007276 RHS = DefaultFunctionArrayLvalueConversion(RHS.get());
Richard Smith508ebf32011-10-28 03:31:48 +00007277 if (RHS.isInvalid())
7278 return QualType();
7279
Mike Stump4e1f26a2009-02-19 03:04:26 +00007280 // For conversion purposes, we ignore any qualifiers.
Nate Begeman002e4bd2008-04-04 01:30:25 +00007281 // For example, "const float" and "float" are equivalent.
John McCall9b595db2014-02-04 23:58:19 +00007282 QualType LHSType = LHS.get()->getType().getUnqualifiedType();
7283 QualType RHSType = RHS.get()->getType().getUnqualifiedType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007284
Nate Begeman191a6b12008-07-14 18:02:46 +00007285 // If the vector types are identical, return.
John McCall9b595db2014-02-04 23:58:19 +00007286 if (Context.hasSameType(LHSType, RHSType))
Richard Trieu859d23f2011-09-06 21:01:04 +00007287 return LHSType;
Nate Begeman330aaa72007-12-30 02:59:45 +00007288
John McCall9b595db2014-02-04 23:58:19 +00007289 const VectorType *LHSVecType = LHSType->getAs<VectorType>();
7290 const VectorType *RHSVecType = RHSType->getAs<VectorType>();
7291 assert(LHSVecType || RHSVecType);
7292
7293 // If we have compatible AltiVec and GCC vector types, use the AltiVec type.
7294 if (LHSVecType && RHSVecType &&
Richard Trieu859d23f2011-09-06 21:01:04 +00007295 Context.areCompatibleVectorTypes(LHSType, RHSType)) {
John McCall9b595db2014-02-04 23:58:19 +00007296 if (isa<ExtVectorType>(LHSVecType)) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007297 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
Richard Trieu859d23f2011-09-06 21:01:04 +00007298 return LHSType;
Eli Friedman1408bc92011-06-23 18:10:35 +00007299 }
7300
Richard Trieuba63ce62011-09-09 01:45:06 +00007301 if (!IsCompAssign)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007302 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
Richard Trieu859d23f2011-09-06 21:01:04 +00007303 return RHSType;
Douglas Gregor59e8b3b2010-08-06 10:14:59 +00007304 }
7305
Stephen Canon3ba640d2014-04-03 10:33:25 +00007306 // If there's an ext-vector type and a scalar, try to convert the scalar to
7307 // the vector element type and splat.
7308 if (!RHSVecType && isa<ExtVectorType>(LHSVecType)) {
7309 if (!tryVectorConvertAndSplat(*this, &RHS, RHSType,
7310 LHSVecType->getElementType(), LHSType))
7311 return LHSType;
7312 }
7313 if (!LHSVecType && isa<ExtVectorType>(RHSVecType)) {
Craig Topperc3ec1492014-05-26 06:22:03 +00007314 if (!tryVectorConvertAndSplat(*this, (IsCompAssign ? nullptr : &LHS),
7315 LHSType, RHSVecType->getElementType(),
7316 RHSType))
Stephen Canon3ba640d2014-04-03 10:33:25 +00007317 return RHSType;
7318 }
7319
John McCall9b595db2014-02-04 23:58:19 +00007320 // If we're allowing lax vector conversions, only the total (data) size
7321 // needs to be the same.
7322 // FIXME: Should we really be allowing this?
7323 // FIXME: We really just pick the LHS type arbitrarily?
7324 if (isLaxVectorConversion(RHSType, LHSType)) {
7325 QualType resultType = LHSType;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00007326 RHS = ImpCastExprToType(RHS.get(), resultType, CK_BitCast);
John McCall9b595db2014-02-04 23:58:19 +00007327 return resultType;
Eli Friedman1408bc92011-06-23 18:10:35 +00007328 }
7329
John McCall9b595db2014-02-04 23:58:19 +00007330 // Okay, the expression is invalid.
7331
7332 // If there's a non-vector, non-real operand, diagnose that.
7333 if ((!RHSVecType && !RHSType->isRealType()) ||
7334 (!LHSVecType && !LHSType->isRealType())) {
Argyrios Kyrtzidisd07dcdb2014-01-07 07:59:31 +00007335 Diag(Loc, diag::err_typecheck_vector_not_convertable_non_scalar)
John McCall9b595db2014-02-04 23:58:19 +00007336 << LHSType << RHSType
7337 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Argyrios Kyrtzidisd07dcdb2014-01-07 07:59:31 +00007338 return QualType();
7339 }
7340
John McCall9b595db2014-02-04 23:58:19 +00007341 // Otherwise, use the generic diagnostic.
Chris Lattner377d1f82008-11-18 22:52:51 +00007342 Diag(Loc, diag::err_typecheck_vector_not_convertable)
John McCall9b595db2014-02-04 23:58:19 +00007343 << LHSType << RHSType
Richard Trieu859d23f2011-09-06 21:01:04 +00007344 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Steve Naroff84ff4b42007-07-09 21:31:10 +00007345 return QualType();
Sebastian Redl112a97662009-02-07 00:15:38 +00007346}
7347
Richard Trieuf8916e12011-09-16 00:53:10 +00007348// checkArithmeticNull - Detect when a NULL constant is used improperly in an
7349// expression. These are mainly cases where the null pointer is used as an
7350// integer instead of a pointer.
7351static void checkArithmeticNull(Sema &S, ExprResult &LHS, ExprResult &RHS,
7352 SourceLocation Loc, bool IsCompare) {
7353 // The canonical way to check for a GNU null is with isNullPointerConstant,
7354 // but we use a bit of a hack here for speed; this is a relatively
7355 // hot path, and isNullPointerConstant is slow.
7356 bool LHSNull = isa<GNUNullExpr>(LHS.get()->IgnoreParenImpCasts());
7357 bool RHSNull = isa<GNUNullExpr>(RHS.get()->IgnoreParenImpCasts());
7358
7359 QualType NonNullType = LHSNull ? RHS.get()->getType() : LHS.get()->getType();
7360
7361 // Avoid analyzing cases where the result will either be invalid (and
7362 // diagnosed as such) or entirely valid and not something to warn about.
7363 if ((!LHSNull && !RHSNull) || NonNullType->isBlockPointerType() ||
7364 NonNullType->isMemberPointerType() || NonNullType->isFunctionType())
7365 return;
7366
7367 // Comparison operations would not make sense with a null pointer no matter
7368 // what the other expression is.
7369 if (!IsCompare) {
7370 S.Diag(Loc, diag::warn_null_in_arithmetic_operation)
7371 << (LHSNull ? LHS.get()->getSourceRange() : SourceRange())
7372 << (RHSNull ? RHS.get()->getSourceRange() : SourceRange());
7373 return;
7374 }
7375
7376 // The rest of the operations only make sense with a null pointer
7377 // if the other expression is a pointer.
7378 if (LHSNull == RHSNull || NonNullType->isAnyPointerType() ||
7379 NonNullType->canDecayToPointerType())
7380 return;
7381
7382 S.Diag(Loc, diag::warn_null_in_comparison_operation)
7383 << LHSNull /* LHS is NULL */ << NonNullType
7384 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7385}
7386
Richard Trieu859d23f2011-09-06 21:01:04 +00007387QualType Sema::CheckMultiplyDivideOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieucfc491d2011-08-02 04:35:43 +00007388 SourceLocation Loc,
Richard Trieuba63ce62011-09-09 01:45:06 +00007389 bool IsCompAssign, bool IsDiv) {
Richard Trieuf8916e12011-09-16 00:53:10 +00007390 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7391
Richard Trieu859d23f2011-09-06 21:01:04 +00007392 if (LHS.get()->getType()->isVectorType() ||
7393 RHS.get()->getType()->isVectorType())
Richard Trieuba63ce62011-09-09 01:45:06 +00007394 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Mike Stump4e1f26a2009-02-19 03:04:26 +00007395
Richard Trieuba63ce62011-09-09 01:45:06 +00007396 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
Richard Trieu859d23f2011-09-06 21:01:04 +00007397 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00007398 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007399
David Chisnallfa35df62012-01-16 17:27:18 +00007400
Eli Friedman93ee5ca2012-06-16 02:19:17 +00007401 if (compType.isNull() || !compType->isArithmeticType())
Richard Trieu859d23f2011-09-06 21:01:04 +00007402 return InvalidOperands(Loc, LHS, RHS);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00007403
Chris Lattnerfaa54172010-01-12 21:23:57 +00007404 // Check for division by zero.
Chandler Carruthc41c8b32013-06-14 08:57:18 +00007405 llvm::APSInt RHSValue;
7406 if (IsDiv && !RHS.get()->isValueDependent() &&
7407 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0)
7408 DiagRuntimeBehavior(Loc, RHS.get(),
7409 PDiag(diag::warn_division_by_zero)
7410 << RHS.get()->getSourceRange());
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00007411
Chris Lattnerfaa54172010-01-12 21:23:57 +00007412 return compType;
Steve Naroff26c8ea52007-03-21 21:08:52 +00007413}
7414
Chris Lattnerfaa54172010-01-12 21:23:57 +00007415QualType Sema::CheckRemainderOperands(
Richard Trieuba63ce62011-09-09 01:45:06 +00007416 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
Richard Trieuf8916e12011-09-16 00:53:10 +00007417 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7418
Richard Trieu859d23f2011-09-06 21:01:04 +00007419 if (LHS.get()->getType()->isVectorType() ||
7420 RHS.get()->getType()->isVectorType()) {
7421 if (LHS.get()->getType()->hasIntegerRepresentation() &&
7422 RHS.get()->getType()->hasIntegerRepresentation())
Richard Trieuba63ce62011-09-09 01:45:06 +00007423 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Richard Trieu859d23f2011-09-06 21:01:04 +00007424 return InvalidOperands(Loc, LHS, RHS);
Daniel Dunbar0d2bfec2009-01-05 22:55:36 +00007425 }
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00007426
Richard Trieuba63ce62011-09-09 01:45:06 +00007427 QualType compType = UsualArithmeticConversions(LHS, RHS, IsCompAssign);
Richard Trieu859d23f2011-09-06 21:01:04 +00007428 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00007429 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007430
Eli Friedman93ee5ca2012-06-16 02:19:17 +00007431 if (compType.isNull() || !compType->isIntegerType())
Richard Trieu859d23f2011-09-06 21:01:04 +00007432 return InvalidOperands(Loc, LHS, RHS);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00007433
Chris Lattnerfaa54172010-01-12 21:23:57 +00007434 // Check for remainder by zero.
Chandler Carruthc41c8b32013-06-14 08:57:18 +00007435 llvm::APSInt RHSValue;
7436 if (!RHS.get()->isValueDependent() &&
7437 RHS.get()->EvaluateAsInt(RHSValue, Context) && RHSValue == 0)
7438 DiagRuntimeBehavior(Loc, RHS.get(),
7439 PDiag(diag::warn_remainder_by_zero)
7440 << RHS.get()->getSourceRange());
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00007441
Chris Lattnerfaa54172010-01-12 21:23:57 +00007442 return compType;
Steve Naroff218bc2b2007-05-04 21:54:46 +00007443}
7444
Chandler Carruthc9332212011-06-27 08:02:19 +00007445/// \brief Diagnose invalid arithmetic on two void pointers.
7446static void diagnoseArithmeticOnTwoVoidPointers(Sema &S, SourceLocation Loc,
Richard Trieu4ae7e972011-09-06 21:13:51 +00007447 Expr *LHSExpr, Expr *RHSExpr) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00007448 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruthc9332212011-06-27 08:02:19 +00007449 ? diag::err_typecheck_pointer_arith_void_type
7450 : diag::ext_gnu_void_ptr)
Richard Trieu4ae7e972011-09-06 21:13:51 +00007451 << 1 /* two pointers */ << LHSExpr->getSourceRange()
7452 << RHSExpr->getSourceRange();
Chandler Carruthc9332212011-06-27 08:02:19 +00007453}
7454
7455/// \brief Diagnose invalid arithmetic on a void pointer.
7456static void diagnoseArithmeticOnVoidPointer(Sema &S, SourceLocation Loc,
7457 Expr *Pointer) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00007458 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruthc9332212011-06-27 08:02:19 +00007459 ? diag::err_typecheck_pointer_arith_void_type
7460 : diag::ext_gnu_void_ptr)
7461 << 0 /* one pointer */ << Pointer->getSourceRange();
7462}
7463
7464/// \brief Diagnose invalid arithmetic on two function pointers.
7465static void diagnoseArithmeticOnTwoFunctionPointers(Sema &S, SourceLocation Loc,
7466 Expr *LHS, Expr *RHS) {
7467 assert(LHS->getType()->isAnyPointerType());
7468 assert(RHS->getType()->isAnyPointerType());
David Blaikiebbafb8a2012-03-11 07:00:24 +00007469 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruthc9332212011-06-27 08:02:19 +00007470 ? diag::err_typecheck_pointer_arith_function_type
7471 : diag::ext_gnu_ptr_func_arith)
7472 << 1 /* two pointers */ << LHS->getType()->getPointeeType()
7473 // We only show the second type if it differs from the first.
7474 << (unsigned)!S.Context.hasSameUnqualifiedType(LHS->getType(),
7475 RHS->getType())
7476 << RHS->getType()->getPointeeType()
7477 << LHS->getSourceRange() << RHS->getSourceRange();
7478}
7479
7480/// \brief Diagnose invalid arithmetic on a function pointer.
7481static void diagnoseArithmeticOnFunctionPointer(Sema &S, SourceLocation Loc,
7482 Expr *Pointer) {
7483 assert(Pointer->getType()->isAnyPointerType());
David Blaikiebbafb8a2012-03-11 07:00:24 +00007484 S.Diag(Loc, S.getLangOpts().CPlusPlus
Chandler Carruthc9332212011-06-27 08:02:19 +00007485 ? diag::err_typecheck_pointer_arith_function_type
7486 : diag::ext_gnu_ptr_func_arith)
7487 << 0 /* one pointer */ << Pointer->getType()->getPointeeType()
7488 << 0 /* one pointer, so only one type */
7489 << Pointer->getSourceRange();
7490}
7491
Richard Trieu993f3ab2011-09-12 18:08:02 +00007492/// \brief Emit error if Operand is incomplete pointer type
Richard Trieuaba22802011-09-02 02:15:37 +00007493///
7494/// \returns True if pointer has incomplete type
7495static bool checkArithmeticIncompletePointerType(Sema &S, SourceLocation Loc,
7496 Expr *Operand) {
David Majnemercf7d1642015-02-12 21:07:34 +00007497 QualType ResType = Operand->getType();
7498 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7499 ResType = ResAtomicType->getValueType();
7500
7501 assert(ResType->isAnyPointerType() && !ResType->isDependentType());
7502 QualType PointeeTy = ResType->getPointeeType();
John McCallf2538342012-07-31 05:14:30 +00007503 return S.RequireCompleteType(Loc, PointeeTy,
7504 diag::err_typecheck_arithmetic_incomplete_type,
7505 PointeeTy, Operand->getSourceRange());
Richard Trieuaba22802011-09-02 02:15:37 +00007506}
7507
Chandler Carruthc9332212011-06-27 08:02:19 +00007508/// \brief Check the validity of an arithmetic pointer operand.
7509///
7510/// If the operand has pointer type, this code will check for pointer types
7511/// which are invalid in arithmetic operations. These will be diagnosed
7512/// appropriately, including whether or not the use is supported as an
7513/// extension.
7514///
7515/// \returns True when the operand is valid to use (even if as an extension).
7516static bool checkArithmeticOpPointerOperand(Sema &S, SourceLocation Loc,
7517 Expr *Operand) {
David Majnemercf7d1642015-02-12 21:07:34 +00007518 QualType ResType = Operand->getType();
7519 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
7520 ResType = ResAtomicType->getValueType();
Chandler Carruthc9332212011-06-27 08:02:19 +00007521
David Majnemercf7d1642015-02-12 21:07:34 +00007522 if (!ResType->isAnyPointerType()) return true;
7523
7524 QualType PointeeTy = ResType->getPointeeType();
Chandler Carruthc9332212011-06-27 08:02:19 +00007525 if (PointeeTy->isVoidType()) {
7526 diagnoseArithmeticOnVoidPointer(S, Loc, Operand);
David Blaikiebbafb8a2012-03-11 07:00:24 +00007527 return !S.getLangOpts().CPlusPlus;
Chandler Carruthc9332212011-06-27 08:02:19 +00007528 }
7529 if (PointeeTy->isFunctionType()) {
7530 diagnoseArithmeticOnFunctionPointer(S, Loc, Operand);
David Blaikiebbafb8a2012-03-11 07:00:24 +00007531 return !S.getLangOpts().CPlusPlus;
Chandler Carruthc9332212011-06-27 08:02:19 +00007532 }
7533
Richard Trieuaba22802011-09-02 02:15:37 +00007534 if (checkArithmeticIncompletePointerType(S, Loc, Operand)) return false;
Chandler Carruthc9332212011-06-27 08:02:19 +00007535
7536 return true;
7537}
7538
7539/// \brief Check the validity of a binary arithmetic operation w.r.t. pointer
7540/// operands.
7541///
7542/// This routine will diagnose any invalid arithmetic on pointer operands much
7543/// like \see checkArithmeticOpPointerOperand. However, it has special logic
7544/// for emitting a single diagnostic even for operations where both LHS and RHS
7545/// are (potentially problematic) pointers.
7546///
7547/// \returns True when the operand is valid to use (even if as an extension).
7548static bool checkArithmeticBinOpPointerOperands(Sema &S, SourceLocation Loc,
Richard Trieu4ae7e972011-09-06 21:13:51 +00007549 Expr *LHSExpr, Expr *RHSExpr) {
7550 bool isLHSPointer = LHSExpr->getType()->isAnyPointerType();
7551 bool isRHSPointer = RHSExpr->getType()->isAnyPointerType();
Chandler Carruthc9332212011-06-27 08:02:19 +00007552 if (!isLHSPointer && !isRHSPointer) return true;
7553
7554 QualType LHSPointeeTy, RHSPointeeTy;
Richard Trieu4ae7e972011-09-06 21:13:51 +00007555 if (isLHSPointer) LHSPointeeTy = LHSExpr->getType()->getPointeeType();
7556 if (isRHSPointer) RHSPointeeTy = RHSExpr->getType()->getPointeeType();
Chandler Carruthc9332212011-06-27 08:02:19 +00007557
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00007558 // if both are pointers check if operation is valid wrt address spaces
7559 if (isLHSPointer && isRHSPointer) {
7560 const PointerType *lhsPtr = LHSExpr->getType()->getAs<PointerType>();
7561 const PointerType *rhsPtr = RHSExpr->getType()->getAs<PointerType>();
7562 if (!lhsPtr->isAddressSpaceOverlapping(*rhsPtr)) {
7563 S.Diag(Loc,
7564 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
7565 << LHSExpr->getType() << RHSExpr->getType() << 1 /*arithmetic op*/
7566 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
7567 return false;
7568 }
7569 }
7570
Chandler Carruthc9332212011-06-27 08:02:19 +00007571 // Check for arithmetic on pointers to incomplete types.
7572 bool isLHSVoidPtr = isLHSPointer && LHSPointeeTy->isVoidType();
7573 bool isRHSVoidPtr = isRHSPointer && RHSPointeeTy->isVoidType();
7574 if (isLHSVoidPtr || isRHSVoidPtr) {
Richard Trieu4ae7e972011-09-06 21:13:51 +00007575 if (!isRHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, LHSExpr);
7576 else if (!isLHSVoidPtr) diagnoseArithmeticOnVoidPointer(S, Loc, RHSExpr);
7577 else diagnoseArithmeticOnTwoVoidPointers(S, Loc, LHSExpr, RHSExpr);
Chandler Carruthc9332212011-06-27 08:02:19 +00007578
David Blaikiebbafb8a2012-03-11 07:00:24 +00007579 return !S.getLangOpts().CPlusPlus;
Chandler Carruthc9332212011-06-27 08:02:19 +00007580 }
7581
7582 bool isLHSFuncPtr = isLHSPointer && LHSPointeeTy->isFunctionType();
7583 bool isRHSFuncPtr = isRHSPointer && RHSPointeeTy->isFunctionType();
7584 if (isLHSFuncPtr || isRHSFuncPtr) {
Richard Trieu4ae7e972011-09-06 21:13:51 +00007585 if (!isRHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc, LHSExpr);
7586 else if (!isLHSFuncPtr) diagnoseArithmeticOnFunctionPointer(S, Loc,
7587 RHSExpr);
7588 else diagnoseArithmeticOnTwoFunctionPointers(S, Loc, LHSExpr, RHSExpr);
Chandler Carruthc9332212011-06-27 08:02:19 +00007589
David Blaikiebbafb8a2012-03-11 07:00:24 +00007590 return !S.getLangOpts().CPlusPlus;
Chandler Carruthc9332212011-06-27 08:02:19 +00007591 }
7592
John McCallf2538342012-07-31 05:14:30 +00007593 if (isLHSPointer && checkArithmeticIncompletePointerType(S, Loc, LHSExpr))
7594 return false;
7595 if (isRHSPointer && checkArithmeticIncompletePointerType(S, Loc, RHSExpr))
7596 return false;
Richard Trieuaba22802011-09-02 02:15:37 +00007597
Chandler Carruthc9332212011-06-27 08:02:19 +00007598 return true;
7599}
7600
Nico Weberccec40d2012-03-02 22:01:22 +00007601/// diagnoseStringPlusInt - Emit a warning when adding an integer to a string
7602/// literal.
7603static void diagnoseStringPlusInt(Sema &Self, SourceLocation OpLoc,
7604 Expr *LHSExpr, Expr *RHSExpr) {
7605 StringLiteral* StrExpr = dyn_cast<StringLiteral>(LHSExpr->IgnoreImpCasts());
7606 Expr* IndexExpr = RHSExpr;
7607 if (!StrExpr) {
7608 StrExpr = dyn_cast<StringLiteral>(RHSExpr->IgnoreImpCasts());
7609 IndexExpr = LHSExpr;
7610 }
7611
7612 bool IsStringPlusInt = StrExpr &&
7613 IndexExpr->getType()->isIntegralOrUnscopedEnumerationType();
David Majnemer7e217452014-12-15 10:00:35 +00007614 if (!IsStringPlusInt || IndexExpr->isValueDependent())
Nico Weberccec40d2012-03-02 22:01:22 +00007615 return;
7616
7617 llvm::APSInt index;
7618 if (IndexExpr->EvaluateAsInt(index, Self.getASTContext())) {
7619 unsigned StrLenWithNull = StrExpr->getLength() + 1;
7620 if (index.isNonNegative() &&
7621 index <= llvm::APSInt(llvm::APInt(index.getBitWidth(), StrLenWithNull),
7622 index.isUnsigned()))
7623 return;
7624 }
7625
7626 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
7627 Self.Diag(OpLoc, diag::warn_string_plus_int)
7628 << DiagRange << IndexExpr->IgnoreImpCasts()->getType();
7629
7630 // Only print a fixit for "str" + int, not for int + "str".
7631 if (IndexExpr == RHSExpr) {
7632 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd());
Jordan Rose55659412013-10-25 16:52:00 +00007633 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
Nico Weberccec40d2012-03-02 22:01:22 +00007634 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
7635 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
7636 << FixItHint::CreateInsertion(EndLoc, "]");
7637 } else
Jordan Rose55659412013-10-25 16:52:00 +00007638 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
7639}
7640
7641/// \brief Emit a warning when adding a char literal to a string.
7642static void diagnoseStringPlusChar(Sema &Self, SourceLocation OpLoc,
7643 Expr *LHSExpr, Expr *RHSExpr) {
Daniel Marjamaki36859002014-12-15 20:22:33 +00007644 const Expr *StringRefExpr = LHSExpr;
Jordan Rose55659412013-10-25 16:52:00 +00007645 const CharacterLiteral *CharExpr =
7646 dyn_cast<CharacterLiteral>(RHSExpr->IgnoreImpCasts());
Daniel Marjamaki36859002014-12-15 20:22:33 +00007647
7648 if (!CharExpr) {
Jordan Rose55659412013-10-25 16:52:00 +00007649 CharExpr = dyn_cast<CharacterLiteral>(LHSExpr->IgnoreImpCasts());
Daniel Marjamaki36859002014-12-15 20:22:33 +00007650 StringRefExpr = RHSExpr;
Jordan Rose55659412013-10-25 16:52:00 +00007651 }
7652
7653 if (!CharExpr || !StringRefExpr)
7654 return;
7655
7656 const QualType StringType = StringRefExpr->getType();
7657
7658 // Return if not a PointerType.
7659 if (!StringType->isAnyPointerType())
7660 return;
7661
7662 // Return if not a CharacterType.
7663 if (!StringType->getPointeeType()->isAnyCharacterType())
7664 return;
7665
7666 ASTContext &Ctx = Self.getASTContext();
7667 SourceRange DiagRange(LHSExpr->getLocStart(), RHSExpr->getLocEnd());
7668
7669 const QualType CharType = CharExpr->getType();
7670 if (!CharType->isAnyCharacterType() &&
7671 CharType->isIntegerType() &&
7672 llvm::isUIntN(Ctx.getCharWidth(), CharExpr->getValue())) {
7673 Self.Diag(OpLoc, diag::warn_string_plus_char)
7674 << DiagRange << Ctx.CharTy;
7675 } else {
7676 Self.Diag(OpLoc, diag::warn_string_plus_char)
7677 << DiagRange << CharExpr->getType();
7678 }
7679
7680 // Only print a fixit for str + char, not for char + str.
7681 if (isa<CharacterLiteral>(RHSExpr->IgnoreImpCasts())) {
7682 SourceLocation EndLoc = Self.PP.getLocForEndOfToken(RHSExpr->getLocEnd());
7683 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence)
7684 << FixItHint::CreateInsertion(LHSExpr->getLocStart(), "&")
7685 << FixItHint::CreateReplacement(SourceRange(OpLoc), "[")
7686 << FixItHint::CreateInsertion(EndLoc, "]");
7687 } else {
7688 Self.Diag(OpLoc, diag::note_string_plus_scalar_silence);
7689 }
Nico Weberccec40d2012-03-02 22:01:22 +00007690}
7691
Richard Trieu993f3ab2011-09-12 18:08:02 +00007692/// \brief Emit error when two pointers are incompatible.
Richard Trieub10c6312011-09-01 22:53:23 +00007693static void diagnosePointerIncompatibility(Sema &S, SourceLocation Loc,
Richard Trieu4ae7e972011-09-06 21:13:51 +00007694 Expr *LHSExpr, Expr *RHSExpr) {
7695 assert(LHSExpr->getType()->isAnyPointerType());
7696 assert(RHSExpr->getType()->isAnyPointerType());
Richard Trieub10c6312011-09-01 22:53:23 +00007697 S.Diag(Loc, diag::err_typecheck_sub_ptr_compatible)
Richard Trieu4ae7e972011-09-06 21:13:51 +00007698 << LHSExpr->getType() << RHSExpr->getType() << LHSExpr->getSourceRange()
7699 << RHSExpr->getSourceRange();
Richard Trieub10c6312011-09-01 22:53:23 +00007700}
7701
Chris Lattnerfaa54172010-01-12 21:23:57 +00007702QualType Sema::CheckAdditionOperands( // C99 6.5.6
Nico Weberccec40d2012-03-02 22:01:22 +00007703 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc,
7704 QualType* CompLHSTy) {
Richard Trieuf8916e12011-09-16 00:53:10 +00007705 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7706
Richard Trieu4ae7e972011-09-06 21:13:51 +00007707 if (LHS.get()->getType()->isVectorType() ||
7708 RHS.get()->getType()->isVectorType()) {
7709 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy);
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007710 if (CompLHSTy) *CompLHSTy = compType;
7711 return compType;
7712 }
Steve Naroff7a5af782007-07-13 16:58:59 +00007713
Richard Trieu4ae7e972011-09-06 21:13:51 +00007714 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
7715 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00007716 return QualType();
Eli Friedman8e122982008-05-18 18:08:51 +00007717
Jordan Rose55659412013-10-25 16:52:00 +00007718 // Diagnose "string literal" '+' int and string '+' "char literal".
7719 if (Opc == BO_Add) {
Nico Weberccec40d2012-03-02 22:01:22 +00007720 diagnoseStringPlusInt(*this, Loc, LHS.get(), RHS.get());
Jordan Rose55659412013-10-25 16:52:00 +00007721 diagnoseStringPlusChar(*this, Loc, LHS.get(), RHS.get());
7722 }
Nico Weberccec40d2012-03-02 22:01:22 +00007723
Steve Naroffe4718892007-04-27 18:30:00 +00007724 // handle the common case first (both operands are arithmetic).
Eli Friedman93ee5ca2012-06-16 02:19:17 +00007725 if (!compType.isNull() && compType->isArithmeticType()) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007726 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00007727 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007728 }
Steve Naroff218bc2b2007-05-04 21:54:46 +00007729
John McCallf2538342012-07-31 05:14:30 +00007730 // Type-checking. Ultimately the pointer's going to be in PExp;
7731 // note that we bias towards the LHS being the pointer.
7732 Expr *PExp = LHS.get(), *IExp = RHS.get();
Eli Friedman8e122982008-05-18 18:08:51 +00007733
John McCallf2538342012-07-31 05:14:30 +00007734 bool isObjCPointer;
7735 if (PExp->getType()->isPointerType()) {
7736 isObjCPointer = false;
7737 } else if (PExp->getType()->isObjCObjectPointerType()) {
7738 isObjCPointer = true;
7739 } else {
7740 std::swap(PExp, IExp);
7741 if (PExp->getType()->isPointerType()) {
7742 isObjCPointer = false;
7743 } else if (PExp->getType()->isObjCObjectPointerType()) {
7744 isObjCPointer = true;
7745 } else {
7746 return InvalidOperands(Loc, LHS, RHS);
7747 }
7748 }
7749 assert(PExp->getType()->isAnyPointerType());
Chandler Carruthc9332212011-06-27 08:02:19 +00007750
Richard Trieub420bca2011-09-12 18:37:54 +00007751 if (!IExp->getType()->isIntegerType())
7752 return InvalidOperands(Loc, LHS, RHS);
Mike Stump11289f42009-09-09 15:08:12 +00007753
Richard Trieub420bca2011-09-12 18:37:54 +00007754 if (!checkArithmeticOpPointerOperand(*this, Loc, PExp))
7755 return QualType();
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00007756
John McCallf2538342012-07-31 05:14:30 +00007757 if (isObjCPointer && checkArithmeticOnObjCPointer(*this, Loc, PExp))
Richard Trieub420bca2011-09-12 18:37:54 +00007758 return QualType();
7759
7760 // Check array bounds for pointer arithemtic
7761 CheckArrayAccess(PExp, IExp);
7762
7763 if (CompLHSTy) {
7764 QualType LHSTy = Context.isPromotableBitField(LHS.get());
7765 if (LHSTy.isNull()) {
7766 LHSTy = LHS.get()->getType();
7767 if (LHSTy->isPromotableIntegerType())
7768 LHSTy = Context.getPromotedIntegerType(LHSTy);
Eli Friedman8e122982008-05-18 18:08:51 +00007769 }
Richard Trieub420bca2011-09-12 18:37:54 +00007770 *CompLHSTy = LHSTy;
Eli Friedman8e122982008-05-18 18:08:51 +00007771 }
7772
Richard Trieub420bca2011-09-12 18:37:54 +00007773 return PExp->getType();
Steve Naroff26c8ea52007-03-21 21:08:52 +00007774}
7775
Chris Lattner2a3569b2008-04-07 05:30:13 +00007776// C99 6.5.6
Richard Trieu4ae7e972011-09-06 21:13:51 +00007777QualType Sema::CheckSubtractionOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieucfc491d2011-08-02 04:35:43 +00007778 SourceLocation Loc,
7779 QualType* CompLHSTy) {
Richard Trieuf8916e12011-09-16 00:53:10 +00007780 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
7781
Richard Trieu4ae7e972011-09-06 21:13:51 +00007782 if (LHS.get()->getType()->isVectorType() ||
7783 RHS.get()->getType()->isVectorType()) {
7784 QualType compType = CheckVectorOperands(LHS, RHS, Loc, CompLHSTy);
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007785 if (CompLHSTy) *CompLHSTy = compType;
7786 return compType;
7787 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007788
Richard Trieu4ae7e972011-09-06 21:13:51 +00007789 QualType compType = UsualArithmeticConversions(LHS, RHS, CompLHSTy);
7790 if (LHS.isInvalid() || RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00007791 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007792
Chris Lattner4d62f422007-12-09 21:53:25 +00007793 // Enforce type constraints: C99 6.5.6p3.
Mike Stump4e1f26a2009-02-19 03:04:26 +00007794
Chris Lattner4d62f422007-12-09 21:53:25 +00007795 // Handle the common case first (both operands are arithmetic).
Eli Friedman93ee5ca2012-06-16 02:19:17 +00007796 if (!compType.isNull() && compType->isArithmeticType()) {
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007797 if (CompLHSTy) *CompLHSTy = compType;
Steve Naroffbe4c4d12007-08-24 19:07:16 +00007798 return compType;
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007799 }
Mike Stump11289f42009-09-09 15:08:12 +00007800
Chris Lattner4d62f422007-12-09 21:53:25 +00007801 // Either ptr - int or ptr - ptr.
Richard Trieu4ae7e972011-09-06 21:13:51 +00007802 if (LHS.get()->getType()->isAnyPointerType()) {
7803 QualType lpointee = LHS.get()->getType()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007804
Chris Lattner12bdebb2009-04-24 23:50:08 +00007805 // Diagnose bad cases where we step over interface counts.
John McCallf2538342012-07-31 05:14:30 +00007806 if (LHS.get()->getType()->isObjCObjectPointerType() &&
7807 checkArithmeticOnObjCPointer(*this, Loc, LHS.get()))
Chris Lattner12bdebb2009-04-24 23:50:08 +00007808 return QualType();
Mike Stump11289f42009-09-09 15:08:12 +00007809
Chris Lattner4d62f422007-12-09 21:53:25 +00007810 // The result type of a pointer-int computation is the pointer type.
Richard Trieu4ae7e972011-09-06 21:13:51 +00007811 if (RHS.get()->getType()->isIntegerType()) {
7812 if (!checkArithmeticOpPointerOperand(*this, Loc, LHS.get()))
Chandler Carruthc9332212011-06-27 08:02:19 +00007813 return QualType();
Douglas Gregorac1fb652009-03-24 19:52:54 +00007814
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00007815 // Check array bounds for pointer arithemtic
Craig Topperc3ec1492014-05-26 06:22:03 +00007816 CheckArrayAccess(LHS.get(), RHS.get(), /*ArraySubscriptExpr*/nullptr,
Richard Smith13f67182011-12-16 19:31:14 +00007817 /*AllowOnePastEnd*/true, /*IndexNegated*/true);
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00007818
Richard Trieu4ae7e972011-09-06 21:13:51 +00007819 if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
7820 return LHS.get()->getType();
Douglas Gregorac1fb652009-03-24 19:52:54 +00007821 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007822
Chris Lattner4d62f422007-12-09 21:53:25 +00007823 // Handle pointer-pointer subtractions.
Richard Trieucfc491d2011-08-02 04:35:43 +00007824 if (const PointerType *RHSPTy
Richard Trieu4ae7e972011-09-06 21:13:51 +00007825 = RHS.get()->getType()->getAs<PointerType>()) {
Eli Friedman1974e532008-02-08 01:19:44 +00007826 QualType rpointee = RHSPTy->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00007827
David Blaikiebbafb8a2012-03-11 07:00:24 +00007828 if (getLangOpts().CPlusPlus) {
Eli Friedman168fe152009-05-16 13:54:38 +00007829 // Pointee types must be the same: C++ [expr.add]
7830 if (!Context.hasSameUnqualifiedType(lpointee, rpointee)) {
Richard Trieu4ae7e972011-09-06 21:13:51 +00007831 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
Eli Friedman168fe152009-05-16 13:54:38 +00007832 }
7833 } else {
7834 // Pointee types must be compatible C99 6.5.6p3
7835 if (!Context.typesAreCompatible(
7836 Context.getCanonicalType(lpointee).getUnqualifiedType(),
7837 Context.getCanonicalType(rpointee).getUnqualifiedType())) {
Richard Trieu4ae7e972011-09-06 21:13:51 +00007838 diagnosePointerIncompatibility(*this, Loc, LHS.get(), RHS.get());
Eli Friedman168fe152009-05-16 13:54:38 +00007839 return QualType();
7840 }
Chris Lattner4d62f422007-12-09 21:53:25 +00007841 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007842
Chandler Carruthc9332212011-06-27 08:02:19 +00007843 if (!checkArithmeticBinOpPointerOperands(*this, Loc,
Richard Trieu4ae7e972011-09-06 21:13:51 +00007844 LHS.get(), RHS.get()))
Chandler Carruthc9332212011-06-27 08:02:19 +00007845 return QualType();
Eli Friedman8b7b1b12009-03-28 01:22:36 +00007846
Richard Smith84c6b3d2013-09-10 21:34:14 +00007847 // The pointee type may have zero size. As an extension, a structure or
7848 // union may have zero size or an array may have zero length. In this
7849 // case subtraction does not make sense.
7850 if (!rpointee->isVoidType() && !rpointee->isFunctionType()) {
7851 CharUnits ElementSize = Context.getTypeSizeInChars(rpointee);
7852 if (ElementSize.isZero()) {
7853 Diag(Loc,diag::warn_sub_ptr_zero_size_types)
7854 << rpointee.getUnqualifiedType()
7855 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7856 }
7857 }
7858
Richard Trieu4ae7e972011-09-06 21:13:51 +00007859 if (CompLHSTy) *CompLHSTy = LHS.get()->getType();
Chris Lattner4d62f422007-12-09 21:53:25 +00007860 return Context.getPointerDiffType();
7861 }
7862 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00007863
Richard Trieu4ae7e972011-09-06 21:13:51 +00007864 return InvalidOperands(Loc, LHS, RHS);
Steve Naroff218bc2b2007-05-04 21:54:46 +00007865}
7866
Douglas Gregor0bf31402010-10-08 23:50:27 +00007867static bool isScopedEnumerationType(QualType T) {
Richard Smith43d3f552015-01-14 00:33:10 +00007868 if (const EnumType *ET = T->getAs<EnumType>())
Douglas Gregor0bf31402010-10-08 23:50:27 +00007869 return ET->getDecl()->isScoped();
7870 return false;
7871}
7872
Richard Trieue4a19fb2011-09-06 21:21:28 +00007873static void DiagnoseBadShiftValues(Sema& S, ExprResult &LHS, ExprResult &RHS,
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007874 SourceLocation Loc, unsigned Opc,
Richard Trieue4a19fb2011-09-06 21:21:28 +00007875 QualType LHSType) {
David Tweed042e0882013-01-07 16:43:27 +00007876 // OpenCL 6.3j: shift values are effectively % word size of LHS (more defined),
7877 // so skip remaining warnings as we don't want to modify values within Sema.
7878 if (S.getLangOpts().OpenCL)
7879 return;
7880
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007881 llvm::APSInt Right;
7882 // Check right/shifter operand
Richard Trieue4a19fb2011-09-06 21:21:28 +00007883 if (RHS.get()->isValueDependent() ||
Davide Italiano346048a2015-03-26 21:37:49 +00007884 !RHS.get()->EvaluateAsInt(Right, S.Context))
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007885 return;
7886
7887 if (Right.isNegative()) {
Richard Trieue4a19fb2011-09-06 21:21:28 +00007888 S.DiagRuntimeBehavior(Loc, RHS.get(),
Ted Kremenek63657fe2011-03-01 18:09:31 +00007889 S.PDiag(diag::warn_shift_negative)
Richard Trieue4a19fb2011-09-06 21:21:28 +00007890 << RHS.get()->getSourceRange());
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007891 return;
7892 }
7893 llvm::APInt LeftBits(Right.getBitWidth(),
Richard Trieue4a19fb2011-09-06 21:21:28 +00007894 S.Context.getTypeSize(LHS.get()->getType()));
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007895 if (Right.uge(LeftBits)) {
Richard Trieue4a19fb2011-09-06 21:21:28 +00007896 S.DiagRuntimeBehavior(Loc, RHS.get(),
Ted Kremenek26bbc3d2011-03-01 19:13:22 +00007897 S.PDiag(diag::warn_shift_gt_typewidth)
Richard Trieue4a19fb2011-09-06 21:21:28 +00007898 << RHS.get()->getSourceRange());
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007899 return;
7900 }
7901 if (Opc != BO_Shl)
7902 return;
7903
7904 // When left shifting an ICE which is signed, we can check for overflow which
7905 // according to C++ has undefined behavior ([expr.shift] 5.8/2). Unsigned
7906 // integers have defined behavior modulo one more than the maximum value
7907 // representable in the result type, so never warn for those.
7908 llvm::APSInt Left;
Richard Trieue4a19fb2011-09-06 21:21:28 +00007909 if (LHS.get()->isValueDependent() ||
Davide Italianobf0f7752015-07-06 18:02:09 +00007910 LHSType->hasUnsignedIntegerRepresentation() ||
7911 !LHS.get()->EvaluateAsInt(Left, S.Context))
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007912 return;
Davide Italianobf0f7752015-07-06 18:02:09 +00007913
7914 // If LHS does not have a signed type and non-negative value
7915 // then, the behavior is undefined. Warn about it.
7916 if (Left.isNegative()) {
7917 S.DiagRuntimeBehavior(Loc, LHS.get(),
7918 S.PDiag(diag::warn_shift_lhs_negative)
7919 << LHS.get()->getSourceRange());
7920 return;
7921 }
7922
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007923 llvm::APInt ResultBits =
7924 static_cast<llvm::APInt&>(Right) + Left.getMinSignedBits();
7925 if (LeftBits.uge(ResultBits))
7926 return;
7927 llvm::APSInt Result = Left.extend(ResultBits.getLimitedValue());
7928 Result = Result.shl(Right);
7929
Ted Kremenek70f05fd2011-06-15 00:54:52 +00007930 // Print the bit representation of the signed integer as an unsigned
7931 // hexadecimal number.
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00007932 SmallString<40> HexResult;
Ted Kremenek70f05fd2011-06-15 00:54:52 +00007933 Result.toString(HexResult, 16, /*Signed =*/false, /*Literal =*/true);
7934
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007935 // If we are only missing a sign bit, this is less likely to result in actual
7936 // bugs -- if the result is cast back to an unsigned type, it will have the
7937 // expected value. Thus we place this behind a different warning that can be
7938 // turned off separately if needed.
7939 if (LeftBits == ResultBits - 1) {
Ted Kremenek70f05fd2011-06-15 00:54:52 +00007940 S.Diag(Loc, diag::warn_shift_result_sets_sign_bit)
Yaron Keren92e1b622015-03-18 10:17:07 +00007941 << HexResult << LHSType
Richard Trieue4a19fb2011-09-06 21:21:28 +00007942 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007943 return;
7944 }
7945
7946 S.Diag(Loc, diag::warn_shift_result_gt_typewidth)
Richard Trieue4a19fb2011-09-06 21:21:28 +00007947 << HexResult.str() << Result.getMinSignedBits() << LHSType
7948 << Left.getBitWidth() << LHS.get()->getSourceRange()
7949 << RHS.get()->getSourceRange();
Chandler Carruth4c6fdca2011-02-23 23:34:11 +00007950}
7951
Sameer Sahasrabuddhea75db662015-02-25 05:48:23 +00007952/// \brief Return the resulting type when an OpenCL vector is shifted
7953/// by a scalar or vector shift amount.
7954static QualType checkOpenCLVectorShift(Sema &S,
7955 ExprResult &LHS, ExprResult &RHS,
7956 SourceLocation Loc, bool IsCompAssign) {
7957 // OpenCL v1.1 s6.3.j says RHS can be a vector only if LHS is a vector.
7958 if (!LHS.get()->getType()->isVectorType()) {
7959 S.Diag(Loc, diag::err_shift_rhs_only_vector)
7960 << RHS.get()->getType() << LHS.get()->getType()
7961 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
7962 return QualType();
7963 }
7964
7965 if (!IsCompAssign) {
7966 LHS = S.UsualUnaryConversions(LHS.get());
7967 if (LHS.isInvalid()) return QualType();
7968 }
7969
7970 RHS = S.UsualUnaryConversions(RHS.get());
7971 if (RHS.isInvalid()) return QualType();
7972
7973 QualType LHSType = LHS.get()->getType();
7974 const VectorType *LHSVecTy = LHSType->getAs<VectorType>();
7975 QualType LHSEleType = LHSVecTy->getElementType();
7976
7977 // Note that RHS might not be a vector.
7978 QualType RHSType = RHS.get()->getType();
7979 const VectorType *RHSVecTy = RHSType->getAs<VectorType>();
7980 QualType RHSEleType = RHSVecTy ? RHSVecTy->getElementType() : RHSType;
7981
7982 // OpenCL v1.1 s6.3.j says that the operands need to be integers.
7983 if (!LHSEleType->isIntegerType()) {
7984 S.Diag(Loc, diag::err_typecheck_expect_int)
7985 << LHS.get()->getType() << LHS.get()->getSourceRange();
7986 return QualType();
7987 }
7988
7989 if (!RHSEleType->isIntegerType()) {
7990 S.Diag(Loc, diag::err_typecheck_expect_int)
7991 << RHS.get()->getType() << RHS.get()->getSourceRange();
7992 return QualType();
7993 }
7994
7995 if (RHSVecTy) {
7996 // OpenCL v1.1 s6.3.j says that for vector types, the operators
7997 // are applied component-wise. So if RHS is a vector, then ensure
7998 // that the number of elements is the same as LHS...
7999 if (RHSVecTy->getNumElements() != LHSVecTy->getNumElements()) {
8000 S.Diag(Loc, diag::err_typecheck_vector_lengths_not_equal)
8001 << LHS.get()->getType() << RHS.get()->getType()
8002 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8003 return QualType();
8004 }
8005 } else {
8006 // ...else expand RHS to match the number of elements in LHS.
8007 QualType VecTy =
8008 S.Context.getExtVectorType(RHSEleType, LHSVecTy->getNumElements());
8009 RHS = S.ImpCastExprToType(RHS.get(), VecTy, CK_VectorSplat);
8010 }
8011
8012 return LHSType;
8013}
8014
Chris Lattner2a3569b2008-04-07 05:30:13 +00008015// C99 6.5.7
Richard Trieue4a19fb2011-09-06 21:21:28 +00008016QualType Sema::CheckShiftOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieucfc491d2011-08-02 04:35:43 +00008017 SourceLocation Loc, unsigned Opc,
Richard Trieuba63ce62011-09-09 01:45:06 +00008018 bool IsCompAssign) {
Richard Trieuf8916e12011-09-16 00:53:10 +00008019 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8020
Nate Begemane46ee9a2009-10-25 02:26:48 +00008021 // Vector shifts promote their scalar inputs to vector type.
Richard Trieue4a19fb2011-09-06 21:21:28 +00008022 if (LHS.get()->getType()->isVectorType() ||
Sameer Sahasrabuddhea75db662015-02-25 05:48:23 +00008023 RHS.get()->getType()->isVectorType()) {
8024 if (LangOpts.OpenCL)
8025 return checkOpenCLVectorShift(*this, LHS, RHS, Loc, IsCompAssign);
Richard Trieuba63ce62011-09-09 01:45:06 +00008026 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Sameer Sahasrabuddhea75db662015-02-25 05:48:23 +00008027 }
Nate Begemane46ee9a2009-10-25 02:26:48 +00008028
Chris Lattner5c11c412007-12-12 05:47:28 +00008029 // Shifts don't perform usual arithmetic conversions, they just do integer
8030 // promotions on each operand. C99 6.5.7p3
Eli Friedman8b7b1b12009-03-28 01:22:36 +00008031
John McCall57cdd882010-12-16 19:28:59 +00008032 // For the LHS, do usual unary conversions, but then reset them away
8033 // if this is a compound assignment.
Richard Trieue4a19fb2011-09-06 21:21:28 +00008034 ExprResult OldLHS = LHS;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008035 LHS = UsualUnaryConversions(LHS.get());
Richard Trieue4a19fb2011-09-06 21:21:28 +00008036 if (LHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00008037 return QualType();
Richard Trieue4a19fb2011-09-06 21:21:28 +00008038 QualType LHSType = LHS.get()->getType();
Richard Trieuba63ce62011-09-09 01:45:06 +00008039 if (IsCompAssign) LHS = OldLHS;
John McCall57cdd882010-12-16 19:28:59 +00008040
8041 // The RHS is simpler.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008042 RHS = UsualUnaryConversions(RHS.get());
Richard Trieue4a19fb2011-09-06 21:21:28 +00008043 if (RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00008044 return QualType();
Douglas Gregor8997dac2013-04-16 15:41:08 +00008045 QualType RHSType = RHS.get()->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008046
Douglas Gregor8997dac2013-04-16 15:41:08 +00008047 // C99 6.5.7p2: Each of the operands shall have integer type.
8048 if (!LHSType->hasIntegerRepresentation() ||
8049 !RHSType->hasIntegerRepresentation())
8050 return InvalidOperands(Loc, LHS, RHS);
8051
8052 // C++0x: Don't allow scoped enums. FIXME: Use something better than
8053 // hasIntegerRepresentation() above instead of this.
8054 if (isScopedEnumerationType(LHSType) ||
8055 isScopedEnumerationType(RHSType)) {
8056 return InvalidOperands(Loc, LHS, RHS);
8057 }
Ryan Flynnf53fab82009-08-07 16:20:20 +00008058 // Sanity-check shift operands
Richard Trieue4a19fb2011-09-06 21:21:28 +00008059 DiagnoseBadShiftValues(*this, LHS, RHS, Loc, Opc, LHSType);
Ryan Flynnf53fab82009-08-07 16:20:20 +00008060
Chris Lattner5c11c412007-12-12 05:47:28 +00008061 // "The type of the result is that of the promoted left operand."
Richard Trieue4a19fb2011-09-06 21:21:28 +00008062 return LHSType;
Steve Naroff26c8ea52007-03-21 21:08:52 +00008063}
8064
Chandler Carruth17773fc2010-07-10 12:30:03 +00008065static bool IsWithinTemplateSpecialization(Decl *D) {
8066 if (DeclContext *DC = D->getDeclContext()) {
8067 if (isa<ClassTemplateSpecializationDecl>(DC))
8068 return true;
8069 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(DC))
8070 return FD->isFunctionTemplateSpecialization();
8071 }
8072 return false;
8073}
8074
Richard Trieueea56f72011-09-02 03:48:46 +00008075/// If two different enums are compared, raise a warning.
Ted Kremenekf2ca8ec2013-01-30 19:10:21 +00008076static void checkEnumComparison(Sema &S, SourceLocation Loc, Expr *LHS,
8077 Expr *RHS) {
8078 QualType LHSStrippedType = LHS->IgnoreParenImpCasts()->getType();
8079 QualType RHSStrippedType = RHS->IgnoreParenImpCasts()->getType();
Richard Trieueea56f72011-09-02 03:48:46 +00008080
8081 const EnumType *LHSEnumType = LHSStrippedType->getAs<EnumType>();
8082 if (!LHSEnumType)
8083 return;
8084 const EnumType *RHSEnumType = RHSStrippedType->getAs<EnumType>();
8085 if (!RHSEnumType)
8086 return;
8087
8088 // Ignore anonymous enums.
8089 if (!LHSEnumType->getDecl()->getIdentifier())
8090 return;
8091 if (!RHSEnumType->getDecl()->getIdentifier())
8092 return;
8093
8094 if (S.Context.hasSameUnqualifiedType(LHSStrippedType, RHSStrippedType))
8095 return;
8096
8097 S.Diag(Loc, diag::warn_comparison_of_mixed_enum_types)
8098 << LHSStrippedType << RHSStrippedType
Ted Kremenekf2ca8ec2013-01-30 19:10:21 +00008099 << LHS->getSourceRange() << RHS->getSourceRange();
Richard Trieueea56f72011-09-02 03:48:46 +00008100}
8101
Richard Trieudd82a5c2011-09-02 02:55:45 +00008102/// \brief Diagnose bad pointer comparisons.
8103static void diagnoseDistinctPointerComparison(Sema &S, SourceLocation Loc,
Richard Trieu1762d7c2011-09-06 21:27:33 +00008104 ExprResult &LHS, ExprResult &RHS,
Richard Trieuba63ce62011-09-09 01:45:06 +00008105 bool IsError) {
8106 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_distinct_pointers
Richard Trieudd82a5c2011-09-02 02:55:45 +00008107 : diag::ext_typecheck_comparison_of_distinct_pointers)
Richard Trieu1762d7c2011-09-06 21:27:33 +00008108 << LHS.get()->getType() << RHS.get()->getType()
8109 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Richard Trieudd82a5c2011-09-02 02:55:45 +00008110}
8111
8112/// \brief Returns false if the pointers are converted to a composite type,
8113/// true otherwise.
8114static bool convertPointersToCompositeType(Sema &S, SourceLocation Loc,
Richard Trieu1762d7c2011-09-06 21:27:33 +00008115 ExprResult &LHS, ExprResult &RHS) {
Richard Trieudd82a5c2011-09-02 02:55:45 +00008116 // C++ [expr.rel]p2:
8117 // [...] Pointer conversions (4.10) and qualification
8118 // conversions (4.4) are performed on pointer operands (or on
8119 // a pointer operand and a null pointer constant) to bring
8120 // them to their composite pointer type. [...]
8121 //
8122 // C++ [expr.eq]p1 uses the same notion for (in)equality
8123 // comparisons of pointers.
8124
8125 // C++ [expr.eq]p2:
8126 // In addition, pointers to members can be compared, or a pointer to
8127 // member and a null pointer constant. Pointer to member conversions
8128 // (4.11) and qualification conversions (4.4) are performed to bring
8129 // them to a common type. If one operand is a null pointer constant,
8130 // the common type is the type of the other operand. Otherwise, the
8131 // common type is a pointer to member type similar (4.4) to the type
8132 // of one of the operands, with a cv-qualification signature (4.4)
8133 // that is the union of the cv-qualification signatures of the operand
8134 // types.
8135
Richard Trieu1762d7c2011-09-06 21:27:33 +00008136 QualType LHSType = LHS.get()->getType();
8137 QualType RHSType = RHS.get()->getType();
8138 assert((LHSType->isPointerType() && RHSType->isPointerType()) ||
8139 (LHSType->isMemberPointerType() && RHSType->isMemberPointerType()));
Richard Trieudd82a5c2011-09-02 02:55:45 +00008140
8141 bool NonStandardCompositeType = false;
Craig Topperc3ec1492014-05-26 06:22:03 +00008142 bool *BoolPtr = S.isSFINAEContext() ? nullptr : &NonStandardCompositeType;
Richard Trieu1762d7c2011-09-06 21:27:33 +00008143 QualType T = S.FindCompositePointerType(Loc, LHS, RHS, BoolPtr);
Richard Trieudd82a5c2011-09-02 02:55:45 +00008144 if (T.isNull()) {
Richard Trieu1762d7c2011-09-06 21:27:33 +00008145 diagnoseDistinctPointerComparison(S, Loc, LHS, RHS, /*isError*/true);
Richard Trieudd82a5c2011-09-02 02:55:45 +00008146 return true;
8147 }
8148
8149 if (NonStandardCompositeType)
8150 S.Diag(Loc, diag::ext_typecheck_comparison_of_distinct_pointers_nonstandard)
Richard Trieu1762d7c2011-09-06 21:27:33 +00008151 << LHSType << RHSType << T << LHS.get()->getSourceRange()
8152 << RHS.get()->getSourceRange();
Richard Trieudd82a5c2011-09-02 02:55:45 +00008153
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008154 LHS = S.ImpCastExprToType(LHS.get(), T, CK_BitCast);
8155 RHS = S.ImpCastExprToType(RHS.get(), T, CK_BitCast);
Richard Trieudd82a5c2011-09-02 02:55:45 +00008156 return false;
8157}
8158
8159static void diagnoseFunctionPointerToVoidComparison(Sema &S, SourceLocation Loc,
Richard Trieu1762d7c2011-09-06 21:27:33 +00008160 ExprResult &LHS,
8161 ExprResult &RHS,
Richard Trieuba63ce62011-09-09 01:45:06 +00008162 bool IsError) {
8163 S.Diag(Loc, IsError ? diag::err_typecheck_comparison_of_fptr_to_void
8164 : diag::ext_typecheck_comparison_of_fptr_to_void)
Richard Trieu1762d7c2011-09-06 21:27:33 +00008165 << LHS.get()->getType() << RHS.get()->getType()
8166 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
Richard Trieudd82a5c2011-09-02 02:55:45 +00008167}
8168
Jordan Rosed49a33e2012-06-08 21:14:25 +00008169static bool isObjCObjectLiteral(ExprResult &E) {
Jordan Rosee2028132012-11-09 23:55:21 +00008170 switch (E.get()->IgnoreParenImpCasts()->getStmtClass()) {
Jordan Rosed49a33e2012-06-08 21:14:25 +00008171 case Stmt::ObjCArrayLiteralClass:
8172 case Stmt::ObjCDictionaryLiteralClass:
8173 case Stmt::ObjCStringLiteralClass:
8174 case Stmt::ObjCBoxedExprClass:
8175 return true;
8176 default:
8177 // Note that ObjCBoolLiteral is NOT an object literal!
8178 return false;
8179 }
8180}
8181
Jordan Rose7660f782012-07-17 17:46:40 +00008182static bool hasIsEqualMethod(Sema &S, const Expr *LHS, const Expr *RHS) {
Benjamin Kramer25c05102013-02-15 15:17:50 +00008183 const ObjCObjectPointerType *Type =
8184 LHS->getType()->getAs<ObjCObjectPointerType>();
8185
8186 // If this is not actually an Objective-C object, bail out.
8187 if (!Type)
Jordan Rose7660f782012-07-17 17:46:40 +00008188 return false;
Benjamin Kramer25c05102013-02-15 15:17:50 +00008189
8190 // Get the LHS object's interface type.
8191 QualType InterfaceType = Type->getPointeeType();
Jordan Rose7660f782012-07-17 17:46:40 +00008192
8193 // If the RHS isn't an Objective-C object, bail out.
8194 if (!RHS->getType()->isObjCObjectPointerType())
8195 return false;
8196
8197 // Try to find the -isEqual: method.
8198 Selector IsEqualSel = S.NSAPIObj->getIsEqualSelector();
8199 ObjCMethodDecl *Method = S.LookupMethodInObjectType(IsEqualSel,
8200 InterfaceType,
8201 /*instance=*/true);
8202 if (!Method) {
8203 if (Type->isObjCIdType()) {
8204 // For 'id', just check the global pool.
8205 Method = S.LookupInstanceMethodInGlobalPool(IsEqualSel, SourceRange(),
Fariborz Jahanian890803f2015-04-15 17:26:21 +00008206 /*receiverId=*/true);
Jordan Rose7660f782012-07-17 17:46:40 +00008207 } else {
8208 // Check protocols.
Benjamin Kramer25c05102013-02-15 15:17:50 +00008209 Method = S.LookupMethodInQualifiedType(IsEqualSel, Type,
Jordan Rose7660f782012-07-17 17:46:40 +00008210 /*instance=*/true);
8211 }
8212 }
8213
8214 if (!Method)
8215 return false;
8216
Alp Toker03376dc2014-07-07 09:02:20 +00008217 QualType T = Method->parameters()[0]->getType();
Jordan Rose7660f782012-07-17 17:46:40 +00008218 if (!T->isObjCObjectPointerType())
8219 return false;
Alp Toker314cc812014-01-25 16:55:45 +00008220
8221 QualType R = Method->getReturnType();
Jordan Rose7660f782012-07-17 17:46:40 +00008222 if (!R->isScalarType())
8223 return false;
8224
8225 return true;
8226}
8227
Ted Kremenek01a33f82012-12-21 21:59:36 +00008228Sema::ObjCLiteralKind Sema::CheckLiteralKind(Expr *FromE) {
8229 FromE = FromE->IgnoreParenImpCasts();
8230 switch (FromE->getStmtClass()) {
8231 default:
8232 break;
8233 case Stmt::ObjCStringLiteralClass:
8234 // "string literal"
8235 return LK_String;
8236 case Stmt::ObjCArrayLiteralClass:
8237 // "array literal"
8238 return LK_Array;
8239 case Stmt::ObjCDictionaryLiteralClass:
8240 // "dictionary literal"
8241 return LK_Dictionary;
Ted Kremenek64873352012-12-21 22:46:35 +00008242 case Stmt::BlockExprClass:
8243 return LK_Block;
Ted Kremenek01a33f82012-12-21 21:59:36 +00008244 case Stmt::ObjCBoxedExprClass: {
Ted Kremenek44c2a2a2012-12-21 21:59:39 +00008245 Expr *Inner = cast<ObjCBoxedExpr>(FromE)->getSubExpr()->IgnoreParens();
Ted Kremenek01a33f82012-12-21 21:59:36 +00008246 switch (Inner->getStmtClass()) {
8247 case Stmt::IntegerLiteralClass:
8248 case Stmt::FloatingLiteralClass:
8249 case Stmt::CharacterLiteralClass:
8250 case Stmt::ObjCBoolLiteralExprClass:
8251 case Stmt::CXXBoolLiteralExprClass:
8252 // "numeric literal"
8253 return LK_Numeric;
8254 case Stmt::ImplicitCastExprClass: {
8255 CastKind CK = cast<CastExpr>(Inner)->getCastKind();
8256 // Boolean literals can be represented by implicit casts.
8257 if (CK == CK_IntegralToBoolean || CK == CK_IntegralCast)
8258 return LK_Numeric;
8259 break;
8260 }
8261 default:
8262 break;
8263 }
8264 return LK_Boxed;
8265 }
8266 }
8267 return LK_None;
8268}
8269
Jordan Rose7660f782012-07-17 17:46:40 +00008270static void diagnoseObjCLiteralComparison(Sema &S, SourceLocation Loc,
8271 ExprResult &LHS, ExprResult &RHS,
8272 BinaryOperator::Opcode Opc){
Jordan Rose63ffaa82012-07-17 17:46:48 +00008273 Expr *Literal;
8274 Expr *Other;
8275 if (isObjCObjectLiteral(LHS)) {
8276 Literal = LHS.get();
8277 Other = RHS.get();
8278 } else {
8279 Literal = RHS.get();
8280 Other = LHS.get();
8281 }
8282
8283 // Don't warn on comparisons against nil.
8284 Other = Other->IgnoreParenCasts();
8285 if (Other->isNullPointerConstant(S.getASTContext(),
8286 Expr::NPC_ValueDependentIsNotNull))
8287 return;
Jordan Rosed49a33e2012-06-08 21:14:25 +00008288
Jordan Roseea70bf72012-07-17 17:46:44 +00008289 // This should be kept in sync with warn_objc_literal_comparison.
Ted Kremenek01a33f82012-12-21 21:59:36 +00008290 // LK_String should always be after the other literals, since it has its own
8291 // warning flag.
8292 Sema::ObjCLiteralKind LiteralKind = S.CheckLiteralKind(Literal);
Ted Kremenek64873352012-12-21 22:46:35 +00008293 assert(LiteralKind != Sema::LK_Block);
Ted Kremenek01a33f82012-12-21 21:59:36 +00008294 if (LiteralKind == Sema::LK_None) {
Jordan Rosed49a33e2012-06-08 21:14:25 +00008295 llvm_unreachable("Unknown Objective-C object literal kind");
8296 }
8297
Ted Kremenek01a33f82012-12-21 21:59:36 +00008298 if (LiteralKind == Sema::LK_String)
Jordan Roseea70bf72012-07-17 17:46:44 +00008299 S.Diag(Loc, diag::warn_objc_string_literal_comparison)
8300 << Literal->getSourceRange();
8301 else
8302 S.Diag(Loc, diag::warn_objc_literal_comparison)
8303 << LiteralKind << Literal->getSourceRange();
Jordan Rosed49a33e2012-06-08 21:14:25 +00008304
Jordan Rose7660f782012-07-17 17:46:40 +00008305 if (BinaryOperator::isEqualityOp(Opc) &&
8306 hasIsEqualMethod(S, LHS.get(), RHS.get())) {
8307 SourceLocation Start = LHS.get()->getLocStart();
8308 SourceLocation End = S.PP.getLocForEndOfToken(RHS.get()->getLocEnd());
Fariborz Jahanian4dca1d32013-02-01 20:04:49 +00008309 CharSourceRange OpRange =
8310 CharSourceRange::getCharRange(Loc, S.PP.getLocForEndOfToken(Loc));
Jordan Rosef9198032012-07-09 16:54:44 +00008311
Jordan Rose7660f782012-07-17 17:46:40 +00008312 S.Diag(Loc, diag::note_objc_literal_comparison_isequal)
8313 << FixItHint::CreateInsertion(Start, Opc == BO_EQ ? "[" : "![")
Fariborz Jahanian4dca1d32013-02-01 20:04:49 +00008314 << FixItHint::CreateReplacement(OpRange, " isEqual:")
Jordan Rose7660f782012-07-17 17:46:40 +00008315 << FixItHint::CreateInsertion(End, "]");
Jordan Rosed49a33e2012-06-08 21:14:25 +00008316 }
Jordan Rosed49a33e2012-06-08 21:14:25 +00008317}
8318
Richard Trieubb4b8942013-06-10 18:52:07 +00008319static void diagnoseLogicalNotOnLHSofComparison(Sema &S, ExprResult &LHS,
8320 ExprResult &RHS,
8321 SourceLocation Loc,
8322 unsigned OpaqueOpc) {
8323 // This checking requires bools.
8324 if (!S.getLangOpts().Bool) return;
8325
8326 // Check that left hand side is !something.
Richard Trieu949abc32013-07-04 00:50:18 +00008327 UnaryOperator *UO = dyn_cast<UnaryOperator>(LHS.get()->IgnoreImpCasts());
Richard Trieubb4b8942013-06-10 18:52:07 +00008328 if (!UO || UO->getOpcode() != UO_LNot) return;
8329
8330 // Only check if the right hand side is non-bool arithmetic type.
8331 if (RHS.get()->getType()->isBooleanType()) return;
8332
8333 // Make sure that the something in !something is not bool.
8334 Expr *SubExpr = UO->getSubExpr()->IgnoreImpCasts();
8335 if (SubExpr->getType()->isBooleanType()) return;
8336
8337 // Emit warning.
8338 S.Diag(UO->getOperatorLoc(), diag::warn_logical_not_on_lhs_of_comparison)
8339 << Loc;
8340
8341 // First note suggest !(x < y)
8342 SourceLocation FirstOpen = SubExpr->getLocStart();
8343 SourceLocation FirstClose = RHS.get()->getLocEnd();
8344 FirstClose = S.getPreprocessor().getLocForEndOfToken(FirstClose);
Eli Friedmanef0b4a32013-07-22 23:09:39 +00008345 if (FirstClose.isInvalid())
8346 FirstOpen = SourceLocation();
Richard Trieubb4b8942013-06-10 18:52:07 +00008347 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_fix)
8348 << FixItHint::CreateInsertion(FirstOpen, "(")
8349 << FixItHint::CreateInsertion(FirstClose, ")");
8350
8351 // Second note suggests (!x) < y
8352 SourceLocation SecondOpen = LHS.get()->getLocStart();
8353 SourceLocation SecondClose = LHS.get()->getLocEnd();
8354 SecondClose = S.getPreprocessor().getLocForEndOfToken(SecondClose);
Eli Friedmanef0b4a32013-07-22 23:09:39 +00008355 if (SecondClose.isInvalid())
8356 SecondOpen = SourceLocation();
Richard Trieubb4b8942013-06-10 18:52:07 +00008357 S.Diag(UO->getOperatorLoc(), diag::note_logical_not_silence_with_parens)
8358 << FixItHint::CreateInsertion(SecondOpen, "(")
8359 << FixItHint::CreateInsertion(SecondClose, ")");
8360}
8361
Eli Friedman5a722e92013-09-06 03:13:09 +00008362// Get the decl for a simple expression: a reference to a variable,
8363// an implicit C++ field reference, or an implicit ObjC ivar reference.
8364static ValueDecl *getCompareDecl(Expr *E) {
8365 if (DeclRefExpr* DR = dyn_cast<DeclRefExpr>(E))
8366 return DR->getDecl();
8367 if (ObjCIvarRefExpr* Ivar = dyn_cast<ObjCIvarRefExpr>(E)) {
8368 if (Ivar->isFreeIvar())
8369 return Ivar->getDecl();
8370 }
8371 if (MemberExpr* Mem = dyn_cast<MemberExpr>(E)) {
8372 if (Mem->isImplicitAccess())
8373 return Mem->getMemberDecl();
8374 }
Craig Topperc3ec1492014-05-26 06:22:03 +00008375 return nullptr;
Eli Friedman5a722e92013-09-06 03:13:09 +00008376}
8377
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00008378// C99 6.5.8, C++ [expr.rel]
Richard Trieub80728f2011-09-06 21:43:51 +00008379QualType Sema::CheckCompareOperands(ExprResult &LHS, ExprResult &RHS,
Richard Trieucfc491d2011-08-02 04:35:43 +00008380 SourceLocation Loc, unsigned OpaqueOpc,
Richard Trieuba63ce62011-09-09 01:45:06 +00008381 bool IsRelational) {
Richard Trieuf8916e12011-09-16 00:53:10 +00008382 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/true);
8383
John McCalle3027922010-08-25 11:45:40 +00008384 BinaryOperatorKind Opc = (BinaryOperatorKind) OpaqueOpc;
Douglas Gregor7a5bc762009-04-06 18:45:53 +00008385
Chris Lattner9a152e22009-12-05 05:40:13 +00008386 // Handle vector comparisons separately.
Richard Trieub80728f2011-09-06 21:43:51 +00008387 if (LHS.get()->getType()->isVectorType() ||
8388 RHS.get()->getType()->isVectorType())
Richard Trieuba63ce62011-09-09 01:45:06 +00008389 return CheckVectorCompareOperands(LHS, RHS, Loc, IsRelational);
Mike Stump4e1f26a2009-02-19 03:04:26 +00008390
Richard Trieub80728f2011-09-06 21:43:51 +00008391 QualType LHSType = LHS.get()->getType();
8392 QualType RHSType = RHS.get()->getType();
Benjamin Kramera66aaa92011-09-03 08:46:20 +00008393
Richard Trieub80728f2011-09-06 21:43:51 +00008394 Expr *LHSStripped = LHS.get()->IgnoreParenImpCasts();
8395 Expr *RHSStripped = RHS.get()->IgnoreParenImpCasts();
Chandler Carruth712563b2011-02-17 08:37:06 +00008396
Ted Kremenekf2ca8ec2013-01-30 19:10:21 +00008397 checkEnumComparison(*this, Loc, LHS.get(), RHS.get());
Richard Trieubb4b8942013-06-10 18:52:07 +00008398 diagnoseLogicalNotOnLHSofComparison(*this, LHS, RHS, Loc, OpaqueOpc);
Chandler Carruth712563b2011-02-17 08:37:06 +00008399
Richard Trieub80728f2011-09-06 21:43:51 +00008400 if (!LHSType->hasFloatingRepresentation() &&
Richard Trieuba63ce62011-09-09 01:45:06 +00008401 !(LHSType->isBlockPointerType() && IsRelational) &&
Richard Trieub80728f2011-09-06 21:43:51 +00008402 !LHS.get()->getLocStart().isMacroID() &&
Richard Trieu30bfa362013-11-02 02:11:23 +00008403 !RHS.get()->getLocStart().isMacroID() &&
8404 ActiveTemplateInstantiations.empty()) {
Chris Lattner222b8bd2009-03-08 19:39:53 +00008405 // For non-floating point types, check for self-comparisons of the form
8406 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
8407 // often indicate logic errors in the program.
Chandler Carruth65a38182010-07-12 06:23:38 +00008408 //
8409 // NOTE: Don't warn about comparison expressions resulting from macro
8410 // expansion. Also don't warn about comparisons which are only self
8411 // comparisons within a template specialization. The warnings should catch
8412 // obvious cases in the definition of the template anyways. The idea is to
8413 // warn when the typed comparison operator will always evaluate to the same
8414 // result.
Eli Friedman5a722e92013-09-06 03:13:09 +00008415 ValueDecl *DL = getCompareDecl(LHSStripped);
8416 ValueDecl *DR = getCompareDecl(RHSStripped);
8417 if (DL && DR && DL == DR && !IsWithinTemplateSpecialization(DL)) {
Craig Topperc3ec1492014-05-26 06:22:03 +00008418 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
Eli Friedman5a722e92013-09-06 03:13:09 +00008419 << 0 // self-
8420 << (Opc == BO_EQ
8421 || Opc == BO_LE
8422 || Opc == BO_GE));
8423 } else if (DL && DR && LHSType->isArrayType() && RHSType->isArrayType() &&
8424 !DL->getType()->isReferenceType() &&
8425 !DR->getType()->isReferenceType()) {
8426 // what is it always going to eval to?
8427 char always_evals_to;
8428 switch(Opc) {
8429 case BO_EQ: // e.g. array1 == array2
8430 always_evals_to = 0; // false
8431 break;
8432 case BO_NE: // e.g. array1 != array2
8433 always_evals_to = 1; // true
8434 break;
8435 default:
8436 // best we can say is 'a constant'
8437 always_evals_to = 2; // e.g. array1 <= array2
8438 break;
Douglas Gregorec170db2010-06-08 19:50:34 +00008439 }
Craig Topperc3ec1492014-05-26 06:22:03 +00008440 DiagRuntimeBehavior(Loc, nullptr, PDiag(diag::warn_comparison_always)
Eli Friedman5a722e92013-09-06 03:13:09 +00008441 << 1 // array
8442 << always_evals_to);
Chandler Carruth17773fc2010-07-10 12:30:03 +00008443 }
Mike Stump11289f42009-09-09 15:08:12 +00008444
Chris Lattner222b8bd2009-03-08 19:39:53 +00008445 if (isa<CastExpr>(LHSStripped))
8446 LHSStripped = LHSStripped->IgnoreParenCasts();
8447 if (isa<CastExpr>(RHSStripped))
8448 RHSStripped = RHSStripped->IgnoreParenCasts();
Mike Stump11289f42009-09-09 15:08:12 +00008449
Chris Lattner222b8bd2009-03-08 19:39:53 +00008450 // Warn about comparisons against a string constant (unless the other
8451 // operand is null), the user probably wants strcmp.
Craig Topperc3ec1492014-05-26 06:22:03 +00008452 Expr *literalString = nullptr;
8453 Expr *literalStringStripped = nullptr;
Chris Lattner222b8bd2009-03-08 19:39:53 +00008454 if ((isa<StringLiteral>(LHSStripped) || isa<ObjCEncodeExpr>(LHSStripped)) &&
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00008455 !RHSStripped->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00008456 Expr::NPC_ValueDependentIsNull)) {
Richard Trieub80728f2011-09-06 21:43:51 +00008457 literalString = LHS.get();
Douglas Gregor7a5bc762009-04-06 18:45:53 +00008458 literalStringStripped = LHSStripped;
Mike Stump12b8ce12009-08-04 21:02:39 +00008459 } else if ((isa<StringLiteral>(RHSStripped) ||
8460 isa<ObjCEncodeExpr>(RHSStripped)) &&
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00008461 !LHSStripped->isNullPointerConstant(Context,
Douglas Gregor56751b52009-09-25 04:25:58 +00008462 Expr::NPC_ValueDependentIsNull)) {
Richard Trieub80728f2011-09-06 21:43:51 +00008463 literalString = RHS.get();
Douglas Gregor7a5bc762009-04-06 18:45:53 +00008464 literalStringStripped = RHSStripped;
8465 }
8466
8467 if (literalString) {
Craig Topperc3ec1492014-05-26 06:22:03 +00008468 DiagRuntimeBehavior(Loc, nullptr,
Douglas Gregor49862b82010-01-12 23:18:54 +00008469 PDiag(diag::warn_stringcompare)
8470 << isa<ObjCEncodeExpr>(literalStringStripped)
Ted Kremenek800b66b2010-04-09 20:26:53 +00008471 << literalString->getSourceRange());
Douglas Gregor7a5bc762009-04-06 18:45:53 +00008472 }
Ted Kremeneke451eae2007-10-29 16:58:49 +00008473 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00008474
Douglas Gregorec170db2010-06-08 19:50:34 +00008475 // C99 6.5.8p3 / C99 6.5.9p4
Eli Friedmane6d33952013-07-08 20:20:06 +00008476 UsualArithmeticConversions(LHS, RHS);
8477 if (LHS.isInvalid() || RHS.isInvalid())
8478 return QualType();
Douglas Gregorec170db2010-06-08 19:50:34 +00008479
Richard Trieub80728f2011-09-06 21:43:51 +00008480 LHSType = LHS.get()->getType();
8481 RHSType = RHS.get()->getType();
Douglas Gregorec170db2010-06-08 19:50:34 +00008482
Douglas Gregorca63811b2008-11-19 03:25:36 +00008483 // The result of comparisons is 'bool' in C++, 'int' in C.
Argyrios Kyrtzidis1bdd6882011-02-18 20:55:15 +00008484 QualType ResultTy = Context.getLogicalOperationType();
Douglas Gregorca63811b2008-11-19 03:25:36 +00008485
Richard Trieuba63ce62011-09-09 01:45:06 +00008486 if (IsRelational) {
Richard Trieub80728f2011-09-06 21:43:51 +00008487 if (LHSType->isRealType() && RHSType->isRealType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00008488 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00008489 } else {
Ted Kremeneke2763b02007-10-29 17:13:39 +00008490 // Check for comparisons of floating point operands using != and ==.
Richard Trieub80728f2011-09-06 21:43:51 +00008491 if (LHSType->hasFloatingRepresentation())
8492 CheckFloatComparison(Loc, LHS.get(), RHS.get());
Mike Stump4e1f26a2009-02-19 03:04:26 +00008493
Richard Trieub80728f2011-09-06 21:43:51 +00008494 if (LHSType->isArithmeticType() && RHSType->isArithmeticType())
Douglas Gregorca63811b2008-11-19 03:25:36 +00008495 return ResultTy;
Chris Lattnerb620c342007-08-26 01:18:55 +00008496 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00008497
Richard Trieu3bb8b562014-02-26 02:36:06 +00008498 const Expr::NullPointerConstantKind LHSNullKind =
8499 LHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
8500 const Expr::NullPointerConstantKind RHSNullKind =
8501 RHS.get()->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull);
8502 bool LHSIsNull = LHSNullKind != Expr::NPCK_NotNull;
8503 bool RHSIsNull = RHSNullKind != Expr::NPCK_NotNull;
8504
8505 if (!IsRelational && LHSIsNull != RHSIsNull) {
8506 bool IsEquality = Opc == BO_EQ;
8507 if (RHSIsNull)
8508 DiagnoseAlwaysNonNullPointer(LHS.get(), RHSNullKind, IsEquality,
8509 RHS.get()->getSourceRange());
8510 else
8511 DiagnoseAlwaysNonNullPointer(RHS.get(), LHSNullKind, IsEquality,
8512 LHS.get()->getSourceRange());
8513 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00008514
Douglas Gregorf267edd2010-06-15 21:38:40 +00008515 // All of the following pointer-related warnings are GCC extensions, except
8516 // when handling null pointer constants.
Richard Trieub80728f2011-09-06 21:43:51 +00008517 if (LHSType->isPointerType() && RHSType->isPointerType()) { // C99 6.5.8p2
Chris Lattner3a0702e2008-04-03 05:07:25 +00008518 QualType LCanPointeeTy =
John McCall9320b872011-09-09 05:25:32 +00008519 LHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
Chris Lattner3a0702e2008-04-03 05:07:25 +00008520 QualType RCanPointeeTy =
John McCall9320b872011-09-09 05:25:32 +00008521 RHSType->castAs<PointerType>()->getPointeeType().getCanonicalType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008522
David Blaikiebbafb8a2012-03-11 07:00:24 +00008523 if (getLangOpts().CPlusPlus) {
Eli Friedman16c209612009-08-23 00:27:47 +00008524 if (LCanPointeeTy == RCanPointeeTy)
8525 return ResultTy;
Richard Trieuba63ce62011-09-09 01:45:06 +00008526 if (!IsRelational &&
Fariborz Jahanianffc420c2009-12-21 18:19:17 +00008527 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
8528 // Valid unless comparison between non-null pointer and function pointer
8529 // This is a gcc extension compatibility comparison.
Douglas Gregorf267edd2010-06-15 21:38:40 +00008530 // In a SFINAE context, we treat this as a hard error to maintain
8531 // conformance with the C++ standard.
Fariborz Jahanianffc420c2009-12-21 18:19:17 +00008532 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
8533 && !LHSIsNull && !RHSIsNull) {
Richard Trieudd82a5c2011-09-02 02:55:45 +00008534 diagnoseFunctionPointerToVoidComparison(
David Blaikie3a3c4e02013-02-21 06:05:05 +00008535 *this, Loc, LHS, RHS, /*isError*/ (bool)isSFINAEContext());
Douglas Gregorf267edd2010-06-15 21:38:40 +00008536
8537 if (isSFINAEContext())
8538 return QualType();
8539
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008540 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
Fariborz Jahanianffc420c2009-12-21 18:19:17 +00008541 return ResultTy;
8542 }
8543 }
Anders Carlssona95069c2010-11-04 03:17:43 +00008544
Richard Trieub80728f2011-09-06 21:43:51 +00008545 if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00008546 return QualType();
Richard Trieudd82a5c2011-09-02 02:55:45 +00008547 else
8548 return ResultTy;
Douglas Gregor5b07c7e2009-05-04 06:07:12 +00008549 }
Eli Friedman16c209612009-08-23 00:27:47 +00008550 // C99 6.5.9p2 and C99 6.5.8p2
8551 if (Context.typesAreCompatible(LCanPointeeTy.getUnqualifiedType(),
8552 RCanPointeeTy.getUnqualifiedType())) {
8553 // Valid unless a relational comparison of function pointers
Richard Trieuba63ce62011-09-09 01:45:06 +00008554 if (IsRelational && LCanPointeeTy->isFunctionType()) {
Eli Friedman16c209612009-08-23 00:27:47 +00008555 Diag(Loc, diag::ext_typecheck_ordered_comparison_of_function_pointers)
Richard Trieub80728f2011-09-06 21:43:51 +00008556 << LHSType << RHSType << LHS.get()->getSourceRange()
8557 << RHS.get()->getSourceRange();
Eli Friedman16c209612009-08-23 00:27:47 +00008558 }
Richard Trieuba63ce62011-09-09 01:45:06 +00008559 } else if (!IsRelational &&
Eli Friedman16c209612009-08-23 00:27:47 +00008560 (LCanPointeeTy->isVoidType() || RCanPointeeTy->isVoidType())) {
8561 // Valid unless comparison between non-null pointer and function pointer
8562 if ((LCanPointeeTy->isFunctionType() || RCanPointeeTy->isFunctionType())
Richard Trieudd82a5c2011-09-02 02:55:45 +00008563 && !LHSIsNull && !RHSIsNull)
Richard Trieub80728f2011-09-06 21:43:51 +00008564 diagnoseFunctionPointerToVoidComparison(*this, Loc, LHS, RHS,
Richard Trieudd82a5c2011-09-02 02:55:45 +00008565 /*isError*/false);
Eli Friedman16c209612009-08-23 00:27:47 +00008566 } else {
8567 // Invalid
Richard Trieub80728f2011-09-06 21:43:51 +00008568 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS, /*isError*/false);
Steve Naroff75c17232007-06-13 21:41:08 +00008569 }
John McCall7684dde2011-03-11 04:25:25 +00008570 if (LCanPointeeTy != RCanPointeeTy) {
Anastasia Stulova5d8ad8a2014-11-26 15:36:41 +00008571 const PointerType *lhsPtr = LHSType->getAs<PointerType>();
8572 if (!lhsPtr->isAddressSpaceOverlapping(*RHSType->getAs<PointerType>())) {
8573 Diag(Loc,
8574 diag::err_typecheck_op_on_nonoverlapping_address_space_pointers)
8575 << LHSType << RHSType << 0 /* comparison */
8576 << LHS.get()->getSourceRange() << RHS.get()->getSourceRange();
8577 }
David Tweede1468322013-12-11 13:39:46 +00008578 unsigned AddrSpaceL = LCanPointeeTy.getAddressSpace();
8579 unsigned AddrSpaceR = RCanPointeeTy.getAddressSpace();
8580 CastKind Kind = AddrSpaceL != AddrSpaceR ? CK_AddressSpaceConversion
8581 : CK_BitCast;
John McCall7684dde2011-03-11 04:25:25 +00008582 if (LHSIsNull && !RHSIsNull)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008583 LHS = ImpCastExprToType(LHS.get(), RHSType, Kind);
John McCall7684dde2011-03-11 04:25:25 +00008584 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008585 RHS = ImpCastExprToType(RHS.get(), LHSType, Kind);
John McCall7684dde2011-03-11 04:25:25 +00008586 }
Douglas Gregorca63811b2008-11-19 03:25:36 +00008587 return ResultTy;
Steve Naroffcdee44c2007-08-16 21:48:38 +00008588 }
Mike Stump11289f42009-09-09 15:08:12 +00008589
David Blaikiebbafb8a2012-03-11 07:00:24 +00008590 if (getLangOpts().CPlusPlus) {
Anders Carlssona95069c2010-11-04 03:17:43 +00008591 // Comparison of nullptr_t with itself.
Richard Trieub80728f2011-09-06 21:43:51 +00008592 if (LHSType->isNullPtrType() && RHSType->isNullPtrType())
Anders Carlssona95069c2010-11-04 03:17:43 +00008593 return ResultTy;
8594
Mike Stump11289f42009-09-09 15:08:12 +00008595 // Comparison of pointers with null pointer constants and equality
Douglas Gregorb00b10e2009-08-24 17:42:35 +00008596 // comparisons of member pointers to null pointer constants.
Mike Stump11289f42009-09-09 15:08:12 +00008597 if (RHSIsNull &&
Richard Trieub80728f2011-09-06 21:43:51 +00008598 ((LHSType->isAnyPointerType() || LHSType->isNullPtrType()) ||
Richard Trieuba63ce62011-09-09 01:45:06 +00008599 (!IsRelational &&
Richard Trieub80728f2011-09-06 21:43:51 +00008600 (LHSType->isMemberPointerType() || LHSType->isBlockPointerType())))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008601 RHS = ImpCastExprToType(RHS.get(), LHSType,
Richard Trieub80728f2011-09-06 21:43:51 +00008602 LHSType->isMemberPointerType()
John McCalle3027922010-08-25 11:45:40 +00008603 ? CK_NullToMemberPointer
John McCalle84af4e2010-11-13 01:35:44 +00008604 : CK_NullToPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00008605 return ResultTy;
8606 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00008607 if (LHSIsNull &&
Richard Trieub80728f2011-09-06 21:43:51 +00008608 ((RHSType->isAnyPointerType() || RHSType->isNullPtrType()) ||
Richard Trieuba63ce62011-09-09 01:45:06 +00008609 (!IsRelational &&
Richard Trieub80728f2011-09-06 21:43:51 +00008610 (RHSType->isMemberPointerType() || RHSType->isBlockPointerType())))) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008611 LHS = ImpCastExprToType(LHS.get(), RHSType,
Richard Trieub80728f2011-09-06 21:43:51 +00008612 RHSType->isMemberPointerType()
John McCalle3027922010-08-25 11:45:40 +00008613 ? CK_NullToMemberPointer
John McCalle84af4e2010-11-13 01:35:44 +00008614 : CK_NullToPointer);
Sebastian Redl576fd422009-05-10 18:38:11 +00008615 return ResultTy;
8616 }
Douglas Gregorb00b10e2009-08-24 17:42:35 +00008617
8618 // Comparison of member pointers.
Richard Trieuba63ce62011-09-09 01:45:06 +00008619 if (!IsRelational &&
Richard Trieub80728f2011-09-06 21:43:51 +00008620 LHSType->isMemberPointerType() && RHSType->isMemberPointerType()) {
8621 if (convertPointersToCompositeType(*this, Loc, LHS, RHS))
Douglas Gregorb00b10e2009-08-24 17:42:35 +00008622 return QualType();
Richard Trieudd82a5c2011-09-02 02:55:45 +00008623 else
8624 return ResultTy;
Douglas Gregorb00b10e2009-08-24 17:42:35 +00008625 }
Douglas Gregor48e6bbf2011-03-01 17:16:20 +00008626
8627 // Handle scoped enumeration types specifically, since they don't promote
8628 // to integers.
Richard Trieub80728f2011-09-06 21:43:51 +00008629 if (LHS.get()->getType()->isEnumeralType() &&
8630 Context.hasSameUnqualifiedType(LHS.get()->getType(),
8631 RHS.get()->getType()))
Douglas Gregor48e6bbf2011-03-01 17:16:20 +00008632 return ResultTy;
Sebastian Redl576fd422009-05-10 18:38:11 +00008633 }
Mike Stump11289f42009-09-09 15:08:12 +00008634
Steve Naroff081c7422008-09-04 15:10:53 +00008635 // Handle block pointer types.
Richard Trieuba63ce62011-09-09 01:45:06 +00008636 if (!IsRelational && LHSType->isBlockPointerType() &&
Richard Trieub80728f2011-09-06 21:43:51 +00008637 RHSType->isBlockPointerType()) {
John McCall9320b872011-09-09 05:25:32 +00008638 QualType lpointee = LHSType->castAs<BlockPointerType>()->getPointeeType();
8639 QualType rpointee = RHSType->castAs<BlockPointerType>()->getPointeeType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008640
Steve Naroff081c7422008-09-04 15:10:53 +00008641 if (!LHSIsNull && !RHSIsNull &&
Eli Friedmana6638ca2009-06-08 05:08:54 +00008642 !Context.typesAreCompatible(lpointee, rpointee)) {
Chris Lattner377d1f82008-11-18 22:52:51 +00008643 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Richard Trieub80728f2011-09-06 21:43:51 +00008644 << LHSType << RHSType << LHS.get()->getSourceRange()
8645 << RHS.get()->getSourceRange();
Steve Naroff081c7422008-09-04 15:10:53 +00008646 }
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008647 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008648 return ResultTy;
Steve Naroff081c7422008-09-04 15:10:53 +00008649 }
John Wiegley01296292011-04-08 18:41:53 +00008650
Steve Naroffe18f94c2008-09-28 01:11:11 +00008651 // Allow block pointers to be compared with null pointer constants.
Richard Trieuba63ce62011-09-09 01:45:06 +00008652 if (!IsRelational
Richard Trieub80728f2011-09-06 21:43:51 +00008653 && ((LHSType->isBlockPointerType() && RHSType->isPointerType())
8654 || (LHSType->isPointerType() && RHSType->isBlockPointerType()))) {
Steve Naroffe18f94c2008-09-28 01:11:11 +00008655 if (!LHSIsNull && !RHSIsNull) {
Richard Trieub80728f2011-09-06 21:43:51 +00008656 if (!((RHSType->isPointerType() && RHSType->castAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00008657 ->getPointeeType()->isVoidType())
Richard Trieub80728f2011-09-06 21:43:51 +00008658 || (LHSType->isPointerType() && LHSType->castAs<PointerType>()
Mike Stump1b821b42009-05-07 03:14:14 +00008659 ->getPointeeType()->isVoidType())))
8660 Diag(Loc, diag::err_typecheck_comparison_of_distinct_blocks)
Richard Trieub80728f2011-09-06 21:43:51 +00008661 << LHSType << RHSType << LHS.get()->getSourceRange()
8662 << RHS.get()->getSourceRange();
Steve Naroffe18f94c2008-09-28 01:11:11 +00008663 }
John McCall7684dde2011-03-11 04:25:25 +00008664 if (LHSIsNull && !RHSIsNull)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008665 LHS = ImpCastExprToType(LHS.get(), RHSType,
John McCall9320b872011-09-09 05:25:32 +00008666 RHSType->isPointerType() ? CK_BitCast
8667 : CK_AnyPointerToBlockPointerCast);
John McCall7684dde2011-03-11 04:25:25 +00008668 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008669 RHS = ImpCastExprToType(RHS.get(), LHSType,
John McCall9320b872011-09-09 05:25:32 +00008670 LHSType->isPointerType() ? CK_BitCast
8671 : CK_AnyPointerToBlockPointerCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008672 return ResultTy;
Steve Naroffe18f94c2008-09-28 01:11:11 +00008673 }
Steve Naroff081c7422008-09-04 15:10:53 +00008674
Richard Trieub80728f2011-09-06 21:43:51 +00008675 if (LHSType->isObjCObjectPointerType() ||
8676 RHSType->isObjCObjectPointerType()) {
8677 const PointerType *LPT = LHSType->getAs<PointerType>();
8678 const PointerType *RPT = RHSType->getAs<PointerType>();
John McCall7684dde2011-03-11 04:25:25 +00008679 if (LPT || RPT) {
8680 bool LPtrToVoid = LPT ? LPT->getPointeeType()->isVoidType() : false;
8681 bool RPtrToVoid = RPT ? RPT->getPointeeType()->isVoidType() : false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00008682
Steve Naroff753567f2008-11-17 19:49:16 +00008683 if (!LPtrToVoid && !RPtrToVoid &&
Richard Trieub80728f2011-09-06 21:43:51 +00008684 !Context.typesAreCompatible(LHSType, RHSType)) {
8685 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
Richard Trieudd82a5c2011-09-02 02:55:45 +00008686 /*isError*/false);
Steve Naroff1d4a9a32008-10-27 10:33:19 +00008687 }
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008688 if (LHSIsNull && !RHSIsNull) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008689 Expr *E = LHS.get();
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008690 if (getLangOpts().ObjCAutoRefCount)
8691 CheckObjCARCConversion(SourceRange(), RHSType, E, CCK_ImplicitConversion);
8692 LHS = ImpCastExprToType(E, RHSType,
John McCall9320b872011-09-09 05:25:32 +00008693 RPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008694 }
8695 else {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008696 Expr *E = RHS.get();
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008697 if (getLangOpts().ObjCAutoRefCount)
Fariborz Jahanianc03ef572014-06-18 23:52:49 +00008698 CheckObjCARCConversion(SourceRange(), LHSType, E, CCK_ImplicitConversion, false,
8699 Opc);
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008700 RHS = ImpCastExprToType(E, LHSType,
John McCall9320b872011-09-09 05:25:32 +00008701 LPT ? CK_BitCast :CK_CPointerToObjCPointerCast);
Fariborz Jahanian374089e2013-07-31 17:12:26 +00008702 }
Douglas Gregorca63811b2008-11-19 03:25:36 +00008703 return ResultTy;
Steve Naroffea54d9e2008-10-20 18:19:10 +00008704 }
Richard Trieub80728f2011-09-06 21:43:51 +00008705 if (LHSType->isObjCObjectPointerType() &&
8706 RHSType->isObjCObjectPointerType()) {
8707 if (!Context.areComparableObjCPointerTypes(LHSType, RHSType))
8708 diagnoseDistinctPointerComparison(*this, Loc, LHS, RHS,
Richard Trieudd82a5c2011-09-02 02:55:45 +00008709 /*isError*/false);
Jordan Rosed49a33e2012-06-08 21:14:25 +00008710 if (isObjCObjectLiteral(LHS) || isObjCObjectLiteral(RHS))
Jordan Rose7660f782012-07-17 17:46:40 +00008711 diagnoseObjCLiteralComparison(*this, Loc, LHS, RHS, Opc);
Jordan Rosed49a33e2012-06-08 21:14:25 +00008712
John McCall7684dde2011-03-11 04:25:25 +00008713 if (LHSIsNull && !RHSIsNull)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008714 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_BitCast);
John McCall7684dde2011-03-11 04:25:25 +00008715 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008716 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_BitCast);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008717 return ResultTy;
Steve Naroffb788d9b2008-06-03 14:04:54 +00008718 }
Fariborz Jahanian134cbef2007-12-20 01:06:58 +00008719 }
Richard Trieub80728f2011-09-06 21:43:51 +00008720 if ((LHSType->isAnyPointerType() && RHSType->isIntegerType()) ||
8721 (LHSType->isIntegerType() && RHSType->isAnyPointerType())) {
Chris Lattnerd99bd522009-08-23 00:03:44 +00008722 unsigned DiagID = 0;
Douglas Gregorf267edd2010-06-15 21:38:40 +00008723 bool isError = false;
Douglas Gregor0064c592012-09-14 04:35:37 +00008724 if (LangOpts.DebuggerSupport) {
8725 // Under a debugger, allow the comparison of pointers to integers,
8726 // since users tend to want to compare addresses.
8727 } else if ((LHSIsNull && LHSType->isIntegerType()) ||
Richard Trieub80728f2011-09-06 21:43:51 +00008728 (RHSIsNull && RHSType->isIntegerType())) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00008729 if (IsRelational && !getLangOpts().CPlusPlus)
Chris Lattnerd99bd522009-08-23 00:03:44 +00008730 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_and_zero;
David Blaikiebbafb8a2012-03-11 07:00:24 +00008731 } else if (IsRelational && !getLangOpts().CPlusPlus)
Chris Lattnerd99bd522009-08-23 00:03:44 +00008732 DiagID = diag::ext_typecheck_ordered_comparison_of_pointer_integer;
David Blaikiebbafb8a2012-03-11 07:00:24 +00008733 else if (getLangOpts().CPlusPlus) {
Douglas Gregorf267edd2010-06-15 21:38:40 +00008734 DiagID = diag::err_typecheck_comparison_of_pointer_integer;
8735 isError = true;
8736 } else
Chris Lattnerd99bd522009-08-23 00:03:44 +00008737 DiagID = diag::ext_typecheck_comparison_of_pointer_integer;
Mike Stump11289f42009-09-09 15:08:12 +00008738
Chris Lattnerd99bd522009-08-23 00:03:44 +00008739 if (DiagID) {
Chris Lattnerf8344db2009-08-22 18:58:31 +00008740 Diag(Loc, DiagID)
Richard Trieub80728f2011-09-06 21:43:51 +00008741 << LHSType << RHSType << LHS.get()->getSourceRange()
8742 << RHS.get()->getSourceRange();
Douglas Gregorf267edd2010-06-15 21:38:40 +00008743 if (isError)
8744 return QualType();
Chris Lattnerf8344db2009-08-22 18:58:31 +00008745 }
Douglas Gregorf267edd2010-06-15 21:38:40 +00008746
Richard Trieub80728f2011-09-06 21:43:51 +00008747 if (LHSType->isIntegerType())
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008748 LHS = ImpCastExprToType(LHS.get(), RHSType,
John McCalle84af4e2010-11-13 01:35:44 +00008749 LHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Chris Lattnerd99bd522009-08-23 00:03:44 +00008750 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008751 RHS = ImpCastExprToType(RHS.get(), LHSType,
John McCalle84af4e2010-11-13 01:35:44 +00008752 RHSIsNull ? CK_NullToPointer : CK_IntegralToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008753 return ResultTy;
Steve Naroff043d45d2007-05-15 02:32:35 +00008754 }
Douglas Gregorf267edd2010-06-15 21:38:40 +00008755
Steve Naroff4b191572008-09-04 16:56:14 +00008756 // Handle block pointers.
Richard Trieuba63ce62011-09-09 01:45:06 +00008757 if (!IsRelational && RHSIsNull
Richard Trieub80728f2011-09-06 21:43:51 +00008758 && LHSType->isBlockPointerType() && RHSType->isIntegerType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008759 RHS = ImpCastExprToType(RHS.get(), LHSType, CK_NullToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008760 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00008761 }
Richard Trieuba63ce62011-09-09 01:45:06 +00008762 if (!IsRelational && LHSIsNull
Richard Trieub80728f2011-09-06 21:43:51 +00008763 && LHSType->isIntegerType() && RHSType->isBlockPointerType()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008764 LHS = ImpCastExprToType(LHS.get(), RHSType, CK_NullToPointer);
Douglas Gregorca63811b2008-11-19 03:25:36 +00008765 return ResultTy;
Steve Naroff4b191572008-09-04 16:56:14 +00008766 }
Douglas Gregor48e6bbf2011-03-01 17:16:20 +00008767
Richard Trieub80728f2011-09-06 21:43:51 +00008768 return InvalidOperands(Loc, LHS, RHS);
Steve Naroff26c8ea52007-03-21 21:08:52 +00008769}
8770
Tanya Lattner20248222012-01-16 21:02:28 +00008771
8772// Return a signed type that is of identical size and number of elements.
8773// For floating point vectors, return an integer type of identical size
8774// and number of elements.
8775QualType Sema::GetSignedVectorType(QualType V) {
8776 const VectorType *VTy = V->getAs<VectorType>();
8777 unsigned TypeSize = Context.getTypeSize(VTy->getElementType());
8778 if (TypeSize == Context.getTypeSize(Context.CharTy))
8779 return Context.getExtVectorType(Context.CharTy, VTy->getNumElements());
8780 else if (TypeSize == Context.getTypeSize(Context.ShortTy))
8781 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements());
8782 else if (TypeSize == Context.getTypeSize(Context.IntTy))
8783 return Context.getExtVectorType(Context.IntTy, VTy->getNumElements());
8784 else if (TypeSize == Context.getTypeSize(Context.LongTy))
8785 return Context.getExtVectorType(Context.LongTy, VTy->getNumElements());
8786 assert(TypeSize == Context.getTypeSize(Context.LongLongTy) &&
8787 "Unhandled vector element size in vector compare");
8788 return Context.getExtVectorType(Context.LongLongTy, VTy->getNumElements());
8789}
8790
Nate Begeman191a6b12008-07-14 18:02:46 +00008791/// CheckVectorCompareOperands - vector comparisons are a clang extension that
Mike Stump4e1f26a2009-02-19 03:04:26 +00008792/// operates on extended vector types. Instead of producing an IntTy result,
Nate Begeman191a6b12008-07-14 18:02:46 +00008793/// like a scalar comparison, a vector comparison produces a vector of integer
8794/// types.
Richard Trieubcce2f72011-09-07 01:19:57 +00008795QualType Sema::CheckVectorCompareOperands(ExprResult &LHS, ExprResult &RHS,
Chris Lattner326f7572008-11-18 01:30:42 +00008796 SourceLocation Loc,
Richard Trieuba63ce62011-09-09 01:45:06 +00008797 bool IsRelational) {
Nate Begeman191a6b12008-07-14 18:02:46 +00008798 // Check to make sure we're operating on vectors of the same type and width,
8799 // Allowing one side to be a scalar of element type.
Richard Trieubcce2f72011-09-07 01:19:57 +00008800 QualType vType = CheckVectorOperands(LHS, RHS, Loc, /*isCompAssign*/false);
Nate Begeman191a6b12008-07-14 18:02:46 +00008801 if (vType.isNull())
8802 return vType;
Mike Stump4e1f26a2009-02-19 03:04:26 +00008803
Richard Trieubcce2f72011-09-07 01:19:57 +00008804 QualType LHSType = LHS.get()->getType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008805
Anton Yartsev530deb92011-03-27 15:36:07 +00008806 // If AltiVec, the comparison results in a numeric type, i.e.
8807 // bool for C++, int for C
Anton Yartsev93900c72011-03-28 21:00:05 +00008808 if (vType->getAs<VectorType>()->getVectorKind() == VectorType::AltiVecVector)
Anton Yartsev530deb92011-03-27 15:36:07 +00008809 return Context.getLogicalOperationType();
8810
Nate Begeman191a6b12008-07-14 18:02:46 +00008811 // For non-floating point types, check for self-comparisons of the form
8812 // x == x, x != x, x < x, etc. These always evaluate to a constant, and
8813 // often indicate logic errors in the program.
Richard Trieu30bfa362013-11-02 02:11:23 +00008814 if (!LHSType->hasFloatingRepresentation() &&
8815 ActiveTemplateInstantiations.empty()) {
Richard Smith508ebf32011-10-28 03:31:48 +00008816 if (DeclRefExpr* DRL
8817 = dyn_cast<DeclRefExpr>(LHS.get()->IgnoreParenImpCasts()))
8818 if (DeclRefExpr* DRR
8819 = dyn_cast<DeclRefExpr>(RHS.get()->IgnoreParenImpCasts()))
Nate Begeman191a6b12008-07-14 18:02:46 +00008820 if (DRL->getDecl() == DRR->getDecl())
Craig Topperc3ec1492014-05-26 06:22:03 +00008821 DiagRuntimeBehavior(Loc, nullptr,
Douglas Gregorec170db2010-06-08 19:50:34 +00008822 PDiag(diag::warn_comparison_always)
8823 << 0 // self-
8824 << 2 // "a constant"
8825 );
Nate Begeman191a6b12008-07-14 18:02:46 +00008826 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00008827
Nate Begeman191a6b12008-07-14 18:02:46 +00008828 // Check for comparisons of floating point operands using != and ==.
Richard Trieuba63ce62011-09-09 01:45:06 +00008829 if (!IsRelational && LHSType->hasFloatingRepresentation()) {
David Blaikieca043222012-01-16 05:16:03 +00008830 assert (RHS.get()->getType()->hasFloatingRepresentation());
Richard Trieubcce2f72011-09-07 01:19:57 +00008831 CheckFloatComparison(Loc, LHS.get(), RHS.get());
Nate Begeman191a6b12008-07-14 18:02:46 +00008832 }
Tanya Lattner20248222012-01-16 21:02:28 +00008833
8834 // Return a signed type for the vector.
8835 return GetSignedVectorType(LHSType);
8836}
Mike Stump4e1f26a2009-02-19 03:04:26 +00008837
Tanya Lattner3dd33b22012-01-19 01:16:16 +00008838QualType Sema::CheckVectorLogicalOperands(ExprResult &LHS, ExprResult &RHS,
8839 SourceLocation Loc) {
Tanya Lattner20248222012-01-16 21:02:28 +00008840 // Ensure that either both operands are of the same vector type, or
8841 // one operand is of a vector type and the other is of its element type.
8842 QualType vType = CheckVectorOperands(LHS, RHS, Loc, false);
Joey Gouly7d00f002013-02-21 11:49:56 +00008843 if (vType.isNull())
8844 return InvalidOperands(Loc, LHS, RHS);
8845 if (getLangOpts().OpenCL && getLangOpts().OpenCLVersion < 120 &&
8846 vType->hasFloatingRepresentation())
Tanya Lattner20248222012-01-16 21:02:28 +00008847 return InvalidOperands(Loc, LHS, RHS);
8848
8849 return GetSignedVectorType(LHS.get()->getType());
Nate Begeman191a6b12008-07-14 18:02:46 +00008850}
8851
Steve Naroff218bc2b2007-05-04 21:54:46 +00008852inline QualType Sema::CheckBitwiseOperands(
Richard Trieuba63ce62011-09-09 01:45:06 +00008853 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, bool IsCompAssign) {
Richard Trieuf8916e12011-09-16 00:53:10 +00008854 checkArithmeticNull(*this, LHS, RHS, Loc, /*isCompare=*/false);
8855
Richard Trieubcce2f72011-09-07 01:19:57 +00008856 if (LHS.get()->getType()->isVectorType() ||
8857 RHS.get()->getType()->isVectorType()) {
8858 if (LHS.get()->getType()->hasIntegerRepresentation() &&
8859 RHS.get()->getType()->hasIntegerRepresentation())
Richard Trieuba63ce62011-09-09 01:45:06 +00008860 return CheckVectorOperands(LHS, RHS, Loc, IsCompAssign);
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00008861
Richard Trieubcce2f72011-09-07 01:19:57 +00008862 return InvalidOperands(Loc, LHS, RHS);
Douglas Gregor5cc2c8b2010-07-23 15:58:24 +00008863 }
Steve Naroffb8ea4fb2007-07-13 23:32:42 +00008864
Nikola Smiljanic03ff2592014-05-29 14:05:12 +00008865 ExprResult LHSResult = LHS, RHSResult = RHS;
Richard Trieubcce2f72011-09-07 01:19:57 +00008866 QualType compType = UsualArithmeticConversions(LHSResult, RHSResult,
Richard Trieuba63ce62011-09-09 01:45:06 +00008867 IsCompAssign);
Richard Trieubcce2f72011-09-07 01:19:57 +00008868 if (LHSResult.isInvalid() || RHSResult.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00008869 return QualType();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008870 LHS = LHSResult.get();
8871 RHS = RHSResult.get();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008872
Eli Friedman93ee5ca2012-06-16 02:19:17 +00008873 if (!compType.isNull() && compType->isIntegralOrUnscopedEnumerationType())
Steve Naroffbe4c4d12007-08-24 19:07:16 +00008874 return compType;
Richard Trieubcce2f72011-09-07 01:19:57 +00008875 return InvalidOperands(Loc, LHS, RHS);
Steve Naroff26c8ea52007-03-21 21:08:52 +00008876}
8877
Steve Naroff218bc2b2007-05-04 21:54:46 +00008878inline QualType Sema::CheckLogicalOperands( // C99 6.5.[13,14]
Richard Trieubcce2f72011-09-07 01:19:57 +00008879 ExprResult &LHS, ExprResult &RHS, SourceLocation Loc, unsigned Opc) {
Chris Lattner8406c512010-07-13 19:41:32 +00008880
Tanya Lattner20248222012-01-16 21:02:28 +00008881 // Check vector operands differently.
8882 if (LHS.get()->getType()->isVectorType() || RHS.get()->getType()->isVectorType())
8883 return CheckVectorLogicalOperands(LHS, RHS, Loc);
8884
Chris Lattner8406c512010-07-13 19:41:32 +00008885 // Diagnose cases where the user write a logical and/or but probably meant a
8886 // bitwise one. We do this when the LHS is a non-bool integer and the RHS
8887 // is a constant.
Richard Trieubcce2f72011-09-07 01:19:57 +00008888 if (LHS.get()->getType()->isIntegerType() &&
8889 !LHS.get()->getType()->isBooleanType() &&
8890 RHS.get()->getType()->isIntegerType() && !RHS.get()->isValueDependent() &&
Richard Trieucfe39262011-07-15 00:00:51 +00008891 // Don't warn in macros or template instantiations.
8892 !Loc.isMacroID() && ActiveTemplateInstantiations.empty()) {
Chris Lattner938533d2010-07-24 01:10:11 +00008893 // If the RHS can be constant folded, and if it constant folds to something
8894 // that isn't 0 or 1 (which indicate a potential logical operation that
8895 // happened to fold to true/false) then warn.
Chandler Carruthe54ff6c2011-05-31 05:41:42 +00008896 // Parens on the RHS are ignored.
Richard Smith00ab3ae2011-10-16 23:01:09 +00008897 llvm::APSInt Result;
8898 if (RHS.get()->EvaluateAsInt(Result, Context))
Argyrios Kyrtzidisd6eb2b92014-04-28 00:20:16 +00008899 if ((getLangOpts().Bool && !RHS.get()->getType()->isBooleanType() &&
8900 !RHS.get()->getExprLoc().isMacroID()) ||
Richard Smith00ab3ae2011-10-16 23:01:09 +00008901 (Result != 0 && Result != 1)) {
Chandler Carruthe54ff6c2011-05-31 05:41:42 +00008902 Diag(Loc, diag::warn_logical_instead_of_bitwise)
Richard Trieubcce2f72011-09-07 01:19:57 +00008903 << RHS.get()->getSourceRange()
Matt Beaumont-Gay0a0ba9d2011-08-15 17:50:06 +00008904 << (Opc == BO_LAnd ? "&&" : "||");
8905 // Suggest replacing the logical operator with the bitwise version
8906 Diag(Loc, diag::note_logical_instead_of_bitwise_change_operator)
8907 << (Opc == BO_LAnd ? "&" : "|")
8908 << FixItHint::CreateReplacement(SourceRange(
8909 Loc, Lexer::getLocForEndOfToken(Loc, 0, getSourceManager(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00008910 getLangOpts())),
Matt Beaumont-Gay0a0ba9d2011-08-15 17:50:06 +00008911 Opc == BO_LAnd ? "&" : "|");
8912 if (Opc == BO_LAnd)
8913 // Suggest replacing "Foo() && kNonZero" with "Foo()"
8914 Diag(Loc, diag::note_logical_instead_of_bitwise_remove_constant)
8915 << FixItHint::CreateRemoval(
8916 SourceRange(
Richard Trieubcce2f72011-09-07 01:19:57 +00008917 Lexer::getLocForEndOfToken(LHS.get()->getLocEnd(),
Matt Beaumont-Gay0a0ba9d2011-08-15 17:50:06 +00008918 0, getSourceManager(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00008919 getLangOpts()),
Richard Trieubcce2f72011-09-07 01:19:57 +00008920 RHS.get()->getLocEnd()));
Matt Beaumont-Gay0a0ba9d2011-08-15 17:50:06 +00008921 }
Chris Lattner938533d2010-07-24 01:10:11 +00008922 }
Joey Gouly7d00f002013-02-21 11:49:56 +00008923
David Blaikiebbafb8a2012-03-11 07:00:24 +00008924 if (!Context.getLangOpts().CPlusPlus) {
Joey Gouly7d00f002013-02-21 11:49:56 +00008925 // OpenCL v1.1 s6.3.g: The logical operators and (&&), or (||) do
8926 // not operate on the built-in scalar and vector float types.
8927 if (Context.getLangOpts().OpenCL &&
8928 Context.getLangOpts().OpenCLVersion < 120) {
8929 if (LHS.get()->getType()->isFloatingType() ||
8930 RHS.get()->getType()->isFloatingType())
8931 return InvalidOperands(Loc, LHS, RHS);
8932 }
8933
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008934 LHS = UsualUnaryConversions(LHS.get());
Richard Trieubcce2f72011-09-07 01:19:57 +00008935 if (LHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00008936 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00008937
Nikola Smiljanic01a75982014-05-29 10:55:11 +00008938 RHS = UsualUnaryConversions(RHS.get());
Richard Trieubcce2f72011-09-07 01:19:57 +00008939 if (RHS.isInvalid())
John Wiegley01296292011-04-08 18:41:53 +00008940 return QualType();
8941
Richard Trieubcce2f72011-09-07 01:19:57 +00008942 if (!LHS.get()->getType()->isScalarType() ||
8943 !RHS.get()->getType()->isScalarType())
8944 return InvalidOperands(Loc, LHS, RHS);
Fariborz Jahanian3365bfc2014-11-11 21:54:19 +00008945
Anders Carlsson2e7bc112009-11-23 21:47:44 +00008946 return Context.IntTy;
Anders Carlsson35a99d92009-10-16 01:44:21 +00008947 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00008948
John McCall4a2429a2010-06-04 00:29:51 +00008949 // The following is safe because we only use this method for
8950 // non-overloadable operands.
8951
Anders Carlsson2e7bc112009-11-23 21:47:44 +00008952 // C++ [expr.log.and]p1
8953 // C++ [expr.log.or]p1
John McCall4a2429a2010-06-04 00:29:51 +00008954 // The operands are both contextually converted to type bool.
Richard Trieubcce2f72011-09-07 01:19:57 +00008955 ExprResult LHSRes = PerformContextuallyConvertToBool(LHS.get());
8956 if (LHSRes.isInvalid())
8957 return InvalidOperands(Loc, LHS, RHS);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00008958 LHS = LHSRes;
John Wiegley01296292011-04-08 18:41:53 +00008959
Richard Trieubcce2f72011-09-07 01:19:57 +00008960 ExprResult RHSRes = PerformContextuallyConvertToBool(RHS.get());
8961 if (RHSRes.isInvalid())
8962 return InvalidOperands(Loc, LHS, RHS);
Benjamin Kramer62b95d82012-08-23 21:35:17 +00008963 RHS = RHSRes;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +00008964
Anders Carlsson2e7bc112009-11-23 21:47:44 +00008965 // C++ [expr.log.and]p2
8966 // C++ [expr.log.or]p2
8967 // The result is a bool.
8968 return Context.BoolTy;
Steve Naroffae4143e2007-04-26 20:39:23 +00008969}
8970
Fariborz Jahanian071caef2011-03-26 19:48:30 +00008971static bool IsReadonlyMessage(Expr *E, Sema &S) {
John McCall526ab472011-10-25 17:37:35 +00008972 const MemberExpr *ME = dyn_cast<MemberExpr>(E);
8973 if (!ME) return false;
8974 if (!isa<FieldDecl>(ME->getMemberDecl())) return false;
8975 ObjCMessageExpr *Base =
8976 dyn_cast<ObjCMessageExpr>(ME->getBase()->IgnoreParenImpCasts());
8977 if (!Base) return false;
Craig Topperc3ec1492014-05-26 06:22:03 +00008978 return Base->getMethodDecl() != nullptr;
Fariborz Jahanian071caef2011-03-26 19:48:30 +00008979}
8980
John McCall5fa2ef42012-03-13 00:37:01 +00008981/// Is the given expression (which must be 'const') a reference to a
8982/// variable which was originally non-const, but which has become
8983/// 'const' due to being captured within a block?
8984enum NonConstCaptureKind { NCCK_None, NCCK_Block, NCCK_Lambda };
8985static NonConstCaptureKind isReferenceToNonConstCapture(Sema &S, Expr *E) {
8986 assert(E->isLValue() && E->getType().isConstQualified());
8987 E = E->IgnoreParens();
8988
8989 // Must be a reference to a declaration from an enclosing scope.
8990 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
8991 if (!DRE) return NCCK_None;
Alexey Bataev19acc3d2015-01-12 10:17:46 +00008992 if (!DRE->refersToEnclosingVariableOrCapture()) return NCCK_None;
John McCall5fa2ef42012-03-13 00:37:01 +00008993
8994 // The declaration must be a variable which is not declared 'const'.
8995 VarDecl *var = dyn_cast<VarDecl>(DRE->getDecl());
8996 if (!var) return NCCK_None;
8997 if (var->getType().isConstQualified()) return NCCK_None;
8998 assert(var->hasLocalStorage() && "capture added 'const' to non-local?");
8999
9000 // Decide whether the first capture was for a block or a lambda.
Craig Topperc3ec1492014-05-26 06:22:03 +00009001 DeclContext *DC = S.CurContext, *Prev = nullptr;
Richard Smith75e3f692013-09-28 04:31:26 +00009002 while (DC != var->getDeclContext()) {
9003 Prev = DC;
John McCall5fa2ef42012-03-13 00:37:01 +00009004 DC = DC->getParent();
Richard Smith75e3f692013-09-28 04:31:26 +00009005 }
9006 // Unless we have an init-capture, we've gone one step too far.
9007 if (!var->isInitCapture())
9008 DC = Prev;
John McCall5fa2ef42012-03-13 00:37:01 +00009009 return (isa<BlockDecl>(DC) ? NCCK_Block : NCCK_Lambda);
9010}
9011
Richard Trieuaf7d76c2015-04-11 01:53:13 +00009012static bool IsTypeModifiable(QualType Ty, bool IsDereference) {
9013 Ty = Ty.getNonReferenceType();
9014 if (IsDereference && Ty->isPointerType())
9015 Ty = Ty->getPointeeType();
9016 return !Ty.isConstQualified();
9017}
9018
9019/// Emit the "read-only variable not assignable" error and print notes to give
9020/// more information about why the variable is not assignable, such as pointing
9021/// to the declaration of a const variable, showing that a method is const, or
9022/// that the function is returning a const reference.
9023static void DiagnoseConstAssignment(Sema &S, const Expr *E,
9024 SourceLocation Loc) {
9025 // Update err_typecheck_assign_const and note_typecheck_assign_const
9026 // when this enum is changed.
9027 enum {
9028 ConstFunction,
9029 ConstVariable,
9030 ConstMember,
9031 ConstMethod,
9032 ConstUnknown, // Keep as last element
9033 };
9034
9035 SourceRange ExprRange = E->getSourceRange();
9036
9037 // Only emit one error on the first const found. All other consts will emit
9038 // a note to the error.
9039 bool DiagnosticEmitted = false;
9040
9041 // Track if the current expression is the result of a derefence, and if the
9042 // next checked expression is the result of a derefence.
9043 bool IsDereference = false;
9044 bool NextIsDereference = false;
9045
9046 // Loop to process MemberExpr chains.
9047 while (true) {
9048 IsDereference = NextIsDereference;
9049 NextIsDereference = false;
9050
9051 E = E->IgnoreParenImpCasts();
9052 if (const MemberExpr *ME = dyn_cast<MemberExpr>(E)) {
9053 NextIsDereference = ME->isArrow();
9054 const ValueDecl *VD = ME->getMemberDecl();
9055 if (const FieldDecl *Field = dyn_cast<FieldDecl>(VD)) {
9056 // Mutable fields can be modified even if the class is const.
9057 if (Field->isMutable()) {
9058 assert(DiagnosticEmitted && "Expected diagnostic not emitted.");
9059 break;
9060 }
9061
9062 if (!IsTypeModifiable(Field->getType(), IsDereference)) {
9063 if (!DiagnosticEmitted) {
9064 S.Diag(Loc, diag::err_typecheck_assign_const)
9065 << ExprRange << ConstMember << false /*static*/ << Field
9066 << Field->getType();
9067 DiagnosticEmitted = true;
9068 }
9069 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9070 << ConstMember << false /*static*/ << Field << Field->getType()
9071 << Field->getSourceRange();
9072 }
9073 E = ME->getBase();
9074 continue;
9075 } else if (const VarDecl *VDecl = dyn_cast<VarDecl>(VD)) {
9076 if (VDecl->getType().isConstQualified()) {
9077 if (!DiagnosticEmitted) {
9078 S.Diag(Loc, diag::err_typecheck_assign_const)
9079 << ExprRange << ConstMember << true /*static*/ << VDecl
9080 << VDecl->getType();
9081 DiagnosticEmitted = true;
9082 }
9083 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9084 << ConstMember << true /*static*/ << VDecl << VDecl->getType()
9085 << VDecl->getSourceRange();
9086 }
9087 // Static fields do not inherit constness from parents.
9088 break;
9089 }
9090 break;
9091 } // End MemberExpr
9092 break;
9093 }
9094
9095 if (const CallExpr *CE = dyn_cast<CallExpr>(E)) {
9096 // Function calls
9097 const FunctionDecl *FD = CE->getDirectCallee();
9098 if (!IsTypeModifiable(FD->getReturnType(), IsDereference)) {
9099 if (!DiagnosticEmitted) {
9100 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9101 << ConstFunction << FD;
9102 DiagnosticEmitted = true;
9103 }
9104 S.Diag(FD->getReturnTypeSourceRange().getBegin(),
9105 diag::note_typecheck_assign_const)
9106 << ConstFunction << FD << FD->getReturnType()
9107 << FD->getReturnTypeSourceRange();
9108 }
9109 } else if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
9110 // Point to variable declaration.
9111 if (const ValueDecl *VD = DRE->getDecl()) {
9112 if (!IsTypeModifiable(VD->getType(), IsDereference)) {
9113 if (!DiagnosticEmitted) {
9114 S.Diag(Loc, diag::err_typecheck_assign_const)
9115 << ExprRange << ConstVariable << VD << VD->getType();
9116 DiagnosticEmitted = true;
9117 }
9118 S.Diag(VD->getLocation(), diag::note_typecheck_assign_const)
9119 << ConstVariable << VD << VD->getType() << VD->getSourceRange();
9120 }
9121 }
9122 } else if (isa<CXXThisExpr>(E)) {
9123 if (const DeclContext *DC = S.getFunctionLevelDeclContext()) {
9124 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(DC)) {
9125 if (MD->isConst()) {
9126 if (!DiagnosticEmitted) {
9127 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange
9128 << ConstMethod << MD;
9129 DiagnosticEmitted = true;
9130 }
9131 S.Diag(MD->getLocation(), diag::note_typecheck_assign_const)
9132 << ConstMethod << MD << MD->getSourceRange();
9133 }
9134 }
9135 }
9136 }
9137
9138 if (DiagnosticEmitted)
9139 return;
9140
9141 // Can't determine a more specific message, so display the generic error.
9142 S.Diag(Loc, diag::err_typecheck_assign_const) << ExprRange << ConstUnknown;
9143}
9144
Chris Lattner30bd3272008-11-18 01:22:49 +00009145/// CheckForModifiableLvalue - Verify that E is a modifiable lvalue. If not,
9146/// emit an error and return true. If so, return false.
9147static bool CheckForModifiableLvalue(Expr *E, SourceLocation Loc, Sema &S) {
Fariborz Jahanianca5c5972012-04-10 17:30:10 +00009148 assert(!E->hasPlaceholderType(BuiltinType::PseudoObject));
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00009149 SourceLocation OrigLoc = Loc;
Mike Stump11289f42009-09-09 15:08:12 +00009150 Expr::isModifiableLvalueResult IsLV = E->isModifiableLvalue(S.Context,
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00009151 &Loc);
Eli Friedmanaa205c42013-06-27 01:36:36 +00009152 if (IsLV == Expr::MLV_ClassTemporary && IsReadonlyMessage(E, S))
Fariborz Jahanian071caef2011-03-26 19:48:30 +00009153 IsLV = Expr::MLV_InvalidMessageExpression;
Chris Lattner30bd3272008-11-18 01:22:49 +00009154 if (IsLV == Expr::MLV_Valid)
9155 return false;
Mike Stump4e1f26a2009-02-19 03:04:26 +00009156
David Majnemer3e7743e2014-12-26 06:06:53 +00009157 unsigned DiagID = 0;
Chris Lattner30bd3272008-11-18 01:22:49 +00009158 bool NeedType = false;
9159 switch (IsLV) { // C99 6.5.16p2
John McCall31168b02011-06-15 23:02:42 +00009160 case Expr::MLV_ConstQualified:
John McCall5fa2ef42012-03-13 00:37:01 +00009161 // Use a specialized diagnostic when we're assigning to an object
9162 // from an enclosing function or block.
9163 if (NonConstCaptureKind NCCK = isReferenceToNonConstCapture(S, E)) {
9164 if (NCCK == NCCK_Block)
David Majnemer3e7743e2014-12-26 06:06:53 +00009165 DiagID = diag::err_block_decl_ref_not_modifiable_lvalue;
John McCall5fa2ef42012-03-13 00:37:01 +00009166 else
David Majnemer3e7743e2014-12-26 06:06:53 +00009167 DiagID = diag::err_lambda_decl_ref_not_modifiable_lvalue;
John McCall5fa2ef42012-03-13 00:37:01 +00009168 break;
9169 }
9170
John McCalld4631322011-06-17 06:42:21 +00009171 // In ARC, use some specialized diagnostics for occasions where we
9172 // infer 'const'. These are always pseudo-strong variables.
David Blaikiebbafb8a2012-03-11 07:00:24 +00009173 if (S.getLangOpts().ObjCAutoRefCount) {
John McCall31168b02011-06-15 23:02:42 +00009174 DeclRefExpr *declRef = dyn_cast<DeclRefExpr>(E->IgnoreParenCasts());
9175 if (declRef && isa<VarDecl>(declRef->getDecl())) {
9176 VarDecl *var = cast<VarDecl>(declRef->getDecl());
9177
John McCalld4631322011-06-17 06:42:21 +00009178 // Use the normal diagnostic if it's pseudo-__strong but the
9179 // user actually wrote 'const'.
9180 if (var->isARCPseudoStrong() &&
9181 (!var->getTypeSourceInfo() ||
9182 !var->getTypeSourceInfo()->getType().isConstQualified())) {
9183 // There are two pseudo-strong cases:
9184 // - self
John McCall31168b02011-06-15 23:02:42 +00009185 ObjCMethodDecl *method = S.getCurMethodDecl();
9186 if (method && var == method->getSelfDecl())
David Majnemer3e7743e2014-12-26 06:06:53 +00009187 DiagID = method->isClassMethod()
Ted Kremenek1fcdaa92011-11-14 21:59:25 +00009188 ? diag::err_typecheck_arc_assign_self_class_method
9189 : diag::err_typecheck_arc_assign_self;
John McCalld4631322011-06-17 06:42:21 +00009190
9191 // - fast enumeration variables
9192 else
David Majnemer3e7743e2014-12-26 06:06:53 +00009193 DiagID = diag::err_typecheck_arr_assign_enumeration;
John McCalld4631322011-06-17 06:42:21 +00009194
John McCall31168b02011-06-15 23:02:42 +00009195 SourceRange Assign;
9196 if (Loc != OrigLoc)
9197 Assign = SourceRange(OrigLoc, OrigLoc);
David Majnemer3e7743e2014-12-26 06:06:53 +00009198 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
Richard Trieuaf7d76c2015-04-11 01:53:13 +00009199 // We need to preserve the AST regardless, so migration tool
John McCall31168b02011-06-15 23:02:42 +00009200 // can do its job.
9201 return false;
9202 }
9203 }
9204 }
9205
Richard Trieuaf7d76c2015-04-11 01:53:13 +00009206 // If none of the special cases above are triggered, then this is a
9207 // simple const assignment.
9208 if (DiagID == 0) {
9209 DiagnoseConstAssignment(S, E, Loc);
9210 return true;
9211 }
9212
John McCall31168b02011-06-15 23:02:42 +00009213 break;
Richard Smitha7bd4582015-05-22 01:14:39 +00009214 case Expr::MLV_ConstAddrSpace:
9215 DiagnoseConstAssignment(S, E, Loc);
9216 return true;
Mike Stump4e1f26a2009-02-19 03:04:26 +00009217 case Expr::MLV_ArrayType:
Richard Smitheb3cad52012-06-04 22:27:30 +00009218 case Expr::MLV_ArrayTemporary:
David Majnemer3e7743e2014-12-26 06:06:53 +00009219 DiagID = diag::err_typecheck_array_not_modifiable_lvalue;
Chris Lattner30bd3272008-11-18 01:22:49 +00009220 NeedType = true;
9221 break;
Mike Stump4e1f26a2009-02-19 03:04:26 +00009222 case Expr::MLV_NotObjectType:
David Majnemer3e7743e2014-12-26 06:06:53 +00009223 DiagID = diag::err_typecheck_non_object_not_modifiable_lvalue;
Chris Lattner30bd3272008-11-18 01:22:49 +00009224 NeedType = true;
9225 break;
Chris Lattner9b3bbe92008-11-17 19:51:54 +00009226 case Expr::MLV_LValueCast:
David Majnemer3e7743e2014-12-26 06:06:53 +00009227 DiagID = diag::err_typecheck_lvalue_casts_not_supported;
Chris Lattner30bd3272008-11-18 01:22:49 +00009228 break;
Douglas Gregorb154fdc2010-02-16 21:39:57 +00009229 case Expr::MLV_Valid:
9230 llvm_unreachable("did not take early return for MLV_Valid");
Chris Lattner9bad62c2008-01-04 18:04:52 +00009231 case Expr::MLV_InvalidExpression:
Douglas Gregorb154fdc2010-02-16 21:39:57 +00009232 case Expr::MLV_MemberFunction:
9233 case Expr::MLV_ClassTemporary:
David Majnemer3e7743e2014-12-26 06:06:53 +00009234 DiagID = diag::err_typecheck_expression_not_modifiable_lvalue;
Chris Lattner30bd3272008-11-18 01:22:49 +00009235 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +00009236 case Expr::MLV_IncompleteType:
9237 case Expr::MLV_IncompleteVoidType:
Douglas Gregored0cfbd2009-03-09 16:13:40 +00009238 return S.RequireCompleteType(Loc, E->getType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +00009239 diag::err_typecheck_incomplete_type_not_modifiable_lvalue, E);
Chris Lattner9bad62c2008-01-04 18:04:52 +00009240 case Expr::MLV_DuplicateVectorComponents:
David Majnemer3e7743e2014-12-26 06:06:53 +00009241 DiagID = diag::err_typecheck_duplicate_vector_components_not_mlvalue;
Chris Lattner30bd3272008-11-18 01:22:49 +00009242 break;
Fariborz Jahanian5118c412008-11-22 20:25:50 +00009243 case Expr::MLV_NoSetterProperty:
John McCall526ab472011-10-25 17:37:35 +00009244 llvm_unreachable("readonly properties should be processed differently");
Fariborz Jahanian071caef2011-03-26 19:48:30 +00009245 case Expr::MLV_InvalidMessageExpression:
David Majnemer3e7743e2014-12-26 06:06:53 +00009246 DiagID = diag::error_readonly_message_assignment;
Fariborz Jahanian071caef2011-03-26 19:48:30 +00009247 break;
Fariborz Jahaniane8d28902009-12-15 23:59:41 +00009248 case Expr::MLV_SubObjCPropertySetting:
David Majnemer3e7743e2014-12-26 06:06:53 +00009249 DiagID = diag::error_no_subobject_property_setting;
Fariborz Jahaniane8d28902009-12-15 23:59:41 +00009250 break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00009251 }
Steve Naroffad373bd2007-07-31 12:34:36 +00009252
Daniel Dunbarc2223ab2009-04-15 00:08:05 +00009253 SourceRange Assign;
9254 if (Loc != OrigLoc)
9255 Assign = SourceRange(OrigLoc, OrigLoc);
Chris Lattner30bd3272008-11-18 01:22:49 +00009256 if (NeedType)
David Majnemer3e7743e2014-12-26 06:06:53 +00009257 S.Diag(Loc, DiagID) << E->getType() << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00009258 else
David Majnemer3e7743e2014-12-26 06:06:53 +00009259 S.Diag(Loc, DiagID) << E->getSourceRange() << Assign;
Chris Lattner30bd3272008-11-18 01:22:49 +00009260 return true;
9261}
9262
Nico Weberb8124d12012-07-03 02:03:06 +00009263static void CheckIdentityFieldAssignment(Expr *LHSExpr, Expr *RHSExpr,
9264 SourceLocation Loc,
9265 Sema &Sema) {
9266 // C / C++ fields
Nico Weber33fd5232012-06-28 23:53:12 +00009267 MemberExpr *ML = dyn_cast<MemberExpr>(LHSExpr);
9268 MemberExpr *MR = dyn_cast<MemberExpr>(RHSExpr);
9269 if (ML && MR && ML->getMemberDecl() == MR->getMemberDecl()) {
9270 if (isa<CXXThisExpr>(ML->getBase()) && isa<CXXThisExpr>(MR->getBase()))
Nico Weberb8124d12012-07-03 02:03:06 +00009271 Sema.Diag(Loc, diag::warn_identity_field_assign) << 0;
Nico Weber33fd5232012-06-28 23:53:12 +00009272 }
Chris Lattner30bd3272008-11-18 01:22:49 +00009273
Nico Weberb8124d12012-07-03 02:03:06 +00009274 // Objective-C instance variables
Nico Weber33fd5232012-06-28 23:53:12 +00009275 ObjCIvarRefExpr *OL = dyn_cast<ObjCIvarRefExpr>(LHSExpr);
9276 ObjCIvarRefExpr *OR = dyn_cast<ObjCIvarRefExpr>(RHSExpr);
9277 if (OL && OR && OL->getDecl() == OR->getDecl()) {
9278 DeclRefExpr *RL = dyn_cast<DeclRefExpr>(OL->getBase()->IgnoreImpCasts());
9279 DeclRefExpr *RR = dyn_cast<DeclRefExpr>(OR->getBase()->IgnoreImpCasts());
9280 if (RL && RR && RL->getDecl() == RR->getDecl())
Nico Weberb8124d12012-07-03 02:03:06 +00009281 Sema.Diag(Loc, diag::warn_identity_field_assign) << 1;
Nico Weber33fd5232012-06-28 23:53:12 +00009282 }
9283}
Chris Lattner30bd3272008-11-18 01:22:49 +00009284
9285// C99 6.5.16.1
Richard Trieuda4f43a62011-09-07 01:33:52 +00009286QualType Sema::CheckAssignmentOperands(Expr *LHSExpr, ExprResult &RHS,
Chris Lattner326f7572008-11-18 01:30:42 +00009287 SourceLocation Loc,
9288 QualType CompoundType) {
John McCall526ab472011-10-25 17:37:35 +00009289 assert(!LHSExpr->hasPlaceholderType(BuiltinType::PseudoObject));
9290
Chris Lattner326f7572008-11-18 01:30:42 +00009291 // Verify that LHS is a modifiable lvalue, and emit error if not.
Richard Trieuda4f43a62011-09-07 01:33:52 +00009292 if (CheckForModifiableLvalue(LHSExpr, Loc, *this))
Chris Lattner30bd3272008-11-18 01:22:49 +00009293 return QualType();
Chris Lattner326f7572008-11-18 01:30:42 +00009294
Richard Trieuda4f43a62011-09-07 01:33:52 +00009295 QualType LHSType = LHSExpr->getType();
Richard Trieucfc491d2011-08-02 04:35:43 +00009296 QualType RHSType = CompoundType.isNull() ? RHS.get()->getType() :
9297 CompoundType;
Chris Lattner9bad62c2008-01-04 18:04:52 +00009298 AssignConvertType ConvTy;
Chris Lattner326f7572008-11-18 01:30:42 +00009299 if (CompoundType.isNull()) {
Nico Weber33fd5232012-06-28 23:53:12 +00009300 Expr *RHSCheck = RHS.get();
9301
Nico Weberb8124d12012-07-03 02:03:06 +00009302 CheckIdentityFieldAssignment(LHSExpr, RHSCheck, Loc, *this);
Nico Weber33fd5232012-06-28 23:53:12 +00009303
Fariborz Jahanianbe21aa32010-06-07 22:02:01 +00009304 QualType LHSTy(LHSType);
Fariborz Jahanianbe21aa32010-06-07 22:02:01 +00009305 ConvTy = CheckSingleAssignmentConstraints(LHSTy, RHS);
John Wiegley01296292011-04-08 18:41:53 +00009306 if (RHS.isInvalid())
9307 return QualType();
Fariborz Jahanian255c0952009-01-13 23:34:40 +00009308 // Special case of NSObject attributes on c-style pointer types.
9309 if (ConvTy == IncompatiblePointer &&
9310 ((Context.isObjCNSObjectType(LHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00009311 RHSType->isObjCObjectPointerType()) ||
Fariborz Jahanian255c0952009-01-13 23:34:40 +00009312 (Context.isObjCNSObjectType(RHSType) &&
Steve Naroff79d12152009-07-16 15:41:00 +00009313 LHSType->isObjCObjectPointerType())))
Fariborz Jahanian255c0952009-01-13 23:34:40 +00009314 ConvTy = Compatible;
Mike Stump4e1f26a2009-02-19 03:04:26 +00009315
John McCall7decc9e2010-11-18 06:31:45 +00009316 if (ConvTy == Compatible &&
Fariborz Jahaniane2a77762012-01-24 19:40:13 +00009317 LHSType->isObjCObjectType())
Fariborz Jahanian3c4225a2012-01-24 18:05:45 +00009318 Diag(Loc, diag::err_objc_object_assignment)
9319 << LHSType;
John McCall7decc9e2010-11-18 06:31:45 +00009320
Chris Lattnerea714382008-08-21 18:04:13 +00009321 // If the RHS is a unary plus or minus, check to see if they = and + are
9322 // right next to each other. If so, the user may have typo'd "x =+ 4"
9323 // instead of "x += 4".
Chris Lattnerea714382008-08-21 18:04:13 +00009324 if (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(RHSCheck))
9325 RHSCheck = ICE->getSubExpr();
9326 if (UnaryOperator *UO = dyn_cast<UnaryOperator>(RHSCheck)) {
John McCalle3027922010-08-25 11:45:40 +00009327 if ((UO->getOpcode() == UO_Plus ||
9328 UO->getOpcode() == UO_Minus) &&
Chris Lattner326f7572008-11-18 01:30:42 +00009329 Loc.isFileID() && UO->getOperatorLoc().isFileID() &&
Chris Lattnerea714382008-08-21 18:04:13 +00009330 // Only if the two operators are exactly adjacent.
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +00009331 Loc.getLocWithOffset(1) == UO->getOperatorLoc() &&
Chris Lattner36c39c92009-03-08 06:51:10 +00009332 // And there is a space or other character before the subexpr of the
9333 // unary +/-. We don't want to warn on "x=-1".
Argyrios Kyrtzidise6e67de2011-09-19 20:40:19 +00009334 Loc.getLocWithOffset(2) != UO->getSubExpr()->getLocStart() &&
Chris Lattnered9f14c2009-03-09 07:11:10 +00009335 UO->getSubExpr()->getLocStart().isFileID()) {
Chris Lattner29e812b2008-11-20 06:06:08 +00009336 Diag(Loc, diag::warn_not_compound_assign)
John McCalle3027922010-08-25 11:45:40 +00009337 << (UO->getOpcode() == UO_Plus ? "+" : "-")
Chris Lattner29e812b2008-11-20 06:06:08 +00009338 << SourceRange(UO->getOperatorLoc(), UO->getOperatorLoc());
Chris Lattner36c39c92009-03-08 06:51:10 +00009339 }
Chris Lattnerea714382008-08-21 18:04:13 +00009340 }
John McCall31168b02011-06-15 23:02:42 +00009341
9342 if (ConvTy == Compatible) {
Jordan Rosefa9e4ba2012-09-15 02:48:31 +00009343 if (LHSType.getObjCLifetime() == Qualifiers::OCL_Strong) {
9344 // Warn about retain cycles where a block captures the LHS, but
9345 // not if the LHS is a simple variable into which the block is
9346 // being stored...unless that variable can be captured by reference!
9347 const Expr *InnerLHS = LHSExpr->IgnoreParenCasts();
9348 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(InnerLHS);
9349 if (!DRE || DRE->getDecl()->hasAttr<BlocksAttr>())
9350 checkRetainCycles(LHSExpr, RHS.get());
9351
Jordan Rosed3934582012-09-28 22:21:30 +00009352 // It is safe to assign a weak reference into a strong variable.
9353 // Although this code can still have problems:
9354 // id x = self.weakProp;
9355 // id y = self.weakProp;
9356 // we do not warn to warn spuriously when 'x' and 'y' are on separate
9357 // paths through the function. This should be revisited if
9358 // -Wrepeated-use-of-weak is made flow-sensitive.
Alp Tokerd4a3f0e2014-06-15 23:30:39 +00009359 if (!Diags.isIgnored(diag::warn_arc_repeated_use_of_weak,
9360 RHS.get()->getLocStart()))
Jordan Rosed3934582012-09-28 22:21:30 +00009361 getCurFunction()->markSafeWeakUse(RHS.get());
9362
Jordan Rosefa9e4ba2012-09-15 02:48:31 +00009363 } else if (getLangOpts().ObjCAutoRefCount) {
Richard Trieuda4f43a62011-09-07 01:33:52 +00009364 checkUnsafeExprAssigns(Loc, LHSExpr, RHS.get());
Jordan Rosefa9e4ba2012-09-15 02:48:31 +00009365 }
John McCall31168b02011-06-15 23:02:42 +00009366 }
Chris Lattnerea714382008-08-21 18:04:13 +00009367 } else {
9368 // Compound assignment "x += y"
Douglas Gregorc03a1082011-01-28 02:26:04 +00009369 ConvTy = CheckAssignmentConstraints(Loc, LHSType, RHSType);
Chris Lattnerea714382008-08-21 18:04:13 +00009370 }
Chris Lattner9bad62c2008-01-04 18:04:52 +00009371
Chris Lattner326f7572008-11-18 01:30:42 +00009372 if (DiagnoseAssignmentResult(ConvTy, Loc, LHSType, RHSType,
John Wiegley01296292011-04-08 18:41:53 +00009373 RHS.get(), AA_Assigning))
Chris Lattner9bad62c2008-01-04 18:04:52 +00009374 return QualType();
Mike Stump4e1f26a2009-02-19 03:04:26 +00009375
Richard Trieuda4f43a62011-09-07 01:33:52 +00009376 CheckForNullPointerDereference(*this, LHSExpr);
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +00009377
Steve Naroff98cf3e92007-06-06 18:38:38 +00009378 // C99 6.5.16p3: The type of an assignment expression is the type of the
9379 // left operand unless the left operand has qualified type, in which case
Mike Stump4e1f26a2009-02-19 03:04:26 +00009380 // it is the unqualified version of the type of the left operand.
Steve Naroff98cf3e92007-06-06 18:38:38 +00009381 // C99 6.5.16.1p2: In simple assignment, the value of the right operand
9382 // is converted to the type of the assignment expression (above).
Chris Lattnerf17bd422007-08-30 17:45:32 +00009383 // C++ 5.17p1: the type of the assignment expression is that of its left
Douglas Gregord2c2d172009-05-02 00:36:19 +00009384 // operand.
David Blaikiebbafb8a2012-03-11 07:00:24 +00009385 return (getLangOpts().CPlusPlus
John McCall01cbf2d2010-10-12 02:19:57 +00009386 ? LHSType : LHSType.getUnqualifiedType());
Steve Naroffae4143e2007-04-26 20:39:23 +00009387}
9388
Chris Lattner326f7572008-11-18 01:30:42 +00009389// C99 6.5.17
John Wiegley01296292011-04-08 18:41:53 +00009390static QualType CheckCommaOperands(Sema &S, ExprResult &LHS, ExprResult &RHS,
John McCall4bc41ae2010-11-18 19:01:18 +00009391 SourceLocation Loc) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009392 LHS = S.CheckPlaceholderExpr(LHS.get());
9393 RHS = S.CheckPlaceholderExpr(RHS.get());
John Wiegley01296292011-04-08 18:41:53 +00009394 if (LHS.isInvalid() || RHS.isInvalid())
Douglas Gregor0124e9b2010-11-09 21:07:58 +00009395 return QualType();
9396
John McCall73d36182010-10-12 07:14:40 +00009397 // C's comma performs lvalue conversion (C99 6.3.2.1) on both its
9398 // operands, but not unary promotions.
9399 // C++'s comma does not do any conversions at all (C++ [expr.comma]p1).
Eli Friedmanba961a92009-03-23 00:24:07 +00009400
John McCall34376a62010-12-04 03:47:34 +00009401 // So we treat the LHS as a ignored value, and in C++ we allow the
9402 // containing site to determine what should be done with the RHS.
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009403 LHS = S.IgnoredValueConversions(LHS.get());
John Wiegley01296292011-04-08 18:41:53 +00009404 if (LHS.isInvalid())
9405 return QualType();
John McCall34376a62010-12-04 03:47:34 +00009406
Eli Friedmanc11535c2012-05-24 00:47:05 +00009407 S.DiagnoseUnusedExprResult(LHS.get());
9408
David Blaikiebbafb8a2012-03-11 07:00:24 +00009409 if (!S.getLangOpts().CPlusPlus) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009410 RHS = S.DefaultFunctionArrayLvalueConversion(RHS.get());
John Wiegley01296292011-04-08 18:41:53 +00009411 if (RHS.isInvalid())
9412 return QualType();
9413 if (!RHS.get()->getType()->isVoidType())
Richard Trieucfc491d2011-08-02 04:35:43 +00009414 S.RequireCompleteType(Loc, RHS.get()->getType(),
9415 diag::err_incomplete_type);
John McCall73d36182010-10-12 07:14:40 +00009416 }
Eli Friedmanba961a92009-03-23 00:24:07 +00009417
John Wiegley01296292011-04-08 18:41:53 +00009418 return RHS.get()->getType();
Steve Naroff95af0132007-03-30 23:47:58 +00009419}
9420
Steve Naroff7a5af782007-07-13 16:58:59 +00009421/// CheckIncrementDecrementOperand - unlike most "Check" methods, this routine
9422/// doesn't need to call UsualUnaryConversions or UsualArithmeticConversions.
John McCall4bc41ae2010-11-18 19:01:18 +00009423static QualType CheckIncrementDecrementOperand(Sema &S, Expr *Op,
9424 ExprValueKind &VK,
David Majnemer74242432014-07-31 04:52:13 +00009425 ExprObjectKind &OK,
John McCall4bc41ae2010-11-18 19:01:18 +00009426 SourceLocation OpLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +00009427 bool IsInc, bool IsPrefix) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00009428 if (Op->isTypeDependent())
John McCall4bc41ae2010-11-18 19:01:18 +00009429 return S.Context.DependentTy;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00009430
Chris Lattner6b0cf142008-11-21 07:05:48 +00009431 QualType ResType = Op->getType();
David Chisnallfa35df62012-01-16 17:27:18 +00009432 // Atomic types can be used for increment / decrement where the non-atomic
9433 // versions can, so ignore the _Atomic() specifier for the purpose of
9434 // checking.
9435 if (const AtomicType *ResAtomicType = ResType->getAs<AtomicType>())
9436 ResType = ResAtomicType->getValueType();
9437
Chris Lattner6b0cf142008-11-21 07:05:48 +00009438 assert(!ResType.isNull() && "no type for increment/decrement expression");
Steve Naroffd50c88e2007-04-05 21:15:20 +00009439
David Blaikiebbafb8a2012-03-11 07:00:24 +00009440 if (S.getLangOpts().CPlusPlus && ResType->isBooleanType()) {
Sebastian Redle10c2c32008-12-20 09:35:34 +00009441 // Decrement of bool is not allowed.
Richard Trieuba63ce62011-09-09 01:45:06 +00009442 if (!IsInc) {
John McCall4bc41ae2010-11-18 19:01:18 +00009443 S.Diag(OpLoc, diag::err_decrement_bool) << Op->getSourceRange();
Sebastian Redle10c2c32008-12-20 09:35:34 +00009444 return QualType();
9445 }
9446 // Increment of bool sets it to true, but is deprecated.
John McCall4bc41ae2010-11-18 19:01:18 +00009447 S.Diag(OpLoc, diag::warn_increment_bool) << Op->getSourceRange();
Richard Trieu493df1a2013-08-08 01:50:23 +00009448 } else if (S.getLangOpts().CPlusPlus && ResType->isEnumeralType()) {
9449 // Error on enum increments and decrements in C++ mode
9450 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType;
9451 return QualType();
Sebastian Redle10c2c32008-12-20 09:35:34 +00009452 } else if (ResType->isRealType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00009453 // OK!
John McCallf2538342012-07-31 05:14:30 +00009454 } else if (ResType->isPointerType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00009455 // C99 6.5.2.4p2, 6.5.6p2
Chandler Carruthc9332212011-06-27 08:02:19 +00009456 if (!checkArithmeticOpPointerOperand(S, OpLoc, Op))
Douglas Gregordd430f72009-01-19 19:26:10 +00009457 return QualType();
John McCallf2538342012-07-31 05:14:30 +00009458 } else if (ResType->isObjCObjectPointerType()) {
9459 // On modern runtimes, ObjC pointer arithmetic is forbidden.
9460 // Otherwise, we just need a complete type.
9461 if (checkArithmeticIncompletePointerType(S, OpLoc, Op) ||
9462 checkArithmeticOnObjCPointer(S, OpLoc, Op))
9463 return QualType();
Eli Friedman090addd2010-01-03 00:20:48 +00009464 } else if (ResType->isAnyComplexType()) {
Chris Lattner6b0cf142008-11-21 07:05:48 +00009465 // C99 does not support ++/-- on complex types, we allow as an extension.
John McCall4bc41ae2010-11-18 19:01:18 +00009466 S.Diag(OpLoc, diag::ext_integer_increment_complex)
Chris Lattner1e5665e2008-11-24 06:25:27 +00009467 << ResType << Op->getSourceRange();
John McCall36226622010-10-12 02:09:17 +00009468 } else if (ResType->isPlaceholderType()) {
John McCall3aef3d82011-04-10 19:13:55 +00009469 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall36226622010-10-12 02:09:17 +00009470 if (PR.isInvalid()) return QualType();
David Majnemer74242432014-07-31 04:52:13 +00009471 return CheckIncrementDecrementOperand(S, PR.get(), VK, OK, OpLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +00009472 IsInc, IsPrefix);
David Blaikiebbafb8a2012-03-11 07:00:24 +00009473 } else if (S.getLangOpts().AltiVec && ResType->isVectorType()) {
Anton Yartsev85129b82011-02-07 02:17:30 +00009474 // OK! ( C/C++ Language Extensions for CBEA(Version 2.6) 10.3 )
David Tweed16574d82013-09-06 09:58:08 +00009475 } else if(S.getLangOpts().OpenCL && ResType->isVectorType() &&
9476 ResType->getAs<VectorType>()->getElementType()->isIntegerType()) {
9477 // OpenCL V1.2 6.3 says dec/inc ops operate on integer vector types.
Chris Lattner6b0cf142008-11-21 07:05:48 +00009478 } else {
John McCall4bc41ae2010-11-18 19:01:18 +00009479 S.Diag(OpLoc, diag::err_typecheck_illegal_increment_decrement)
Richard Trieuba63ce62011-09-09 01:45:06 +00009480 << ResType << int(IsInc) << Op->getSourceRange();
Chris Lattner6b0cf142008-11-21 07:05:48 +00009481 return QualType();
Steve Naroff46ba1eb2007-04-03 23:13:13 +00009482 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00009483 // At this point, we know we have a real, complex or pointer type.
Steve Naroff9e1e5512007-08-23 21:37:33 +00009484 // Now make sure the operand is a modifiable lvalue.
John McCall4bc41ae2010-11-18 19:01:18 +00009485 if (CheckForModifiableLvalue(Op, OpLoc, S))
Steve Naroff35d85152007-05-07 00:24:15 +00009486 return QualType();
Alexis Huntc46382e2010-04-28 23:02:27 +00009487 // In C++, a prefix increment is the same type as the operand. Otherwise
9488 // (in C or with postfix), the increment is the unqualified type of the
9489 // operand.
David Blaikiebbafb8a2012-03-11 07:00:24 +00009490 if (IsPrefix && S.getLangOpts().CPlusPlus) {
John McCall4bc41ae2010-11-18 19:01:18 +00009491 VK = VK_LValue;
David Majnemer74242432014-07-31 04:52:13 +00009492 OK = Op->getObjectKind();
John McCall4bc41ae2010-11-18 19:01:18 +00009493 return ResType;
9494 } else {
9495 VK = VK_RValue;
9496 return ResType.getUnqualifiedType();
9497 }
Steve Naroff26c8ea52007-03-21 21:08:52 +00009498}
Fariborz Jahanian805b74e2010-09-14 23:02:38 +00009499
9500
Anders Carlsson806700f2008-02-01 07:15:58 +00009501/// getPrimaryDecl - Helper function for CheckAddressOfOperand().
Steve Naroff47500512007-04-19 23:00:49 +00009502/// This routine allows us to typecheck complex/recursive expressions
Daniel Dunbarb692ef42008-08-04 20:02:37 +00009503/// where the declaration is needed for type checking. We only need to
9504/// handle cases when the expression references a function designator
9505/// or is an lvalue. Here are some examples:
9506/// - &(x) => x
9507/// - &*****f => f for f a function designator.
9508/// - &s.xx => s
9509/// - &s.zz[1].yy -> s, if zz is an array
9510/// - *(x + 1) -> x, if x is an array
9511/// - &"123"[2] -> 0
9512/// - & __real__ x -> x
John McCallf3a88602011-02-03 08:15:49 +00009513static ValueDecl *getPrimaryDecl(Expr *E) {
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009514 switch (E->getStmtClass()) {
Steve Naroff47500512007-04-19 23:00:49 +00009515 case Stmt::DeclRefExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009516 return cast<DeclRefExpr>(E)->getDecl();
Steve Naroff47500512007-04-19 23:00:49 +00009517 case Stmt::MemberExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00009518 // If this is an arrow operator, the address is an offset from
9519 // the base's value, so the object the base refers to is
9520 // irrelevant.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009521 if (cast<MemberExpr>(E)->isArrow())
Craig Topperc3ec1492014-05-26 06:22:03 +00009522 return nullptr;
Eli Friedman3a1e6922009-04-20 08:23:18 +00009523 // Otherwise, the expression refers to a part of the base
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009524 return getPrimaryDecl(cast<MemberExpr>(E)->getBase());
Anders Carlsson806700f2008-02-01 07:15:58 +00009525 case Stmt::ArraySubscriptExprClass: {
Mike Stump87c57ac2009-05-16 07:39:55 +00009526 // FIXME: This code shouldn't be necessary! We should catch the implicit
9527 // promotion of register arrays earlier.
Eli Friedman3a1e6922009-04-20 08:23:18 +00009528 Expr* Base = cast<ArraySubscriptExpr>(E)->getBase();
9529 if (ImplicitCastExpr* ICE = dyn_cast<ImplicitCastExpr>(Base)) {
9530 if (ICE->getSubExpr()->getType()->isArrayType())
9531 return getPrimaryDecl(ICE->getSubExpr());
9532 }
Craig Topperc3ec1492014-05-26 06:22:03 +00009533 return nullptr;
Anders Carlsson806700f2008-02-01 07:15:58 +00009534 }
Daniel Dunbarb692ef42008-08-04 20:02:37 +00009535 case Stmt::UnaryOperatorClass: {
9536 UnaryOperator *UO = cast<UnaryOperator>(E);
Mike Stump4e1f26a2009-02-19 03:04:26 +00009537
Daniel Dunbarb692ef42008-08-04 20:02:37 +00009538 switch(UO->getOpcode()) {
John McCalle3027922010-08-25 11:45:40 +00009539 case UO_Real:
9540 case UO_Imag:
9541 case UO_Extension:
Daniel Dunbarb692ef42008-08-04 20:02:37 +00009542 return getPrimaryDecl(UO->getSubExpr());
9543 default:
Craig Topperc3ec1492014-05-26 06:22:03 +00009544 return nullptr;
Daniel Dunbarb692ef42008-08-04 20:02:37 +00009545 }
9546 }
Steve Naroff47500512007-04-19 23:00:49 +00009547 case Stmt::ParenExprClass:
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009548 return getPrimaryDecl(cast<ParenExpr>(E)->getSubExpr());
Chris Lattner48d52842007-11-16 17:46:48 +00009549 case Stmt::ImplicitCastExprClass:
Eli Friedman3a1e6922009-04-20 08:23:18 +00009550 // If the result of an implicit cast is an l-value, we care about
9551 // the sub-expression; otherwise, the result here doesn't matter.
Chris Lattner24d5bfe2008-04-02 04:24:33 +00009552 return getPrimaryDecl(cast<ImplicitCastExpr>(E)->getSubExpr());
Steve Naroff47500512007-04-19 23:00:49 +00009553 default:
Craig Topperc3ec1492014-05-26 06:22:03 +00009554 return nullptr;
Steve Naroff47500512007-04-19 23:00:49 +00009555 }
9556}
9557
Richard Trieu5f376f62011-09-07 21:46:33 +00009558namespace {
9559 enum {
9560 AO_Bit_Field = 0,
9561 AO_Vector_Element = 1,
9562 AO_Property_Expansion = 2,
9563 AO_Register_Variable = 3,
9564 AO_No_Error = 4
9565 };
9566}
Richard Trieu3fd7bb82011-09-02 00:47:55 +00009567/// \brief Diagnose invalid operand for address of operations.
9568///
9569/// \param Type The type of operand which cannot have its address taken.
Richard Trieu3fd7bb82011-09-02 00:47:55 +00009570static void diagnoseAddressOfInvalidType(Sema &S, SourceLocation Loc,
9571 Expr *E, unsigned Type) {
9572 S.Diag(Loc, diag::err_typecheck_address_of) << Type << E->getSourceRange();
9573}
9574
Steve Naroff47500512007-04-19 23:00:49 +00009575/// CheckAddressOfOperand - The operand of & must be either a function
Mike Stump4e1f26a2009-02-19 03:04:26 +00009576/// designator or an lvalue designating an object. If it is an lvalue, the
Steve Naroff47500512007-04-19 23:00:49 +00009577/// object cannot be declared with storage class register or be a bit field.
Mike Stump4e1f26a2009-02-19 03:04:26 +00009578/// Note: The usual conversions are *not* applied to the operand of the &
Steve Naroffa78fe7e2007-05-16 19:47:19 +00009579/// operator (C99 6.3.2.1p[2-4]), and its result is never an lvalue.
Mike Stump4e1f26a2009-02-19 03:04:26 +00009580/// In C++, the operand might be an overloaded function name, in which case
Douglas Gregorcd695e52008-11-10 20:40:00 +00009581/// we allow the '&' but retain the overloaded-function type.
Richard Smithaf9de912013-07-11 02:26:56 +00009582QualType Sema::CheckAddressOfOperand(ExprResult &OrigOp, SourceLocation OpLoc) {
John McCall526ab472011-10-25 17:37:35 +00009583 if (const BuiltinType *PTy = OrigOp.get()->getType()->getAsPlaceholderType()){
9584 if (PTy->getKind() == BuiltinType::Overload) {
David Majnemer0f328442013-07-05 06:23:33 +00009585 Expr *E = OrigOp.get()->IgnoreParens();
9586 if (!isa<OverloadExpr>(E)) {
9587 assert(cast<UnaryOperator>(E)->getOpcode() == UO_AddrOf);
Richard Smithaf9de912013-07-11 02:26:56 +00009588 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof_addrof_function)
John McCall526ab472011-10-25 17:37:35 +00009589 << OrigOp.get()->getSourceRange();
9590 return QualType();
9591 }
David Majnemer66ad5742013-06-11 03:56:29 +00009592
David Majnemer0f328442013-07-05 06:23:33 +00009593 OverloadExpr *Ovl = cast<OverloadExpr>(E);
David Majnemer66ad5742013-06-11 03:56:29 +00009594 if (isa<UnresolvedMemberExpr>(Ovl))
Richard Smithaf9de912013-07-11 02:26:56 +00009595 if (!ResolveSingleFunctionTemplateSpecialization(Ovl)) {
9596 Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
David Majnemer66ad5742013-06-11 03:56:29 +00009597 << OrigOp.get()->getSourceRange();
9598 return QualType();
9599 }
9600
Richard Smithaf9de912013-07-11 02:26:56 +00009601 return Context.OverloadTy;
John McCall526ab472011-10-25 17:37:35 +00009602 }
9603
9604 if (PTy->getKind() == BuiltinType::UnknownAny)
Richard Smithaf9de912013-07-11 02:26:56 +00009605 return Context.UnknownAnyTy;
John McCall526ab472011-10-25 17:37:35 +00009606
9607 if (PTy->getKind() == BuiltinType::BoundMember) {
Richard Smithaf9de912013-07-11 02:26:56 +00009608 Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
John McCall526ab472011-10-25 17:37:35 +00009609 << OrigOp.get()->getSourceRange();
Douglas Gregor668d3622011-10-09 19:10:41 +00009610 return QualType();
9611 }
John McCall526ab472011-10-25 17:37:35 +00009612
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009613 OrigOp = CheckPlaceholderExpr(OrigOp.get());
John McCall526ab472011-10-25 17:37:35 +00009614 if (OrigOp.isInvalid()) return QualType();
John McCall0009fcc2011-04-26 20:42:42 +00009615 }
John McCall8d08b9b2010-08-27 09:08:28 +00009616
John McCall526ab472011-10-25 17:37:35 +00009617 if (OrigOp.get()->isTypeDependent())
Richard Smithaf9de912013-07-11 02:26:56 +00009618 return Context.DependentTy;
John McCall526ab472011-10-25 17:37:35 +00009619
9620 assert(!OrigOp.get()->getType()->isPlaceholderType());
John McCall36226622010-10-12 02:09:17 +00009621
John McCall8d08b9b2010-08-27 09:08:28 +00009622 // Make sure to ignore parentheses in subsequent checks
John McCall526ab472011-10-25 17:37:35 +00009623 Expr *op = OrigOp.get()->IgnoreParens();
Douglas Gregor19b8c4f2008-12-17 22:52:20 +00009624
Pekka Jaaskelainen8690a682014-02-20 13:52:08 +00009625 // OpenCL v1.0 s6.8.a.3: Pointers to functions are not allowed.
9626 if (LangOpts.OpenCL && op->getType()->isFunctionType()) {
9627 Diag(op->getExprLoc(), diag::err_opencl_taking_function_address);
9628 return QualType();
9629 }
9630
Richard Smithaf9de912013-07-11 02:26:56 +00009631 if (getLangOpts().C99) {
Steve Naroff826e91a2008-01-13 17:10:08 +00009632 // Implement C99-only parts of addressof rules.
9633 if (UnaryOperator* uOp = dyn_cast<UnaryOperator>(op)) {
John McCalle3027922010-08-25 11:45:40 +00009634 if (uOp->getOpcode() == UO_Deref)
Steve Naroff826e91a2008-01-13 17:10:08 +00009635 // Per C99 6.5.3.2, the address of a deref always returns a valid result
9636 // (assuming the deref expression is valid).
9637 return uOp->getSubExpr()->getType();
9638 }
9639 // Technically, there should be a check for array subscript
9640 // expressions here, but the result of one is always an lvalue anyway.
9641 }
John McCallf3a88602011-02-03 08:15:49 +00009642 ValueDecl *dcl = getPrimaryDecl(op);
Richard Smithaf9de912013-07-11 02:26:56 +00009643 Expr::LValueClassification lval = op->ClassifyLValue(Context);
Richard Trieu5f376f62011-09-07 21:46:33 +00009644 unsigned AddressOfError = AO_No_Error;
Nuno Lopes17f345f2008-12-16 22:59:47 +00009645
Richard Smithc084bd282013-02-02 02:14:45 +00009646 if (lval == Expr::LV_ClassTemporary || lval == Expr::LV_ArrayTemporary) {
Richard Smithaf9de912013-07-11 02:26:56 +00009647 bool sfinae = (bool)isSFINAEContext();
9648 Diag(OpLoc, isSFINAEContext() ? diag::err_typecheck_addrof_temporary
9649 : diag::ext_typecheck_addrof_temporary)
Douglas Gregorb154fdc2010-02-16 21:39:57 +00009650 << op->getType() << op->getSourceRange();
John McCall4bc41ae2010-11-18 19:01:18 +00009651 if (sfinae)
Douglas Gregorb154fdc2010-02-16 21:39:57 +00009652 return QualType();
Richard Smith9f8400e2013-05-01 19:00:39 +00009653 // Materialize the temporary as an lvalue so that we can take its address.
Richard Smithaf9de912013-07-11 02:26:56 +00009654 OrigOp = op = new (Context)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009655 MaterializeTemporaryExpr(op->getType(), OrigOp.get(), true);
John McCall8d08b9b2010-08-27 09:08:28 +00009656 } else if (isa<ObjCSelectorExpr>(op)) {
Richard Smithaf9de912013-07-11 02:26:56 +00009657 return Context.getPointerType(op->getType());
John McCall8d08b9b2010-08-27 09:08:28 +00009658 } else if (lval == Expr::LV_MemberFunction) {
9659 // If it's an instance method, make a member pointer.
9660 // The expression must have exactly the form &A::foo.
9661
9662 // If the underlying expression isn't a decl ref, give up.
9663 if (!isa<DeclRefExpr>(op)) {
Richard Smithaf9de912013-07-11 02:26:56 +00009664 Diag(OpLoc, diag::err_invalid_form_pointer_member_function)
John McCall526ab472011-10-25 17:37:35 +00009665 << OrigOp.get()->getSourceRange();
John McCall8d08b9b2010-08-27 09:08:28 +00009666 return QualType();
9667 }
9668 DeclRefExpr *DRE = cast<DeclRefExpr>(op);
9669 CXXMethodDecl *MD = cast<CXXMethodDecl>(DRE->getDecl());
9670
9671 // The id-expression was parenthesized.
John McCall526ab472011-10-25 17:37:35 +00009672 if (OrigOp.get() != DRE) {
Richard Smithaf9de912013-07-11 02:26:56 +00009673 Diag(OpLoc, diag::err_parens_pointer_member_function)
John McCall526ab472011-10-25 17:37:35 +00009674 << OrigOp.get()->getSourceRange();
John McCall8d08b9b2010-08-27 09:08:28 +00009675
9676 // The method was named without a qualifier.
9677 } else if (!DRE->getQualifier()) {
David Blaikiec2ff8e12012-10-11 22:55:07 +00009678 if (MD->getParent()->getName().empty())
Richard Smithaf9de912013-07-11 02:26:56 +00009679 Diag(OpLoc, diag::err_unqualified_pointer_member_function)
David Blaikiec2ff8e12012-10-11 22:55:07 +00009680 << op->getSourceRange();
9681 else {
9682 SmallString<32> Str;
9683 StringRef Qual = (MD->getParent()->getName() + "::").toStringRef(Str);
Richard Smithaf9de912013-07-11 02:26:56 +00009684 Diag(OpLoc, diag::err_unqualified_pointer_member_function)
David Blaikiec2ff8e12012-10-11 22:55:07 +00009685 << op->getSourceRange()
9686 << FixItHint::CreateInsertion(op->getSourceRange().getBegin(), Qual);
9687 }
John McCall8d08b9b2010-08-27 09:08:28 +00009688 }
9689
Benjamin Kramer915d1692013-10-10 09:44:41 +00009690 // Taking the address of a dtor is illegal per C++ [class.dtor]p2.
9691 if (isa<CXXDestructorDecl>(MD))
9692 Diag(OpLoc, diag::err_typecheck_addrof_dtor) << op->getSourceRange();
9693
David Majnemer1cdd96d2014-01-17 09:01:00 +00009694 QualType MPTy = Context.getMemberPointerType(
9695 op->getType(), Context.getTypeDeclType(MD->getParent()).getTypePtr());
9696 if (Context.getTargetInfo().getCXXABI().isMicrosoft())
9697 RequireCompleteType(OpLoc, MPTy, 0);
9698 return MPTy;
John McCall8d08b9b2010-08-27 09:08:28 +00009699 } else if (lval != Expr::LV_Valid && lval != Expr::LV_IncompleteVoidType) {
Eli Friedmance7f9002009-05-16 23:27:50 +00009700 // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00009701 // The operand must be either an l-value or a function designator
Eli Friedmance7f9002009-05-16 23:27:50 +00009702 if (!op->getType()->isFunctionType()) {
John McCall526ab472011-10-25 17:37:35 +00009703 // Use a special diagnostic for loads from property references.
John McCallfe96e0b2011-11-06 09:01:30 +00009704 if (isa<PseudoObjectExpr>(op)) {
John McCall526ab472011-10-25 17:37:35 +00009705 AddressOfError = AO_Property_Expansion;
9706 } else {
Richard Smithaf9de912013-07-11 02:26:56 +00009707 Diag(OpLoc, diag::err_typecheck_invalid_lvalue_addrof)
Richard Smithc084bd282013-02-02 02:14:45 +00009708 << op->getType() << op->getSourceRange();
John McCall526ab472011-10-25 17:37:35 +00009709 return QualType();
9710 }
Steve Naroff35d85152007-05-07 00:24:15 +00009711 }
John McCall086a4642010-11-24 05:12:34 +00009712 } else if (op->getObjectKind() == OK_BitField) { // C99 6.5.3.2p1
Eli Friedman3a1e6922009-04-20 08:23:18 +00009713 // The operand cannot be a bit-field
Richard Trieu5f376f62011-09-07 21:46:33 +00009714 AddressOfError = AO_Bit_Field;
John McCall086a4642010-11-24 05:12:34 +00009715 } else if (op->getObjectKind() == OK_VectorComponent) {
Eli Friedman3a1e6922009-04-20 08:23:18 +00009716 // The operand cannot be an element of a vector
Richard Trieu5f376f62011-09-07 21:46:33 +00009717 AddressOfError = AO_Vector_Element;
Steve Naroffb96e4ab62008-02-29 23:30:25 +00009718 } else if (dcl) { // C99 6.5.3.2p1
Mike Stump4e1f26a2009-02-19 03:04:26 +00009719 // We have an lvalue with a decl. Make sure the decl is not declared
Steve Naroff47500512007-04-19 23:00:49 +00009720 // with the register storage-class specifier.
9721 if (const VarDecl *vd = dyn_cast<VarDecl>(dcl)) {
Fariborz Jahaniane0fd5a92010-08-24 22:21:48 +00009722 // in C++ it is not error to take address of a register
9723 // variable (c++03 7.1.1P3)
John McCall8e7d6562010-08-26 03:08:43 +00009724 if (vd->getStorageClass() == SC_Register &&
Richard Smithaf9de912013-07-11 02:26:56 +00009725 !getLangOpts().CPlusPlus) {
Richard Trieu5f376f62011-09-07 21:46:33 +00009726 AddressOfError = AO_Register_Variable;
Steve Naroff35d85152007-05-07 00:24:15 +00009727 }
Reid Kleckner85c7e0a2015-02-24 20:29:40 +00009728 } else if (isa<MSPropertyDecl>(dcl)) {
9729 AddressOfError = AO_Property_Expansion;
John McCalld14a8642009-11-21 08:51:07 +00009730 } else if (isa<FunctionTemplateDecl>(dcl)) {
Richard Smithaf9de912013-07-11 02:26:56 +00009731 return Context.OverloadTy;
John McCallf3a88602011-02-03 08:15:49 +00009732 } else if (isa<FieldDecl>(dcl) || isa<IndirectFieldDecl>(dcl)) {
Douglas Gregor9aa8b552008-12-10 21:26:49 +00009733 // Okay: we can take the address of a field.
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00009734 // Could be a pointer to member, though, if there is an explicit
9735 // scope qualifier for the class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00009736 if (isa<DeclRefExpr>(op) && cast<DeclRefExpr>(op)->getQualifier()) {
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00009737 DeclContext *Ctx = dcl->getDeclContext();
Anders Carlsson0b675f52009-07-08 21:45:58 +00009738 if (Ctx && Ctx->isRecord()) {
John McCallf3a88602011-02-03 08:15:49 +00009739 if (dcl->getType()->isReferenceType()) {
Richard Smithaf9de912013-07-11 02:26:56 +00009740 Diag(OpLoc,
9741 diag::err_cannot_form_pointer_to_member_of_reference_type)
John McCallf3a88602011-02-03 08:15:49 +00009742 << dcl->getDeclName() << dcl->getType();
Anders Carlsson0b675f52009-07-08 21:45:58 +00009743 return QualType();
9744 }
Mike Stump11289f42009-09-09 15:08:12 +00009745
Argyrios Kyrtzidis8322b422011-01-31 07:04:29 +00009746 while (cast<RecordDecl>(Ctx)->isAnonymousStructOrUnion())
9747 Ctx = Ctx->getParent();
David Majnemer1cdd96d2014-01-17 09:01:00 +00009748
9749 QualType MPTy = Context.getMemberPointerType(
9750 op->getType(),
9751 Context.getTypeDeclType(cast<RecordDecl>(Ctx)).getTypePtr());
9752 if (Context.getTargetInfo().getCXXABI().isMicrosoft())
9753 RequireCompleteType(OpLoc, MPTy, 0);
9754 return MPTy;
Anders Carlsson0b675f52009-07-08 21:45:58 +00009755 }
Sebastian Redl3d3f75a2009-02-03 20:19:35 +00009756 }
Eli Friedman755c0c92011-08-26 20:28:17 +00009757 } else if (!isa<FunctionDecl>(dcl) && !isa<NonTypeTemplateParmDecl>(dcl))
David Blaikie83d382b2011-09-23 05:06:16 +00009758 llvm_unreachable("Unknown/unexpected decl type");
Steve Naroff47500512007-04-19 23:00:49 +00009759 }
Sebastian Redl18f8ff62009-02-04 21:23:32 +00009760
Richard Trieu5f376f62011-09-07 21:46:33 +00009761 if (AddressOfError != AO_No_Error) {
Richard Smithaf9de912013-07-11 02:26:56 +00009762 diagnoseAddressOfInvalidType(*this, OpLoc, op, AddressOfError);
Richard Trieu5f376f62011-09-07 21:46:33 +00009763 return QualType();
9764 }
9765
Eli Friedmance7f9002009-05-16 23:27:50 +00009766 if (lval == Expr::LV_IncompleteVoidType) {
9767 // Taking the address of a void variable is technically illegal, but we
9768 // allow it in cases which are otherwise valid.
9769 // Example: "extern void x; void* y = &x;".
Richard Smithaf9de912013-07-11 02:26:56 +00009770 Diag(OpLoc, diag::ext_typecheck_addrof_void) << op->getSourceRange();
Eli Friedmance7f9002009-05-16 23:27:50 +00009771 }
9772
Steve Naroff47500512007-04-19 23:00:49 +00009773 // If the operand has type "type", the result has type "pointer to type".
Douglas Gregor0bdcb8a2010-07-29 16:05:45 +00009774 if (op->getType()->isObjCObjectType())
Richard Smithaf9de912013-07-11 02:26:56 +00009775 return Context.getObjCObjectPointerType(op->getType());
9776 return Context.getPointerType(op->getType());
Steve Naroff47500512007-04-19 23:00:49 +00009777}
9778
Fariborz Jahanianef202d92014-11-18 21:57:54 +00009779static void RecordModifiableNonNullParam(Sema &S, const Expr *Exp) {
9780 const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Exp);
9781 if (!DRE)
9782 return;
9783 const Decl *D = DRE->getDecl();
9784 if (!D)
9785 return;
9786 const ParmVarDecl *Param = dyn_cast<ParmVarDecl>(D);
9787 if (!Param)
9788 return;
9789 if (const FunctionDecl* FD = dyn_cast<FunctionDecl>(Param->getDeclContext()))
Aaron Ballman2521f362014-12-11 19:35:42 +00009790 if (!FD->hasAttr<NonNullAttr>() && !Param->hasAttr<NonNullAttr>())
Fariborz Jahanianef202d92014-11-18 21:57:54 +00009791 return;
9792 if (FunctionScopeInfo *FD = S.getCurFunction())
9793 if (!FD->ModifiedNonNullParams.count(Param))
9794 FD->ModifiedNonNullParams.insert(Param);
9795}
9796
Chris Lattner9156f1b2010-07-05 19:17:26 +00009797/// CheckIndirectionOperand - Type check unary indirection (prefix '*').
John McCall4bc41ae2010-11-18 19:01:18 +00009798static QualType CheckIndirectionOperand(Sema &S, Expr *Op, ExprValueKind &VK,
9799 SourceLocation OpLoc) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00009800 if (Op->isTypeDependent())
John McCall4bc41ae2010-11-18 19:01:18 +00009801 return S.Context.DependentTy;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +00009802
John Wiegley01296292011-04-08 18:41:53 +00009803 ExprResult ConvResult = S.UsualUnaryConversions(Op);
9804 if (ConvResult.isInvalid())
9805 return QualType();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009806 Op = ConvResult.get();
Chris Lattner9156f1b2010-07-05 19:17:26 +00009807 QualType OpTy = Op->getType();
9808 QualType Result;
Argyrios Kyrtzidis69a2c922011-05-02 18:21:19 +00009809
9810 if (isa<CXXReinterpretCastExpr>(Op)) {
9811 QualType OpOrigType = Op->IgnoreParenCasts()->getType();
9812 S.CheckCompatibleReinterpretCast(OpOrigType, OpTy, /*IsDereference*/true,
9813 Op->getSourceRange());
9814 }
9815
Chris Lattner9156f1b2010-07-05 19:17:26 +00009816 if (const PointerType *PT = OpTy->getAs<PointerType>())
9817 Result = PT->getPointeeType();
9818 else if (const ObjCObjectPointerType *OPT =
9819 OpTy->getAs<ObjCObjectPointerType>())
9820 Result = OPT->getPointeeType();
John McCall36226622010-10-12 02:09:17 +00009821 else {
John McCall3aef3d82011-04-10 19:13:55 +00009822 ExprResult PR = S.CheckPlaceholderExpr(Op);
John McCall36226622010-10-12 02:09:17 +00009823 if (PR.isInvalid()) return QualType();
Nikola Smiljanic01a75982014-05-29 10:55:11 +00009824 if (PR.get() != Op)
9825 return CheckIndirectionOperand(S, PR.get(), VK, OpLoc);
John McCall36226622010-10-12 02:09:17 +00009826 }
Mike Stump4e1f26a2009-02-19 03:04:26 +00009827
Chris Lattner9156f1b2010-07-05 19:17:26 +00009828 if (Result.isNull()) {
John McCall4bc41ae2010-11-18 19:01:18 +00009829 S.Diag(OpLoc, diag::err_typecheck_indirection_requires_pointer)
Chris Lattner9156f1b2010-07-05 19:17:26 +00009830 << OpTy << Op->getSourceRange();
9831 return QualType();
9832 }
John McCall4bc41ae2010-11-18 19:01:18 +00009833
Richard Smith80877c22014-05-07 21:53:27 +00009834 // Note that per both C89 and C99, indirection is always legal, even if Result
9835 // is an incomplete type or void. It would be possible to warn about
9836 // dereferencing a void pointer, but it's completely well-defined, and such a
9837 // warning is unlikely to catch any mistakes. In C++, indirection is not valid
9838 // for pointers to 'void' but is fine for any other pointer type:
9839 //
9840 // C++ [expr.unary.op]p1:
9841 // [...] the expression to which [the unary * operator] is applied shall
9842 // be a pointer to an object type, or a pointer to a function type
9843 if (S.getLangOpts().CPlusPlus && Result->isVoidType())
9844 S.Diag(OpLoc, diag::ext_typecheck_indirection_through_void_pointer)
9845 << OpTy << Op->getSourceRange();
9846
John McCall4bc41ae2010-11-18 19:01:18 +00009847 // Dereferences are usually l-values...
9848 VK = VK_LValue;
9849
9850 // ...except that certain expressions are never l-values in C.
David Blaikiebbafb8a2012-03-11 07:00:24 +00009851 if (!S.getLangOpts().CPlusPlus && Result.isCForbiddenLValueType())
John McCall4bc41ae2010-11-18 19:01:18 +00009852 VK = VK_RValue;
Chris Lattner9156f1b2010-07-05 19:17:26 +00009853
9854 return Result;
Steve Naroff1926c832007-04-24 00:23:05 +00009855}
Steve Naroff218bc2b2007-05-04 21:54:46 +00009856
Richard Smith0f0af192014-11-08 05:07:16 +00009857BinaryOperatorKind Sema::ConvertTokenKindToBinaryOpcode(tok::TokenKind Kind) {
John McCalle3027922010-08-25 11:45:40 +00009858 BinaryOperatorKind Opc;
Steve Naroff218bc2b2007-05-04 21:54:46 +00009859 switch (Kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00009860 default: llvm_unreachable("Unknown binop!");
John McCalle3027922010-08-25 11:45:40 +00009861 case tok::periodstar: Opc = BO_PtrMemD; break;
9862 case tok::arrowstar: Opc = BO_PtrMemI; break;
9863 case tok::star: Opc = BO_Mul; break;
9864 case tok::slash: Opc = BO_Div; break;
9865 case tok::percent: Opc = BO_Rem; break;
9866 case tok::plus: Opc = BO_Add; break;
9867 case tok::minus: Opc = BO_Sub; break;
9868 case tok::lessless: Opc = BO_Shl; break;
9869 case tok::greatergreater: Opc = BO_Shr; break;
9870 case tok::lessequal: Opc = BO_LE; break;
9871 case tok::less: Opc = BO_LT; break;
9872 case tok::greaterequal: Opc = BO_GE; break;
9873 case tok::greater: Opc = BO_GT; break;
9874 case tok::exclaimequal: Opc = BO_NE; break;
9875 case tok::equalequal: Opc = BO_EQ; break;
9876 case tok::amp: Opc = BO_And; break;
9877 case tok::caret: Opc = BO_Xor; break;
9878 case tok::pipe: Opc = BO_Or; break;
9879 case tok::ampamp: Opc = BO_LAnd; break;
9880 case tok::pipepipe: Opc = BO_LOr; break;
9881 case tok::equal: Opc = BO_Assign; break;
9882 case tok::starequal: Opc = BO_MulAssign; break;
9883 case tok::slashequal: Opc = BO_DivAssign; break;
9884 case tok::percentequal: Opc = BO_RemAssign; break;
9885 case tok::plusequal: Opc = BO_AddAssign; break;
9886 case tok::minusequal: Opc = BO_SubAssign; break;
9887 case tok::lesslessequal: Opc = BO_ShlAssign; break;
9888 case tok::greatergreaterequal: Opc = BO_ShrAssign; break;
9889 case tok::ampequal: Opc = BO_AndAssign; break;
9890 case tok::caretequal: Opc = BO_XorAssign; break;
9891 case tok::pipeequal: Opc = BO_OrAssign; break;
9892 case tok::comma: Opc = BO_Comma; break;
Steve Naroff218bc2b2007-05-04 21:54:46 +00009893 }
9894 return Opc;
9895}
9896
John McCalle3027922010-08-25 11:45:40 +00009897static inline UnaryOperatorKind ConvertTokenKindToUnaryOpcode(
Steve Naroff35d85152007-05-07 00:24:15 +00009898 tok::TokenKind Kind) {
John McCalle3027922010-08-25 11:45:40 +00009899 UnaryOperatorKind Opc;
Steve Naroff35d85152007-05-07 00:24:15 +00009900 switch (Kind) {
David Blaikie83d382b2011-09-23 05:06:16 +00009901 default: llvm_unreachable("Unknown unary op!");
John McCalle3027922010-08-25 11:45:40 +00009902 case tok::plusplus: Opc = UO_PreInc; break;
9903 case tok::minusminus: Opc = UO_PreDec; break;
9904 case tok::amp: Opc = UO_AddrOf; break;
9905 case tok::star: Opc = UO_Deref; break;
9906 case tok::plus: Opc = UO_Plus; break;
9907 case tok::minus: Opc = UO_Minus; break;
9908 case tok::tilde: Opc = UO_Not; break;
9909 case tok::exclaim: Opc = UO_LNot; break;
9910 case tok::kw___real: Opc = UO_Real; break;
9911 case tok::kw___imag: Opc = UO_Imag; break;
9912 case tok::kw___extension__: Opc = UO_Extension; break;
Steve Naroff35d85152007-05-07 00:24:15 +00009913 }
9914 return Opc;
9915}
9916
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009917/// DiagnoseSelfAssignment - Emits a warning if a value is assigned to itself.
9918/// This warning is only emitted for builtin assignment operations. It is also
9919/// suppressed in the event of macro expansions.
Richard Trieuda4f43a62011-09-07 01:33:52 +00009920static void DiagnoseSelfAssignment(Sema &S, Expr *LHSExpr, Expr *RHSExpr,
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009921 SourceLocation OpLoc) {
9922 if (!S.ActiveTemplateInstantiations.empty())
9923 return;
9924 if (OpLoc.isInvalid() || OpLoc.isMacroID())
9925 return;
Richard Trieuda4f43a62011-09-07 01:33:52 +00009926 LHSExpr = LHSExpr->IgnoreParenImpCasts();
9927 RHSExpr = RHSExpr->IgnoreParenImpCasts();
9928 const DeclRefExpr *LHSDeclRef = dyn_cast<DeclRefExpr>(LHSExpr);
9929 const DeclRefExpr *RHSDeclRef = dyn_cast<DeclRefExpr>(RHSExpr);
9930 if (!LHSDeclRef || !RHSDeclRef ||
9931 LHSDeclRef->getLocation().isMacroID() ||
9932 RHSDeclRef->getLocation().isMacroID())
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009933 return;
Richard Trieuda4f43a62011-09-07 01:33:52 +00009934 const ValueDecl *LHSDecl =
9935 cast<ValueDecl>(LHSDeclRef->getDecl()->getCanonicalDecl());
9936 const ValueDecl *RHSDecl =
9937 cast<ValueDecl>(RHSDeclRef->getDecl()->getCanonicalDecl());
9938 if (LHSDecl != RHSDecl)
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009939 return;
Richard Trieuda4f43a62011-09-07 01:33:52 +00009940 if (LHSDecl->getType().isVolatileQualified())
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009941 return;
Richard Trieuda4f43a62011-09-07 01:33:52 +00009942 if (const ReferenceType *RefTy = LHSDecl->getType()->getAs<ReferenceType>())
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009943 if (RefTy->getPointeeType().isVolatileQualified())
9944 return;
9945
9946 S.Diag(OpLoc, diag::warn_self_assignment)
Richard Trieuda4f43a62011-09-07 01:33:52 +00009947 << LHSDeclRef->getType()
9948 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange();
Chandler Carruthe0cee6a2011-01-04 06:52:15 +00009949}
9950
Ted Kremenekebeabab2013-04-22 22:46:52 +00009951/// Check if a bitwise-& is performed on an Objective-C pointer. This
9952/// is usually indicative of introspection within the Objective-C pointer.
9953static void checkObjCPointerIntrospection(Sema &S, ExprResult &L, ExprResult &R,
9954 SourceLocation OpLoc) {
9955 if (!S.getLangOpts().ObjC1)
9956 return;
9957
Craig Topperc3ec1492014-05-26 06:22:03 +00009958 const Expr *ObjCPointerExpr = nullptr, *OtherExpr = nullptr;
Ted Kremenekebeabab2013-04-22 22:46:52 +00009959 const Expr *LHS = L.get();
9960 const Expr *RHS = R.get();
9961
9962 if (LHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
9963 ObjCPointerExpr = LHS;
9964 OtherExpr = RHS;
9965 }
9966 else if (RHS->IgnoreParenCasts()->getType()->isObjCObjectPointerType()) {
9967 ObjCPointerExpr = RHS;
9968 OtherExpr = LHS;
9969 }
9970
9971 // This warning is deliberately made very specific to reduce false
9972 // positives with logic that uses '&' for hashing. This logic mainly
9973 // looks for code trying to introspect into tagged pointers, which
9974 // code should generally never do.
9975 if (ObjCPointerExpr && isa<IntegerLiteral>(OtherExpr->IgnoreParenCasts())) {
Ted Kremenek009d61d2013-06-24 21:35:39 +00009976 unsigned Diag = diag::warn_objc_pointer_masking;
9977 // Determine if we are introspecting the result of performSelectorXXX.
9978 const Expr *Ex = ObjCPointerExpr->IgnoreParenCasts();
9979 // Special case messages to -performSelector and friends, which
9980 // can return non-pointer values boxed in a pointer value.
9981 // Some clients may wish to silence warnings in this subcase.
9982 if (const ObjCMessageExpr *ME = dyn_cast<ObjCMessageExpr>(Ex)) {
9983 Selector S = ME->getSelector();
9984 StringRef SelArg0 = S.getNameForSlot(0);
9985 if (SelArg0.startswith("performSelector"))
9986 Diag = diag::warn_objc_pointer_masking_performSelector;
9987 }
9988
9989 S.Diag(OpLoc, Diag)
Ted Kremenekebeabab2013-04-22 22:46:52 +00009990 << ObjCPointerExpr->getSourceRange();
9991 }
9992}
9993
Kaelyn Takata7a503692015-01-27 22:01:39 +00009994static NamedDecl *getDeclFromExpr(Expr *E) {
9995 if (!E)
9996 return nullptr;
9997 if (auto *DRE = dyn_cast<DeclRefExpr>(E))
9998 return DRE->getDecl();
9999 if (auto *ME = dyn_cast<MemberExpr>(E))
10000 return ME->getMemberDecl();
10001 if (auto *IRE = dyn_cast<ObjCIvarRefExpr>(E))
10002 return IRE->getDecl();
10003 return nullptr;
10004}
10005
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010006/// CreateBuiltinBinOp - Creates a new built-in binary operation with
10007/// operator @p Opc at location @c TokLoc. This routine only supports
10008/// built-in operations; ActOnBinOp handles overloaded operators.
John McCalldadc5752010-08-24 06:29:42 +000010009ExprResult Sema::CreateBuiltinBinOp(SourceLocation OpLoc,
Argyrios Kyrtzidis7a808c02011-01-05 20:09:36 +000010010 BinaryOperatorKind Opc,
Richard Trieu4a287fb2011-09-07 01:49:20 +000010011 Expr *LHSExpr, Expr *RHSExpr) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010012 if (getLangOpts().CPlusPlus11 && isa<InitListExpr>(RHSExpr)) {
Sebastian Redl67766732012-02-27 20:34:02 +000010013 // The syntax only allows initializer lists on the RHS of assignment,
10014 // so we don't need to worry about accepting invalid code for
10015 // non-assignment operators.
10016 // C++11 5.17p9:
10017 // The meaning of x = {v} [...] is that of x = T(v) [...]. The meaning
10018 // of x = {} is x = T().
10019 InitializationKind Kind =
10020 InitializationKind::CreateDirectList(RHSExpr->getLocStart());
10021 InitializedEntity Entity =
10022 InitializedEntity::InitializeTemporary(LHSExpr->getType());
Dmitri Gribenko8f8930f2013-05-03 15:05:50 +000010023 InitializationSequence InitSeq(*this, Entity, Kind, RHSExpr);
Benjamin Kramercc4c49d2012-08-23 23:38:35 +000010024 ExprResult Init = InitSeq.Perform(*this, Entity, Kind, RHSExpr);
Sebastian Redl67766732012-02-27 20:34:02 +000010025 if (Init.isInvalid())
10026 return Init;
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010027 RHSExpr = Init.get();
Sebastian Redl67766732012-02-27 20:34:02 +000010028 }
10029
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010030 ExprResult LHS = LHSExpr, RHS = RHSExpr;
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010031 QualType ResultTy; // Result type of the binary operator.
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010032 // The following two variables are used for compound assignment operators
10033 QualType CompLHSTy; // Type of LHS after promotions for computation
10034 QualType CompResultTy; // Type of computation result
John McCall7decc9e2010-11-18 06:31:45 +000010035 ExprValueKind VK = VK_RValue;
10036 ExprObjectKind OK = OK_Ordinary;
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010037
Kaelyn Takata15867822014-11-21 18:48:04 +000010038 if (!getLangOpts().CPlusPlus) {
10039 // C cannot handle TypoExpr nodes on either side of a binop because it
10040 // doesn't handle dependent types properly, so make sure any TypoExprs have
10041 // been dealt with before checking the operands.
10042 LHS = CorrectDelayedTyposInExpr(LHSExpr);
Kaelyn Takata7a503692015-01-27 22:01:39 +000010043 RHS = CorrectDelayedTyposInExpr(RHSExpr, [Opc, LHS](Expr *E) {
10044 if (Opc != BO_Assign)
10045 return ExprResult(E);
10046 // Avoid correcting the RHS to the same Expr as the LHS.
10047 Decl *D = getDeclFromExpr(E);
10048 return (D && D == getDeclFromExpr(LHS.get())) ? ExprError() : E;
10049 });
Kaelyn Takata15867822014-11-21 18:48:04 +000010050 if (!LHS.isUsable() || !RHS.isUsable())
10051 return ExprError();
10052 }
10053
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010054 switch (Opc) {
John McCalle3027922010-08-25 11:45:40 +000010055 case BO_Assign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010056 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, QualType());
David Blaikiebbafb8a2012-03-11 07:00:24 +000010057 if (getLangOpts().CPlusPlus &&
Richard Trieu4a287fb2011-09-07 01:49:20 +000010058 LHS.get()->getObjectKind() != OK_ObjCProperty) {
10059 VK = LHS.get()->getValueKind();
10060 OK = LHS.get()->getObjectKind();
John McCall7decc9e2010-11-18 06:31:45 +000010061 }
Richard Trieu17ddb822015-01-10 06:04:18 +000010062 if (!ResultTy.isNull()) {
Richard Trieu4a287fb2011-09-07 01:49:20 +000010063 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
Richard Trieu36d0b2b2015-01-13 02:32:02 +000010064 DiagnoseSelfMove(LHS.get(), RHS.get(), OpLoc);
Richard Trieu17ddb822015-01-10 06:04:18 +000010065 }
Fariborz Jahanianef202d92014-11-18 21:57:54 +000010066 RecordModifiableNonNullParam(*this, LHS.get());
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010067 break;
John McCalle3027922010-08-25 11:45:40 +000010068 case BO_PtrMemD:
10069 case BO_PtrMemI:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010070 ResultTy = CheckPointerToMemberOperands(LHS, RHS, VK, OpLoc,
John McCalle3027922010-08-25 11:45:40 +000010071 Opc == BO_PtrMemI);
Sebastian Redl112a97662009-02-07 00:15:38 +000010072 break;
John McCalle3027922010-08-25 11:45:40 +000010073 case BO_Mul:
10074 case BO_Div:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010075 ResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, false,
John McCalle3027922010-08-25 11:45:40 +000010076 Opc == BO_Div);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010077 break;
John McCalle3027922010-08-25 11:45:40 +000010078 case BO_Rem:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010079 ResultTy = CheckRemainderOperands(LHS, RHS, OpLoc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010080 break;
John McCalle3027922010-08-25 11:45:40 +000010081 case BO_Add:
Nico Weberccec40d2012-03-02 22:01:22 +000010082 ResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010083 break;
John McCalle3027922010-08-25 11:45:40 +000010084 case BO_Sub:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010085 ResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010086 break;
John McCalle3027922010-08-25 11:45:40 +000010087 case BO_Shl:
10088 case BO_Shr:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010089 ResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010090 break;
John McCalle3027922010-08-25 11:45:40 +000010091 case BO_LE:
10092 case BO_LT:
10093 case BO_GE:
10094 case BO_GT:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010095 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, true);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010096 break;
John McCalle3027922010-08-25 11:45:40 +000010097 case BO_EQ:
10098 case BO_NE:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010099 ResultTy = CheckCompareOperands(LHS, RHS, OpLoc, Opc, false);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010100 break;
John McCalle3027922010-08-25 11:45:40 +000010101 case BO_And:
Ted Kremenekebeabab2013-04-22 22:46:52 +000010102 checkObjCPointerIntrospection(*this, LHS, RHS, OpLoc);
John McCalle3027922010-08-25 11:45:40 +000010103 case BO_Xor:
10104 case BO_Or:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010105 ResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010106 break;
John McCalle3027922010-08-25 11:45:40 +000010107 case BO_LAnd:
10108 case BO_LOr:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010109 ResultTy = CheckLogicalOperands(LHS, RHS, OpLoc, Opc);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010110 break;
John McCalle3027922010-08-25 11:45:40 +000010111 case BO_MulAssign:
10112 case BO_DivAssign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010113 CompResultTy = CheckMultiplyDivideOperands(LHS, RHS, OpLoc, true,
John McCall7decc9e2010-11-18 06:31:45 +000010114 Opc == BO_DivAssign);
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010115 CompLHSTy = CompResultTy;
Richard Trieu4a287fb2011-09-07 01:49:20 +000010116 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10117 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010118 break;
John McCalle3027922010-08-25 11:45:40 +000010119 case BO_RemAssign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010120 CompResultTy = CheckRemainderOperands(LHS, RHS, OpLoc, true);
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010121 CompLHSTy = CompResultTy;
Richard Trieu4a287fb2011-09-07 01:49:20 +000010122 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10123 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010124 break;
John McCalle3027922010-08-25 11:45:40 +000010125 case BO_AddAssign:
Nico Weberccec40d2012-03-02 22:01:22 +000010126 CompResultTy = CheckAdditionOperands(LHS, RHS, OpLoc, Opc, &CompLHSTy);
Richard Trieu4a287fb2011-09-07 01:49:20 +000010127 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10128 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010129 break;
John McCalle3027922010-08-25 11:45:40 +000010130 case BO_SubAssign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010131 CompResultTy = CheckSubtractionOperands(LHS, RHS, OpLoc, &CompLHSTy);
10132 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10133 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010134 break;
John McCalle3027922010-08-25 11:45:40 +000010135 case BO_ShlAssign:
10136 case BO_ShrAssign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010137 CompResultTy = CheckShiftOperands(LHS, RHS, OpLoc, Opc, true);
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010138 CompLHSTy = CompResultTy;
Richard Trieu4a287fb2011-09-07 01:49:20 +000010139 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10140 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010141 break;
John McCalle3027922010-08-25 11:45:40 +000010142 case BO_AndAssign:
Nikola Smiljanic292b5ce2014-05-30 00:15:04 +000010143 case BO_OrAssign: // fallthrough
10144 DiagnoseSelfAssignment(*this, LHS.get(), RHS.get(), OpLoc);
John McCalle3027922010-08-25 11:45:40 +000010145 case BO_XorAssign:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010146 CompResultTy = CheckBitwiseOperands(LHS, RHS, OpLoc, true);
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010147 CompLHSTy = CompResultTy;
Richard Trieu4a287fb2011-09-07 01:49:20 +000010148 if (!CompResultTy.isNull() && !LHS.isInvalid() && !RHS.isInvalid())
10149 ResultTy = CheckAssignmentOperands(LHS.get(), RHS, OpLoc, CompResultTy);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010150 break;
John McCalle3027922010-08-25 11:45:40 +000010151 case BO_Comma:
Richard Trieu4a287fb2011-09-07 01:49:20 +000010152 ResultTy = CheckCommaOperands(*this, LHS, RHS, OpLoc);
David Blaikiebbafb8a2012-03-11 07:00:24 +000010153 if (getLangOpts().CPlusPlus && !RHS.isInvalid()) {
Richard Trieu4a287fb2011-09-07 01:49:20 +000010154 VK = RHS.get()->getValueKind();
10155 OK = RHS.get()->getObjectKind();
John McCall7decc9e2010-11-18 06:31:45 +000010156 }
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010157 break;
10158 }
Richard Trieu4a287fb2011-09-07 01:49:20 +000010159 if (ResultTy.isNull() || LHS.isInvalid() || RHS.isInvalid())
Sebastian Redlb5d49352009-01-19 22:31:54 +000010160 return ExprError();
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000010161
10162 // Check for array bounds violations for both sides of the BinaryOperator
Richard Trieu4a287fb2011-09-07 01:49:20 +000010163 CheckArrayAccess(LHS.get());
10164 CheckArrayAccess(RHS.get());
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000010165
Fariborz Jahanian06bb7f72013-03-28 19:50:55 +000010166 if (const ObjCIsaExpr *OISA = dyn_cast<ObjCIsaExpr>(LHS.get()->IgnoreParenCasts())) {
10167 NamedDecl *ObjectSetClass = LookupSingleName(TUScope,
10168 &Context.Idents.get("object_setClass"),
10169 SourceLocation(), LookupOrdinaryName);
10170 if (ObjectSetClass && isa<ObjCIsaExpr>(LHS.get())) {
10171 SourceLocation RHSLocEnd = PP.getLocForEndOfToken(RHS.get()->getLocEnd());
10172 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign) <<
10173 FixItHint::CreateInsertion(LHS.get()->getLocStart(), "object_setClass(") <<
10174 FixItHint::CreateReplacement(SourceRange(OISA->getOpLoc(), OpLoc), ",") <<
10175 FixItHint::CreateInsertion(RHSLocEnd, ")");
10176 }
10177 else
10178 Diag(LHS.get()->getExprLoc(), diag::warn_objc_isa_assign);
10179 }
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +000010180 else if (const ObjCIvarRefExpr *OIRE =
10181 dyn_cast<ObjCIvarRefExpr>(LHS.get()->IgnoreParenCasts()))
Fariborz Jahanianf12ff4df2013-04-02 18:57:54 +000010182 DiagnoseDirectIsaAccess(*this, OIRE, OpLoc, RHS.get());
Fariborz Jahanian3b602ce2013-03-28 23:39:11 +000010183
Eli Friedman8b7b1b12009-03-28 01:22:36 +000010184 if (CompResultTy.isNull())
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010185 return new (Context) BinaryOperator(LHS.get(), RHS.get(), Opc, ResultTy, VK,
10186 OK, OpLoc, FPFeatures.fp_contract);
David Blaikiebbafb8a2012-03-11 07:00:24 +000010187 if (getLangOpts().CPlusPlus && LHS.get()->getObjectKind() !=
Richard Trieucfc491d2011-08-02 04:35:43 +000010188 OK_ObjCProperty) {
John McCall7decc9e2010-11-18 06:31:45 +000010189 VK = VK_LValue;
Richard Trieu4a287fb2011-09-07 01:49:20 +000010190 OK = LHS.get()->getObjectKind();
John McCall7decc9e2010-11-18 06:31:45 +000010191 }
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010192 return new (Context) CompoundAssignOperator(
10193 LHS.get(), RHS.get(), Opc, ResultTy, VK, OK, CompLHSTy, CompResultTy,
10194 OpLoc, FPFeatures.fp_contract);
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010195}
10196
Sebastian Redl44615072009-10-27 12:10:02 +000010197/// DiagnoseBitwisePrecedence - Emit a warning when bitwise and comparison
10198/// operators are mixed in a way that suggests that the programmer forgot that
10199/// comparison operators have higher precedence. The most typical example of
10200/// such code is "flags & 0x0020 != 0", which is equivalent to "flags & 1".
John McCalle3027922010-08-25 11:45:40 +000010201static void DiagnoseBitwisePrecedence(Sema &Self, BinaryOperatorKind Opc,
Richard Trieu4a287fb2011-09-07 01:49:20 +000010202 SourceLocation OpLoc, Expr *LHSExpr,
10203 Expr *RHSExpr) {
Eli Friedman37feb2d2012-11-15 00:29:07 +000010204 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr);
10205 BinaryOperator *RHSBO = dyn_cast<BinaryOperator>(RHSExpr);
Sebastian Redl43028242009-10-26 15:24:15 +000010206
Eli Friedman37feb2d2012-11-15 00:29:07 +000010207 // Check that one of the sides is a comparison operator.
10208 bool isLeftComp = LHSBO && LHSBO->isComparisonOp();
10209 bool isRightComp = RHSBO && RHSBO->isComparisonOp();
10210 if (!isLeftComp && !isRightComp)
Sebastian Redl43028242009-10-26 15:24:15 +000010211 return;
10212
10213 // Bitwise operations are sometimes used as eager logical ops.
10214 // Don't diagnose this.
Eli Friedman37feb2d2012-11-15 00:29:07 +000010215 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp();
10216 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp();
10217 if ((isLeftComp || isLeftBitwise) && (isRightComp || isRightBitwise))
Sebastian Redl43028242009-10-26 15:24:15 +000010218 return;
10219
Richard Trieu4a287fb2011-09-07 01:49:20 +000010220 SourceRange DiagRange = isLeftComp ? SourceRange(LHSExpr->getLocStart(),
10221 OpLoc)
10222 : SourceRange(OpLoc, RHSExpr->getLocEnd());
Eli Friedman37feb2d2012-11-15 00:29:07 +000010223 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr();
Richard Trieu73088052011-08-10 22:41:34 +000010224 SourceRange ParensRange = isLeftComp ?
Eli Friedman37feb2d2012-11-15 00:29:07 +000010225 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd())
Richard Trieu7ec1a312014-08-23 00:30:57 +000010226 : SourceRange(LHSExpr->getLocStart(), RHSBO->getLHS()->getLocEnd());
Richard Trieu73088052011-08-10 22:41:34 +000010227
10228 Self.Diag(OpLoc, diag::warn_precedence_bitwise_rel)
Eli Friedman37feb2d2012-11-15 00:29:07 +000010229 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr;
Richard Trieu73088052011-08-10 22:41:34 +000010230 SuggestParentheses(Self, OpLoc,
David Blaikiedac86fd2012-10-08 01:19:49 +000010231 Self.PDiag(diag::note_precedence_silence) << OpStr,
Nico Webercdfb1ae2012-06-03 07:07:00 +000010232 (isLeftComp ? LHSExpr : RHSExpr)->getSourceRange());
Richard Trieu73088052011-08-10 22:41:34 +000010233 SuggestParentheses(Self, OpLoc,
Eli Friedman37feb2d2012-11-15 00:29:07 +000010234 Self.PDiag(diag::note_precedence_bitwise_first)
10235 << BinaryOperator::getOpcodeStr(Opc),
Richard Trieu73088052011-08-10 22:41:34 +000010236 ParensRange);
Sebastian Redl43028242009-10-26 15:24:15 +000010237}
10238
Argyrios Kyrtzidis01bf7772011-06-20 18:41:26 +000010239/// \brief It accepts a '&' expr that is inside a '|' one.
10240/// Emit a diagnostic together with a fixit hint that wraps the '&' expression
10241/// in parentheses.
10242static void
10243EmitDiagnosticForBitwiseAndInBitwiseOr(Sema &Self, SourceLocation OpLoc,
10244 BinaryOperator *Bop) {
10245 assert(Bop->getOpcode() == BO_And);
10246 Self.Diag(Bop->getOperatorLoc(), diag::warn_bitwise_and_in_bitwise_or)
10247 << Bop->getSourceRange() << OpLoc;
10248 SuggestParentheses(Self, Bop->getOperatorLoc(),
David Blaikiedac86fd2012-10-08 01:19:49 +000010249 Self.PDiag(diag::note_precedence_silence)
10250 << Bop->getOpcodeStr(),
Argyrios Kyrtzidis01bf7772011-06-20 18:41:26 +000010251 Bop->getSourceRange());
10252}
10253
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010254/// \brief It accepts a '&&' expr that is inside a '||' one.
10255/// Emit a diagnostic together with a fixit hint that wraps the '&&' expression
10256/// in parentheses.
10257static void
10258EmitDiagnosticForLogicalAndInLogicalOr(Sema &Self, SourceLocation OpLoc,
Argyrios Kyrtzidisad8b4d42011-04-22 19:16:27 +000010259 BinaryOperator *Bop) {
10260 assert(Bop->getOpcode() == BO_LAnd);
Chandler Carruthb00e8c02011-06-16 01:05:14 +000010261 Self.Diag(Bop->getOperatorLoc(), diag::warn_logical_and_in_logical_or)
10262 << Bop->getSourceRange() << OpLoc;
Argyrios Kyrtzidisad8b4d42011-04-22 19:16:27 +000010263 SuggestParentheses(Self, Bop->getOperatorLoc(),
David Blaikiedac86fd2012-10-08 01:19:49 +000010264 Self.PDiag(diag::note_precedence_silence)
10265 << Bop->getOpcodeStr(),
Chandler Carruthb00e8c02011-06-16 01:05:14 +000010266 Bop->getSourceRange());
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010267}
10268
10269/// \brief Returns true if the given expression can be evaluated as a constant
10270/// 'true'.
10271static bool EvaluatesAsTrue(Sema &S, Expr *E) {
10272 bool Res;
Richard Smitha6c87032013-08-19 22:06:05 +000010273 return !E->isValueDependent() &&
10274 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && Res;
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010275}
10276
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010277/// \brief Returns true if the given expression can be evaluated as a constant
10278/// 'false'.
10279static bool EvaluatesAsFalse(Sema &S, Expr *E) {
10280 bool Res;
Richard Smitha6c87032013-08-19 22:06:05 +000010281 return !E->isValueDependent() &&
10282 E->EvaluateAsBooleanCondition(Res, S.getASTContext()) && !Res;
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010283}
10284
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010285/// \brief Look for '&&' in the left hand of a '||' expr.
10286static void DiagnoseLogicalAndInLogicalOrLHS(Sema &S, SourceLocation OpLoc,
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010287 Expr *LHSExpr, Expr *RHSExpr) {
10288 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(LHSExpr)) {
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010289 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010290 // If it's "a && b || 0" don't warn since the precedence doesn't matter.
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010291 if (EvaluatesAsFalse(S, RHSExpr))
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010292 return;
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010293 // If it's "1 && a || b" don't warn since the precedence doesn't matter.
10294 if (!EvaluatesAsTrue(S, Bop->getLHS()))
10295 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
10296 } else if (Bop->getOpcode() == BO_LOr) {
10297 if (BinaryOperator *RBop = dyn_cast<BinaryOperator>(Bop->getRHS())) {
10298 // If it's "a || b && 1 || c" we didn't warn earlier for
10299 // "a || b && 1", but warn now.
10300 if (RBop->getOpcode() == BO_LAnd && EvaluatesAsTrue(S, RBop->getRHS()))
10301 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, RBop);
10302 }
10303 }
10304 }
10305}
10306
10307/// \brief Look for '&&' in the right hand of a '||' expr.
10308static void DiagnoseLogicalAndInLogicalOrRHS(Sema &S, SourceLocation OpLoc,
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010309 Expr *LHSExpr, Expr *RHSExpr) {
10310 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(RHSExpr)) {
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010311 if (Bop->getOpcode() == BO_LAnd) {
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010312 // If it's "0 || a && b" don't warn since the precedence doesn't matter.
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010313 if (EvaluatesAsFalse(S, LHSExpr))
Argyrios Kyrtzidis56e879d2010-11-17 19:18:19 +000010314 return;
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010315 // If it's "a || b && 1" don't warn since the precedence doesn't matter.
10316 if (!EvaluatesAsTrue(S, Bop->getRHS()))
10317 return EmitDiagnosticForLogicalAndInLogicalOr(S, OpLoc, Bop);
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010318 }
10319 }
10320}
10321
Argyrios Kyrtzidis01bf7772011-06-20 18:41:26 +000010322/// \brief Look for '&' in the left or right hand of a '|' expr.
10323static void DiagnoseBitwiseAndInBitwiseOr(Sema &S, SourceLocation OpLoc,
10324 Expr *OrArg) {
10325 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(OrArg)) {
10326 if (Bop->getOpcode() == BO_And)
10327 return EmitDiagnosticForBitwiseAndInBitwiseOr(S, OpLoc, Bop);
10328 }
10329}
10330
David Blaikie15f17cb2012-10-05 00:41:03 +000010331static void DiagnoseAdditionInShift(Sema &S, SourceLocation OpLoc,
David Blaikie82d3ab92012-10-19 18:26:06 +000010332 Expr *SubExpr, StringRef Shift) {
David Blaikie15f17cb2012-10-05 00:41:03 +000010333 if (BinaryOperator *Bop = dyn_cast<BinaryOperator>(SubExpr)) {
10334 if (Bop->getOpcode() == BO_Add || Bop->getOpcode() == BO_Sub) {
David Blaikiedac86fd2012-10-08 01:19:49 +000010335 StringRef Op = Bop->getOpcodeStr();
David Blaikie15f17cb2012-10-05 00:41:03 +000010336 S.Diag(Bop->getOperatorLoc(), diag::warn_addition_in_bitshift)
David Blaikie82d3ab92012-10-19 18:26:06 +000010337 << Bop->getSourceRange() << OpLoc << Shift << Op;
David Blaikie15f17cb2012-10-05 00:41:03 +000010338 SuggestParentheses(S, Bop->getOperatorLoc(),
David Blaikiedac86fd2012-10-08 01:19:49 +000010339 S.PDiag(diag::note_precedence_silence) << Op,
David Blaikie15f17cb2012-10-05 00:41:03 +000010340 Bop->getSourceRange());
10341 }
10342 }
10343}
10344
Richard Trieufe042e62013-04-17 02:12:45 +000010345static void DiagnoseShiftCompare(Sema &S, SourceLocation OpLoc,
10346 Expr *LHSExpr, Expr *RHSExpr) {
10347 CXXOperatorCallExpr *OCE = dyn_cast<CXXOperatorCallExpr>(LHSExpr);
10348 if (!OCE)
10349 return;
10350
10351 FunctionDecl *FD = OCE->getDirectCallee();
10352 if (!FD || !FD->isOverloadedOperator())
10353 return;
10354
10355 OverloadedOperatorKind Kind = FD->getOverloadedOperator();
10356 if (Kind != OO_LessLess && Kind != OO_GreaterGreater)
10357 return;
10358
10359 S.Diag(OpLoc, diag::warn_overloaded_shift_in_comparison)
10360 << LHSExpr->getSourceRange() << RHSExpr->getSourceRange()
10361 << (Kind == OO_LessLess);
Richard Trieufe042e62013-04-17 02:12:45 +000010362 SuggestParentheses(S, OCE->getOperatorLoc(),
10363 S.PDiag(diag::note_precedence_silence)
10364 << (Kind == OO_LessLess ? "<<" : ">>"),
10365 OCE->getSourceRange());
Richard Trieue0894972013-04-18 01:04:37 +000010366 SuggestParentheses(S, OpLoc,
10367 S.PDiag(diag::note_evaluate_comparison_first),
10368 SourceRange(OCE->getArg(1)->getLocStart(),
10369 RHSExpr->getLocEnd()));
Richard Trieufe042e62013-04-17 02:12:45 +000010370}
10371
Sebastian Redl43028242009-10-26 15:24:15 +000010372/// DiagnoseBinOpPrecedence - Emit warnings for expressions with tricky
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010373/// precedence.
John McCalle3027922010-08-25 11:45:40 +000010374static void DiagnoseBinOpPrecedence(Sema &Self, BinaryOperatorKind Opc,
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010375 SourceLocation OpLoc, Expr *LHSExpr,
10376 Expr *RHSExpr){
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010377 // Diagnose "arg1 'bitwise' arg2 'eq' arg3".
Sebastian Redl44615072009-10-27 12:10:02 +000010378 if (BinaryOperator::isBitwiseOp(Opc))
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010379 DiagnoseBitwisePrecedence(Self, Opc, OpLoc, LHSExpr, RHSExpr);
Argyrios Kyrtzidis01bf7772011-06-20 18:41:26 +000010380
10381 // Diagnose "arg1 & arg2 | arg3"
10382 if (Opc == BO_Or && !OpLoc.isMacroID()/* Don't warn in macros. */) {
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010383 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, LHSExpr);
10384 DiagnoseBitwiseAndInBitwiseOr(Self, OpLoc, RHSExpr);
Argyrios Kyrtzidis01bf7772011-06-20 18:41:26 +000010385 }
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010386
Argyrios Kyrtzidis14a96622010-11-17 18:26:36 +000010387 // Warn about arg1 || arg2 && arg3, as GCC 4.3+ does.
10388 // We don't warn for 'assert(a || b && "bad")' since this is safe.
Argyrios Kyrtzidisb94e5a32010-11-17 18:54:22 +000010389 if (Opc == BO_LOr && !OpLoc.isMacroID()/* Don't warn in macros. */) {
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010390 DiagnoseLogicalAndInLogicalOrLHS(Self, OpLoc, LHSExpr, RHSExpr);
10391 DiagnoseLogicalAndInLogicalOrRHS(Self, OpLoc, LHSExpr, RHSExpr);
Argyrios Kyrtzidisf89a56c2010-11-16 21:00:12 +000010392 }
David Blaikie15f17cb2012-10-05 00:41:03 +000010393
10394 if ((Opc == BO_Shl && LHSExpr->getType()->isIntegralType(Self.getASTContext()))
10395 || Opc == BO_Shr) {
David Blaikie82d3ab92012-10-19 18:26:06 +000010396 StringRef Shift = BinaryOperator::getOpcodeStr(Opc);
10397 DiagnoseAdditionInShift(Self, OpLoc, LHSExpr, Shift);
10398 DiagnoseAdditionInShift(Self, OpLoc, RHSExpr, Shift);
David Blaikie15f17cb2012-10-05 00:41:03 +000010399 }
Richard Trieufe042e62013-04-17 02:12:45 +000010400
10401 // Warn on overloaded shift operators and comparisons, such as:
10402 // cout << 5 == 4;
10403 if (BinaryOperator::isComparisonOp(Opc))
10404 DiagnoseShiftCompare(Self, OpLoc, LHSExpr, RHSExpr);
Sebastian Redl43028242009-10-26 15:24:15 +000010405}
10406
Steve Naroff218bc2b2007-05-04 21:54:46 +000010407// Binary Operators. 'Tok' is the token for the operator.
John McCalldadc5752010-08-24 06:29:42 +000010408ExprResult Sema::ActOnBinOp(Scope *S, SourceLocation TokLoc,
John McCalle3027922010-08-25 11:45:40 +000010409 tok::TokenKind Kind,
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010410 Expr *LHSExpr, Expr *RHSExpr) {
John McCalle3027922010-08-25 11:45:40 +000010411 BinaryOperatorKind Opc = ConvertTokenKindToBinaryOpcode(Kind);
Craig Topperc3ec1492014-05-26 06:22:03 +000010412 assert(LHSExpr && "ActOnBinOp(): missing left expression");
10413 assert(RHSExpr && "ActOnBinOp(): missing right expression");
Steve Naroff218bc2b2007-05-04 21:54:46 +000010414
Sebastian Redl43028242009-10-26 15:24:15 +000010415 // Emit warnings for tricky precedence issues, e.g. "bitfield & 0x4 == 0"
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010416 DiagnoseBinOpPrecedence(*this, Opc, TokLoc, LHSExpr, RHSExpr);
Sebastian Redl43028242009-10-26 15:24:15 +000010417
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010418 return BuildBinOp(S, TokLoc, Opc, LHSExpr, RHSExpr);
Douglas Gregor5287f092009-11-05 00:51:44 +000010419}
10420
John McCall526ab472011-10-25 17:37:35 +000010421/// Build an overloaded binary operator expression in the given scope.
10422static ExprResult BuildOverloadedBinOp(Sema &S, Scope *Sc, SourceLocation OpLoc,
10423 BinaryOperatorKind Opc,
10424 Expr *LHS, Expr *RHS) {
10425 // Find all of the overloaded operators visible from this
10426 // point. We perform both an operator-name lookup from the local
10427 // scope and an argument-dependent lookup based on the types of
10428 // the arguments.
10429 UnresolvedSet<16> Functions;
10430 OverloadedOperatorKind OverOp
10431 = BinaryOperator::getOverloadedOperator(Opc);
Richard Smith0daabd72014-09-23 20:31:39 +000010432 if (Sc && OverOp != OO_None && OverOp != OO_Equal)
John McCall526ab472011-10-25 17:37:35 +000010433 S.LookupOverloadedOperatorName(OverOp, Sc, LHS->getType(),
10434 RHS->getType(), Functions);
10435
10436 // Build the (potentially-overloaded, potentially-dependent)
10437 // binary operation.
10438 return S.CreateOverloadedBinOp(OpLoc, Opc, Functions, LHS, RHS);
10439}
10440
John McCalldadc5752010-08-24 06:29:42 +000010441ExprResult Sema::BuildBinOp(Scope *S, SourceLocation OpLoc,
John McCalle3027922010-08-25 11:45:40 +000010442 BinaryOperatorKind Opc,
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010443 Expr *LHSExpr, Expr *RHSExpr) {
John McCall9a43e122011-10-28 01:04:34 +000010444 // We want to end up calling one of checkPseudoObjectAssignment
10445 // (if the LHS is a pseudo-object), BuildOverloadedBinOp (if
10446 // both expressions are overloadable or either is type-dependent),
10447 // or CreateBuiltinBinOp (in any other case). We also want to get
10448 // any placeholder types out of the way.
10449
John McCall526ab472011-10-25 17:37:35 +000010450 // Handle pseudo-objects in the LHS.
10451 if (const BuiltinType *pty = LHSExpr->getType()->getAsPlaceholderType()) {
10452 // Assignments with a pseudo-object l-value need special analysis.
10453 if (pty->getKind() == BuiltinType::PseudoObject &&
10454 BinaryOperator::isAssignmentOp(Opc))
10455 return checkPseudoObjectAssignment(S, OpLoc, Opc, LHSExpr, RHSExpr);
10456
10457 // Don't resolve overloads if the other type is overloadable.
10458 if (pty->getKind() == BuiltinType::Overload) {
10459 // We can't actually test that if we still have a placeholder,
10460 // though. Fortunately, none of the exceptions we see in that
John McCall9a43e122011-10-28 01:04:34 +000010461 // code below are valid when the LHS is an overload set. Note
10462 // that an overload set can be dependently-typed, but it never
10463 // instantiates to having an overloadable type.
John McCall526ab472011-10-25 17:37:35 +000010464 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
10465 if (resolvedRHS.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010466 RHSExpr = resolvedRHS.get();
John McCall526ab472011-10-25 17:37:35 +000010467
John McCall9a43e122011-10-28 01:04:34 +000010468 if (RHSExpr->isTypeDependent() ||
10469 RHSExpr->getType()->isOverloadableType())
John McCall526ab472011-10-25 17:37:35 +000010470 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10471 }
10472
10473 ExprResult LHS = CheckPlaceholderExpr(LHSExpr);
10474 if (LHS.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010475 LHSExpr = LHS.get();
John McCall526ab472011-10-25 17:37:35 +000010476 }
10477
10478 // Handle pseudo-objects in the RHS.
10479 if (const BuiltinType *pty = RHSExpr->getType()->getAsPlaceholderType()) {
10480 // An overload in the RHS can potentially be resolved by the type
10481 // being assigned to.
John McCall9a43e122011-10-28 01:04:34 +000010482 if (Opc == BO_Assign && pty->getKind() == BuiltinType::Overload) {
10483 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
10484 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10485
Eli Friedman419b1ff2012-01-17 21:27:43 +000010486 if (LHSExpr->getType()->isOverloadableType())
10487 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10488
John McCall526ab472011-10-25 17:37:35 +000010489 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
John McCall9a43e122011-10-28 01:04:34 +000010490 }
John McCall526ab472011-10-25 17:37:35 +000010491
10492 // Don't resolve overloads if the other type is overloadable.
10493 if (pty->getKind() == BuiltinType::Overload &&
10494 LHSExpr->getType()->isOverloadableType())
10495 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
10496
10497 ExprResult resolvedRHS = CheckPlaceholderExpr(RHSExpr);
10498 if (!resolvedRHS.isUsable()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010499 RHSExpr = resolvedRHS.get();
John McCall526ab472011-10-25 17:37:35 +000010500 }
10501
David Blaikiebbafb8a2012-03-11 07:00:24 +000010502 if (getLangOpts().CPlusPlus) {
John McCall9a43e122011-10-28 01:04:34 +000010503 // If either expression is type-dependent, always build an
10504 // overloaded op.
10505 if (LHSExpr->isTypeDependent() || RHSExpr->isTypeDependent())
10506 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000010507
John McCall9a43e122011-10-28 01:04:34 +000010508 // Otherwise, build an overloaded op if either expression has an
10509 // overloadable type.
10510 if (LHSExpr->getType()->isOverloadableType() ||
10511 RHSExpr->getType()->isOverloadableType())
John McCall526ab472011-10-25 17:37:35 +000010512 return BuildOverloadedBinOp(*this, S, OpLoc, Opc, LHSExpr, RHSExpr);
Sebastian Redlb5d49352009-01-19 22:31:54 +000010513 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000010514
Douglas Gregor7d5fc7e2008-11-06 23:29:22 +000010515 // Build a built-in binary operation.
Richard Trieuf9bd0f52011-09-07 02:02:10 +000010516 return CreateBuiltinBinOp(OpLoc, Opc, LHSExpr, RHSExpr);
Steve Naroff218bc2b2007-05-04 21:54:46 +000010517}
10518
John McCalldadc5752010-08-24 06:29:42 +000010519ExprResult Sema::CreateBuiltinUnaryOp(SourceLocation OpLoc,
Argyrios Kyrtzidis7a808c02011-01-05 20:09:36 +000010520 UnaryOperatorKind Opc,
John Wiegley01296292011-04-08 18:41:53 +000010521 Expr *InputExpr) {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010522 ExprResult Input = InputExpr;
John McCall7decc9e2010-11-18 06:31:45 +000010523 ExprValueKind VK = VK_RValue;
10524 ExprObjectKind OK = OK_Ordinary;
Steve Naroff35d85152007-05-07 00:24:15 +000010525 QualType resultType;
10526 switch (Opc) {
John McCalle3027922010-08-25 11:45:40 +000010527 case UO_PreInc:
10528 case UO_PreDec:
10529 case UO_PostInc:
10530 case UO_PostDec:
David Majnemer74242432014-07-31 04:52:13 +000010531 resultType = CheckIncrementDecrementOperand(*this, Input.get(), VK, OK,
10532 OpLoc,
John McCalle3027922010-08-25 11:45:40 +000010533 Opc == UO_PreInc ||
10534 Opc == UO_PostInc,
10535 Opc == UO_PreInc ||
10536 Opc == UO_PreDec);
Steve Naroff35d85152007-05-07 00:24:15 +000010537 break;
John McCalle3027922010-08-25 11:45:40 +000010538 case UO_AddrOf:
Richard Smithaf9de912013-07-11 02:26:56 +000010539 resultType = CheckAddressOfOperand(Input, OpLoc);
Fariborz Jahanianef202d92014-11-18 21:57:54 +000010540 RecordModifiableNonNullParam(*this, InputExpr);
Steve Naroff35d85152007-05-07 00:24:15 +000010541 break;
John McCall31996342011-04-07 08:22:57 +000010542 case UO_Deref: {
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010543 Input = DefaultFunctionArrayLvalueConversion(Input.get());
Eli Friedman34866c72012-08-31 00:14:07 +000010544 if (Input.isInvalid()) return ExprError();
John Wiegley01296292011-04-08 18:41:53 +000010545 resultType = CheckIndirectionOperand(*this, Input.get(), VK, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +000010546 break;
John McCall31996342011-04-07 08:22:57 +000010547 }
John McCalle3027922010-08-25 11:45:40 +000010548 case UO_Plus:
10549 case UO_Minus:
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010550 Input = UsualUnaryConversions(Input.get());
John Wiegley01296292011-04-08 18:41:53 +000010551 if (Input.isInvalid()) return ExprError();
10552 resultType = Input.get()->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000010553 if (resultType->isDependentType())
10554 break;
Douglas Gregora3208f92010-06-22 23:41:02 +000010555 if (resultType->isArithmeticType() || // C99 6.5.3.3p1
10556 resultType->isVectorType())
Douglas Gregord08452f2008-11-19 15:42:04 +000010557 break;
David Blaikiebbafb8a2012-03-11 07:00:24 +000010558 else if (getLangOpts().CPlusPlus && // C++ [expr.unary.op]p6
John McCalle3027922010-08-25 11:45:40 +000010559 Opc == UO_Plus &&
Douglas Gregord08452f2008-11-19 15:42:04 +000010560 resultType->isPointerType())
10561 break;
10562
Sebastian Redlc215cfc2009-01-19 00:08:26 +000010563 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley01296292011-04-08 18:41:53 +000010564 << resultType << Input.get()->getSourceRange());
10565
John McCalle3027922010-08-25 11:45:40 +000010566 case UO_Not: // bitwise complement
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010567 Input = UsualUnaryConversions(Input.get());
Joey Gouly7d00f002013-02-21 11:49:56 +000010568 if (Input.isInvalid())
10569 return ExprError();
John Wiegley01296292011-04-08 18:41:53 +000010570 resultType = Input.get()->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000010571 if (resultType->isDependentType())
10572 break;
Chris Lattner0d707612008-07-25 23:52:49 +000010573 // C99 6.5.3.3p1. We allow complex int and float as a GCC extension.
10574 if (resultType->isComplexType() || resultType->isComplexIntegerType())
10575 // C99 does not support '~' for complex conjugation.
Chris Lattner29e812b2008-11-20 06:06:08 +000010576 Diag(OpLoc, diag::ext_integer_complement_complex)
Joey Gouly7d00f002013-02-21 11:49:56 +000010577 << resultType << Input.get()->getSourceRange();
John McCall36226622010-10-12 02:09:17 +000010578 else if (resultType->hasIntegerRepresentation())
10579 break;
Joey Gouly7d00f002013-02-21 11:49:56 +000010580 else if (resultType->isExtVectorType()) {
10581 if (Context.getLangOpts().OpenCL) {
10582 // OpenCL v1.1 s6.3.f: The bitwise operator not (~) does not operate
10583 // on vector float types.
10584 QualType T = resultType->getAs<ExtVectorType>()->getElementType();
10585 if (!T->isIntegerType())
10586 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10587 << resultType << Input.get()->getSourceRange());
10588 }
10589 break;
10590 } else {
Sebastian Redlc215cfc2009-01-19 00:08:26 +000010591 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
Joey Gouly7d00f002013-02-21 11:49:56 +000010592 << resultType << Input.get()->getSourceRange());
John McCall36226622010-10-12 02:09:17 +000010593 }
Steve Naroff35d85152007-05-07 00:24:15 +000010594 break;
John Wiegley01296292011-04-08 18:41:53 +000010595
John McCalle3027922010-08-25 11:45:40 +000010596 case UO_LNot: // logical negation
Steve Naroff71b59a92007-06-04 22:22:31 +000010597 // Unlike +/-/~, integer promotions aren't done here (C99 6.5.3.3p5).
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010598 Input = DefaultFunctionArrayLvalueConversion(Input.get());
John Wiegley01296292011-04-08 18:41:53 +000010599 if (Input.isInvalid()) return ExprError();
10600 resultType = Input.get()->getType();
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +000010601
10602 // Though we still have to promote half FP to float...
Joey Goulydd7f4562013-01-23 11:56:20 +000010603 if (resultType->isHalfType() && !Context.getLangOpts().NativeHalfType) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010604 Input = ImpCastExprToType(Input.get(), Context.FloatTy, CK_FloatingCast).get();
Anton Korobeynikovf0c267e2011-10-14 23:23:15 +000010605 resultType = Context.FloatTy;
10606 }
10607
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000010608 if (resultType->isDependentType())
10609 break;
Alp Tokerc620cab2014-01-20 07:20:22 +000010610 if (resultType->isScalarType() && !isScopedEnumerationType(resultType)) {
Abramo Bagnara7ccce982011-04-07 09:26:19 +000010611 // C99 6.5.3.3p1: ok, fallthrough;
David Blaikiebbafb8a2012-03-11 07:00:24 +000010612 if (Context.getLangOpts().CPlusPlus) {
Abramo Bagnara7ccce982011-04-07 09:26:19 +000010613 // C++03 [expr.unary.op]p8, C++0x [expr.unary.op]p9:
10614 // operand contextually converted to bool.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010615 Input = ImpCastExprToType(Input.get(), Context.BoolTy,
John Wiegley01296292011-04-08 18:41:53 +000010616 ScalarTypeToBooleanCastKind(resultType));
Joey Gouly7d00f002013-02-21 11:49:56 +000010617 } else if (Context.getLangOpts().OpenCL &&
10618 Context.getLangOpts().OpenCLVersion < 120) {
10619 // OpenCL v1.1 6.3.h: The logical operator not (!) does not
10620 // operate on scalar float types.
10621 if (!resultType->isIntegerType())
10622 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10623 << resultType << Input.get()->getSourceRange());
Abramo Bagnara7ccce982011-04-07 09:26:19 +000010624 }
Tanya Lattner3dd33b22012-01-19 01:16:16 +000010625 } else if (resultType->isExtVectorType()) {
Joey Gouly7d00f002013-02-21 11:49:56 +000010626 if (Context.getLangOpts().OpenCL &&
10627 Context.getLangOpts().OpenCLVersion < 120) {
10628 // OpenCL v1.1 6.3.h: The logical operator not (!) does not
10629 // operate on vector float types.
10630 QualType T = resultType->getAs<ExtVectorType>()->getElementType();
10631 if (!T->isIntegerType())
10632 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
10633 << resultType << Input.get()->getSourceRange());
10634 }
Tanya Lattner20248222012-01-16 21:02:28 +000010635 // Vector logical not returns the signed variant of the operand type.
10636 resultType = GetSignedVectorType(resultType);
10637 break;
John McCall36226622010-10-12 02:09:17 +000010638 } else {
Sebastian Redlc215cfc2009-01-19 00:08:26 +000010639 return ExprError(Diag(OpLoc, diag::err_typecheck_unary_expr)
John Wiegley01296292011-04-08 18:41:53 +000010640 << resultType << Input.get()->getSourceRange());
John McCall36226622010-10-12 02:09:17 +000010641 }
Douglas Gregordb8c6fd2010-09-20 17:13:33 +000010642
Chris Lattnerbe31ed82007-06-02 19:11:33 +000010643 // LNot always has type int. C99 6.5.3.3p5.
Sebastian Redlc215cfc2009-01-19 00:08:26 +000010644 // In C++, it's bool. C++ 5.3.1p8
Argyrios Kyrtzidis1bdd6882011-02-18 20:55:15 +000010645 resultType = Context.getLogicalOperationType();
Steve Naroff35d85152007-05-07 00:24:15 +000010646 break;
John McCalle3027922010-08-25 11:45:40 +000010647 case UO_Real:
10648 case UO_Imag:
John McCall4bc41ae2010-11-18 19:01:18 +000010649 resultType = CheckRealImagOperand(*this, Input, OpLoc, Opc == UO_Real);
Richard Smith0b6b8e42012-02-18 20:53:32 +000010650 // _Real maps ordinary l-values into ordinary l-values. _Imag maps ordinary
10651 // complex l-values to ordinary l-values and all other values to r-values.
John Wiegley01296292011-04-08 18:41:53 +000010652 if (Input.isInvalid()) return ExprError();
Richard Smith0b6b8e42012-02-18 20:53:32 +000010653 if (Opc == UO_Real || Input.get()->getType()->isAnyComplexType()) {
10654 if (Input.get()->getValueKind() != VK_RValue &&
10655 Input.get()->getObjectKind() == OK_Ordinary)
10656 VK = Input.get()->getValueKind();
David Blaikiebbafb8a2012-03-11 07:00:24 +000010657 } else if (!getLangOpts().CPlusPlus) {
Richard Smith0b6b8e42012-02-18 20:53:32 +000010658 // In C, a volatile scalar is read by __imag. In C++, it is not.
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010659 Input = DefaultLvalueConversion(Input.get());
Richard Smith0b6b8e42012-02-18 20:53:32 +000010660 }
Chris Lattner30b5dd02007-08-24 21:16:53 +000010661 break;
John McCalle3027922010-08-25 11:45:40 +000010662 case UO_Extension:
John Wiegley01296292011-04-08 18:41:53 +000010663 resultType = Input.get()->getType();
10664 VK = Input.get()->getValueKind();
10665 OK = Input.get()->getObjectKind();
Steve Naroff043d45d2007-05-15 02:32:35 +000010666 break;
Steve Naroff35d85152007-05-07 00:24:15 +000010667 }
John Wiegley01296292011-04-08 18:41:53 +000010668 if (resultType.isNull() || Input.isInvalid())
Sebastian Redlc215cfc2009-01-19 00:08:26 +000010669 return ExprError();
Douglas Gregor084d8552009-03-13 23:49:33 +000010670
Kaelyn Uhrain2e7aa5a2011-08-05 23:18:04 +000010671 // Check for array bounds violations in the operand of the UnaryOperator,
10672 // except for the '*' and '&' operators that have to be handled specially
10673 // by CheckArrayAccess (as there are special cases like &array[arraysize]
10674 // that are explicitly defined as valid by the standard).
10675 if (Opc != UO_AddrOf && Opc != UO_Deref)
10676 CheckArrayAccess(Input.get());
10677
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010678 return new (Context)
10679 UnaryOperator(Input.get(), Opc, resultType, VK, OK, OpLoc);
Steve Naroff35d85152007-05-07 00:24:15 +000010680}
Chris Lattnereefa10e2007-05-28 06:56:27 +000010681
Douglas Gregor72341032011-12-14 21:23:13 +000010682/// \brief Determine whether the given expression is a qualified member
10683/// access expression, of a form that could be turned into a pointer to member
10684/// with the address-of operator.
10685static bool isQualifiedMemberAccess(Expr *E) {
10686 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
10687 if (!DRE->getQualifier())
10688 return false;
10689
10690 ValueDecl *VD = DRE->getDecl();
10691 if (!VD->isCXXClassMember())
10692 return false;
10693
10694 if (isa<FieldDecl>(VD) || isa<IndirectFieldDecl>(VD))
10695 return true;
10696 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(VD))
10697 return Method->isInstance();
10698
10699 return false;
10700 }
10701
10702 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(E)) {
10703 if (!ULE->getQualifier())
10704 return false;
10705
10706 for (UnresolvedLookupExpr::decls_iterator D = ULE->decls_begin(),
10707 DEnd = ULE->decls_end();
10708 D != DEnd; ++D) {
10709 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(*D)) {
10710 if (Method->isInstance())
10711 return true;
10712 } else {
10713 // Overload set does not contain methods.
10714 break;
10715 }
10716 }
10717
10718 return false;
10719 }
10720
10721 return false;
10722}
10723
John McCalldadc5752010-08-24 06:29:42 +000010724ExprResult Sema::BuildUnaryOp(Scope *S, SourceLocation OpLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +000010725 UnaryOperatorKind Opc, Expr *Input) {
John McCall526ab472011-10-25 17:37:35 +000010726 // First things first: handle placeholders so that the
10727 // overloaded-operator check considers the right type.
10728 if (const BuiltinType *pty = Input->getType()->getAsPlaceholderType()) {
10729 // Increment and decrement of pseudo-object references.
10730 if (pty->getKind() == BuiltinType::PseudoObject &&
10731 UnaryOperator::isIncrementDecrementOp(Opc))
10732 return checkPseudoObjectIncDec(S, OpLoc, Opc, Input);
10733
10734 // extension is always a builtin operator.
10735 if (Opc == UO_Extension)
10736 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
10737
10738 // & gets special logic for several kinds of placeholder.
10739 // The builtin code knows what to do.
10740 if (Opc == UO_AddrOf &&
10741 (pty->getKind() == BuiltinType::Overload ||
10742 pty->getKind() == BuiltinType::UnknownAny ||
10743 pty->getKind() == BuiltinType::BoundMember))
10744 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
10745
10746 // Anything else needs to be handled now.
10747 ExprResult Result = CheckPlaceholderExpr(Input);
10748 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010749 Input = Result.get();
John McCall526ab472011-10-25 17:37:35 +000010750 }
10751
David Blaikiebbafb8a2012-03-11 07:00:24 +000010752 if (getLangOpts().CPlusPlus && Input->getType()->isOverloadableType() &&
Douglas Gregor72341032011-12-14 21:23:13 +000010753 UnaryOperator::getOverloadedOperator(Opc) != OO_None &&
10754 !(Opc == UO_AddrOf && isQualifiedMemberAccess(Input))) {
Douglas Gregor084d8552009-03-13 23:49:33 +000010755 // Find all of the overloaded operators visible from this
10756 // point. We perform both an operator-name lookup from the local
10757 // scope and an argument-dependent lookup based on the types of
10758 // the arguments.
John McCall4c4c1df2010-01-26 03:27:55 +000010759 UnresolvedSet<16> Functions;
Douglas Gregor084d8552009-03-13 23:49:33 +000010760 OverloadedOperatorKind OverOp = UnaryOperator::getOverloadedOperator(Opc);
John McCall4c4c1df2010-01-26 03:27:55 +000010761 if (S && OverOp != OO_None)
10762 LookupOverloadedOperatorName(OverOp, S, Input->getType(), QualType(),
10763 Functions);
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000010764
John McCallb268a282010-08-23 23:25:46 +000010765 return CreateOverloadedUnaryOp(OpLoc, Opc, Functions, Input);
Douglas Gregor084d8552009-03-13 23:49:33 +000010766 }
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000010767
John McCallb268a282010-08-23 23:25:46 +000010768 return CreateBuiltinUnaryOp(OpLoc, Opc, Input);
Douglas Gregor084d8552009-03-13 23:49:33 +000010769}
10770
Douglas Gregor5287f092009-11-05 00:51:44 +000010771// Unary Operators. 'Tok' is the token for the operator.
John McCalldadc5752010-08-24 06:29:42 +000010772ExprResult Sema::ActOnUnaryOp(Scope *S, SourceLocation OpLoc,
John McCall424cec92011-01-19 06:33:43 +000010773 tok::TokenKind Op, Expr *Input) {
John McCallb268a282010-08-23 23:25:46 +000010774 return BuildUnaryOp(S, OpLoc, ConvertTokenKindToUnaryOpcode(Op), Input);
Douglas Gregor5287f092009-11-05 00:51:44 +000010775}
10776
Steve Naroff66356bd2007-09-16 14:56:35 +000010777/// ActOnAddrLabel - Parse the GNU address of label extension: "&&foo".
Chris Lattnerc8e630e2011-02-17 07:39:24 +000010778ExprResult Sema::ActOnAddrLabel(SourceLocation OpLoc, SourceLocation LabLoc,
Chris Lattnercab02a62011-02-17 20:34:02 +000010779 LabelDecl *TheDecl) {
Eli Friedman276dd182013-09-05 00:02:25 +000010780 TheDecl->markUsed(Context);
Chris Lattnereefa10e2007-05-28 06:56:27 +000010781 // Create the AST node. The address of a label always has type 'void*'.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010782 return new (Context) AddrLabelExpr(OpLoc, LabLoc, TheDecl,
10783 Context.getPointerType(Context.VoidTy));
Chris Lattnereefa10e2007-05-28 06:56:27 +000010784}
10785
John McCall31168b02011-06-15 23:02:42 +000010786/// Given the last statement in a statement-expression, check whether
10787/// the result is a producing expression (like a call to an
10788/// ns_returns_retained function) and, if so, rebuild it to hoist the
10789/// release out of the full-expression. Otherwise, return null.
10790/// Cannot fail.
Richard Trieuba63ce62011-09-09 01:45:06 +000010791static Expr *maybeRebuildARCConsumingStmt(Stmt *Statement) {
John McCall31168b02011-06-15 23:02:42 +000010792 // Should always be wrapped with one of these.
Richard Trieuba63ce62011-09-09 01:45:06 +000010793 ExprWithCleanups *cleanups = dyn_cast<ExprWithCleanups>(Statement);
Craig Topperc3ec1492014-05-26 06:22:03 +000010794 if (!cleanups) return nullptr;
John McCall31168b02011-06-15 23:02:42 +000010795
10796 ImplicitCastExpr *cast = dyn_cast<ImplicitCastExpr>(cleanups->getSubExpr());
John McCall2d637d22011-09-10 06:18:15 +000010797 if (!cast || cast->getCastKind() != CK_ARCConsumeObject)
Craig Topperc3ec1492014-05-26 06:22:03 +000010798 return nullptr;
John McCall31168b02011-06-15 23:02:42 +000010799
10800 // Splice out the cast. This shouldn't modify any interesting
10801 // features of the statement.
10802 Expr *producer = cast->getSubExpr();
10803 assert(producer->getType() == cast->getType());
10804 assert(producer->getValueKind() == cast->getValueKind());
10805 cleanups->setSubExpr(producer);
10806 return cleanups;
10807}
10808
John McCall3abee492012-04-04 01:27:53 +000010809void Sema::ActOnStartStmtExpr() {
10810 PushExpressionEvaluationContext(ExprEvalContexts.back().Context);
10811}
10812
10813void Sema::ActOnStmtExprError() {
John McCalled7b2782012-04-06 18:20:53 +000010814 // Note that function is also called by TreeTransform when leaving a
10815 // StmtExpr scope without rebuilding anything.
10816
John McCall3abee492012-04-04 01:27:53 +000010817 DiscardCleanupsInEvaluationContext();
10818 PopExpressionEvaluationContext();
10819}
10820
John McCalldadc5752010-08-24 06:29:42 +000010821ExprResult
John McCallb268a282010-08-23 23:25:46 +000010822Sema::ActOnStmtExpr(SourceLocation LPLoc, Stmt *SubStmt,
Sebastian Redl6d4256c2009-03-15 17:47:39 +000010823 SourceLocation RPLoc) { // "({..})"
Chris Lattner366727f2007-07-24 16:58:17 +000010824 assert(SubStmt && isa<CompoundStmt>(SubStmt) && "Invalid action invocation!");
10825 CompoundStmt *Compound = cast<CompoundStmt>(SubStmt);
10826
John McCall3abee492012-04-04 01:27:53 +000010827 if (hasAnyUnrecoverableErrorsInThisFunction())
10828 DiscardCleanupsInEvaluationContext();
10829 assert(!ExprNeedsCleanups && "cleanups within StmtExpr not correctly bound!");
10830 PopExpressionEvaluationContext();
10831
Chris Lattner366727f2007-07-24 16:58:17 +000010832 // FIXME: there are a variety of strange constraints to enforce here, for
10833 // example, it is not possible to goto into a stmt expression apparently.
10834 // More semantic analysis is needed.
Mike Stump4e1f26a2009-02-19 03:04:26 +000010835
Alp Toker028ed912013-12-06 17:56:43 +000010836 // If there are sub-stmts in the compound stmt, take the type of the last one
Chris Lattner366727f2007-07-24 16:58:17 +000010837 // as the type of the stmtexpr.
10838 QualType Ty = Context.VoidTy;
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010839 bool StmtExprMayBindToTemp = false;
Chris Lattner944d3062008-07-26 19:51:01 +000010840 if (!Compound->body_empty()) {
10841 Stmt *LastStmt = Compound->body_back();
Craig Topperc3ec1492014-05-26 06:22:03 +000010842 LabelStmt *LastLabelStmt = nullptr;
Chris Lattner944d3062008-07-26 19:51:01 +000010843 // If LastStmt is a label, skip down through into the body.
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010844 while (LabelStmt *Label = dyn_cast<LabelStmt>(LastStmt)) {
10845 LastLabelStmt = Label;
Chris Lattner944d3062008-07-26 19:51:01 +000010846 LastStmt = Label->getSubStmt();
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010847 }
John McCall31168b02011-06-15 23:02:42 +000010848
John Wiegley01296292011-04-08 18:41:53 +000010849 if (Expr *LastE = dyn_cast<Expr>(LastStmt)) {
John McCall34376a62010-12-04 03:47:34 +000010850 // Do function/array conversion on the last expression, but not
10851 // lvalue-to-rvalue. However, initialize an unqualified type.
John Wiegley01296292011-04-08 18:41:53 +000010852 ExprResult LastExpr = DefaultFunctionArrayConversion(LastE);
10853 if (LastExpr.isInvalid())
10854 return ExprError();
10855 Ty = LastExpr.get()->getType().getUnqualifiedType();
John McCall34376a62010-12-04 03:47:34 +000010856
John Wiegley01296292011-04-08 18:41:53 +000010857 if (!Ty->isDependentType() && !LastExpr.get()->isTypeDependent()) {
John McCall31168b02011-06-15 23:02:42 +000010858 // In ARC, if the final expression ends in a consume, splice
10859 // the consume out and bind it later. In the alternate case
10860 // (when dealing with a retainable type), the result
10861 // initialization will create a produce. In both cases the
10862 // result will be +1, and we'll need to balance that out with
10863 // a bind.
10864 if (Expr *rebuiltLastStmt
10865 = maybeRebuildARCConsumingStmt(LastExpr.get())) {
10866 LastExpr = rebuiltLastStmt;
10867 } else {
10868 LastExpr = PerformCopyInitialization(
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010869 InitializedEntity::InitializeResult(LPLoc,
10870 Ty,
10871 false),
10872 SourceLocation(),
John McCall31168b02011-06-15 23:02:42 +000010873 LastExpr);
10874 }
10875
John Wiegley01296292011-04-08 18:41:53 +000010876 if (LastExpr.isInvalid())
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010877 return ExprError();
Craig Topperc3ec1492014-05-26 06:22:03 +000010878 if (LastExpr.get() != nullptr) {
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010879 if (!LastLabelStmt)
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010880 Compound->setLastStmt(LastExpr.get());
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010881 else
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010882 LastLabelStmt->setSubStmt(LastExpr.get());
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010883 StmtExprMayBindToTemp = true;
10884 }
10885 }
10886 }
Chris Lattner944d3062008-07-26 19:51:01 +000010887 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000010888
Eli Friedmanba961a92009-03-23 00:24:07 +000010889 // FIXME: Check that expression type is complete/non-abstract; statement
10890 // expressions are not lvalues.
Fariborz Jahanian56143ae2010-10-25 23:27:26 +000010891 Expr *ResStmtExpr = new (Context) StmtExpr(Compound, Ty, LPLoc, RPLoc);
10892 if (StmtExprMayBindToTemp)
10893 return MaybeBindToTemporary(ResStmtExpr);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000010894 return ResStmtExpr;
Chris Lattner366727f2007-07-24 16:58:17 +000010895}
Steve Naroff78864672007-08-01 22:05:33 +000010896
John McCalldadc5752010-08-24 06:29:42 +000010897ExprResult Sema::BuildBuiltinOffsetOf(SourceLocation BuiltinLoc,
John McCall36226622010-10-12 02:09:17 +000010898 TypeSourceInfo *TInfo,
10899 OffsetOfComponent *CompPtr,
10900 unsigned NumComponents,
10901 SourceLocation RParenLoc) {
Douglas Gregor882211c2010-04-28 22:16:22 +000010902 QualType ArgTy = TInfo->getType();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000010903 bool Dependent = ArgTy->isDependentType();
Abramo Bagnara1108e7b2010-05-20 10:00:11 +000010904 SourceRange TypeRange = TInfo->getTypeLoc().getLocalSourceRange();
Douglas Gregor882211c2010-04-28 22:16:22 +000010905
Chris Lattnerf17bd422007-08-30 17:45:32 +000010906 // We must have at least one component that refers to the type, and the first
10907 // one is known to be a field designator. Verify that the ArgTy represents
10908 // a struct/union/class.
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000010909 if (!Dependent && !ArgTy->isRecordType())
Douglas Gregor882211c2010-04-28 22:16:22 +000010910 return ExprError(Diag(BuiltinLoc, diag::err_offsetof_record_type)
10911 << ArgTy << TypeRange);
10912
10913 // Type must be complete per C99 7.17p3 because a declaring a variable
10914 // with an incomplete type would be ill-formed.
10915 if (!Dependent
10916 && RequireCompleteType(BuiltinLoc, ArgTy,
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000010917 diag::err_offsetof_incomplete_type, TypeRange))
Douglas Gregor882211c2010-04-28 22:16:22 +000010918 return ExprError();
10919
Chris Lattner78502cf2007-08-31 21:49:13 +000010920 // offsetof with non-identifier designators (e.g. "offsetof(x, a.b[c])") are a
10921 // GCC extension, diagnose them.
Eli Friedman988a16b2009-02-27 06:44:11 +000010922 // FIXME: This diagnostic isn't actually visible because the location is in
10923 // a system header!
Chris Lattner78502cf2007-08-31 21:49:13 +000010924 if (NumComponents != 1)
Chris Lattnerf490e152008-11-19 05:27:50 +000010925 Diag(BuiltinLoc, diag::ext_offsetof_extended_field_designator)
10926 << SourceRange(CompPtr[1].LocStart, CompPtr[NumComponents-1].LocEnd);
Douglas Gregor882211c2010-04-28 22:16:22 +000010927
10928 bool DidWarnAboutNonPOD = false;
10929 QualType CurrentType = ArgTy;
10930 typedef OffsetOfExpr::OffsetOfNode OffsetOfNode;
Chris Lattner0e62c1c2011-07-23 10:55:15 +000010931 SmallVector<OffsetOfNode, 4> Comps;
10932 SmallVector<Expr*, 4> Exprs;
Douglas Gregor882211c2010-04-28 22:16:22 +000010933 for (unsigned i = 0; i != NumComponents; ++i) {
10934 const OffsetOfComponent &OC = CompPtr[i];
10935 if (OC.isBrackets) {
10936 // Offset of an array sub-field. TODO: Should we allow vector elements?
10937 if (!CurrentType->isDependentType()) {
10938 const ArrayType *AT = Context.getAsArrayType(CurrentType);
10939 if(!AT)
10940 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_array_type)
10941 << CurrentType);
10942 CurrentType = AT->getElementType();
10943 } else
10944 CurrentType = Context.DependentTy;
10945
Richard Smith9fcc5c32011-10-17 23:29:39 +000010946 ExprResult IdxRval = DefaultLvalueConversion(static_cast<Expr*>(OC.U.E));
10947 if (IdxRval.isInvalid())
10948 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000010949 Expr *Idx = IdxRval.get();
Richard Smith9fcc5c32011-10-17 23:29:39 +000010950
Douglas Gregor882211c2010-04-28 22:16:22 +000010951 // The expression must be an integral expression.
10952 // FIXME: An integral constant expression?
Douglas Gregor882211c2010-04-28 22:16:22 +000010953 if (!Idx->isTypeDependent() && !Idx->isValueDependent() &&
10954 !Idx->getType()->isIntegerType())
10955 return ExprError(Diag(Idx->getLocStart(),
10956 diag::err_typecheck_subscript_not_integer)
10957 << Idx->getSourceRange());
Richard Smitheda612882011-10-17 05:48:07 +000010958
Douglas Gregor882211c2010-04-28 22:16:22 +000010959 // Record this array index.
10960 Comps.push_back(OffsetOfNode(OC.LocStart, Exprs.size(), OC.LocEnd));
Richard Smith9fcc5c32011-10-17 23:29:39 +000010961 Exprs.push_back(Idx);
Douglas Gregor882211c2010-04-28 22:16:22 +000010962 continue;
10963 }
10964
10965 // Offset of a field.
10966 if (CurrentType->isDependentType()) {
10967 // We have the offset of a field, but we can't look into the dependent
10968 // type. Just record the identifier of the field.
10969 Comps.push_back(OffsetOfNode(OC.LocStart, OC.U.IdentInfo, OC.LocEnd));
10970 CurrentType = Context.DependentTy;
10971 continue;
10972 }
10973
10974 // We need to have a complete type to look into.
10975 if (RequireCompleteType(OC.LocStart, CurrentType,
10976 diag::err_offsetof_incomplete_type))
10977 return ExprError();
10978
10979 // Look for the designated field.
10980 const RecordType *RC = CurrentType->getAs<RecordType>();
10981 if (!RC)
10982 return ExprError(Diag(OC.LocEnd, diag::err_offsetof_record_type)
10983 << CurrentType);
10984 RecordDecl *RD = RC->getDecl();
10985
10986 // C++ [lib.support.types]p5:
10987 // The macro offsetof accepts a restricted set of type arguments in this
10988 // International Standard. type shall be a POD structure or a POD union
10989 // (clause 9).
Benjamin Kramer9e7876b2012-04-28 11:14:51 +000010990 // C++11 [support.types]p4:
10991 // If type is not a standard-layout class (Clause 9), the results are
10992 // undefined.
Douglas Gregor882211c2010-04-28 22:16:22 +000010993 if (CXXRecordDecl *CRD = dyn_cast<CXXRecordDecl>(RD)) {
Richard Smith2bf7fdb2013-01-02 11:42:31 +000010994 bool IsSafe = LangOpts.CPlusPlus11? CRD->isStandardLayout() : CRD->isPOD();
Benjamin Kramer9e7876b2012-04-28 11:14:51 +000010995 unsigned DiagID =
Richard Smith1b98ccc2014-07-19 01:39:17 +000010996 LangOpts.CPlusPlus11? diag::ext_offsetof_non_standardlayout_type
10997 : diag::ext_offsetof_non_pod_type;
Benjamin Kramer9e7876b2012-04-28 11:14:51 +000010998
10999 if (!IsSafe && !DidWarnAboutNonPOD &&
Craig Topperc3ec1492014-05-26 06:22:03 +000011000 DiagRuntimeBehavior(BuiltinLoc, nullptr,
Benjamin Kramer9e7876b2012-04-28 11:14:51 +000011001 PDiag(DiagID)
Douglas Gregor882211c2010-04-28 22:16:22 +000011002 << SourceRange(CompPtr[0].LocStart, OC.LocEnd)
11003 << CurrentType))
11004 DidWarnAboutNonPOD = true;
11005 }
11006
11007 // Look for the field.
11008 LookupResult R(*this, OC.U.IdentInfo, OC.LocStart, LookupMemberName);
11009 LookupQualifiedName(R, RD);
11010 FieldDecl *MemberDecl = R.getAsSingle<FieldDecl>();
Craig Topperc3ec1492014-05-26 06:22:03 +000011011 IndirectFieldDecl *IndirectMemberDecl = nullptr;
Francois Pichet783dd6e2010-11-21 06:08:52 +000011012 if (!MemberDecl) {
Benjamin Kramer39593702010-11-21 14:11:41 +000011013 if ((IndirectMemberDecl = R.getAsSingle<IndirectFieldDecl>()))
Francois Pichet783dd6e2010-11-21 06:08:52 +000011014 MemberDecl = IndirectMemberDecl->getAnonField();
11015 }
11016
Douglas Gregor882211c2010-04-28 22:16:22 +000011017 if (!MemberDecl)
11018 return ExprError(Diag(BuiltinLoc, diag::err_no_member)
11019 << OC.U.IdentInfo << RD << SourceRange(OC.LocStart,
11020 OC.LocEnd));
11021
Douglas Gregor10982ea2010-04-28 22:36:06 +000011022 // C99 7.17p3:
11023 // (If the specified member is a bit-field, the behavior is undefined.)
11024 //
11025 // We diagnose this as an error.
Richard Smithcaf33902011-10-10 18:28:20 +000011026 if (MemberDecl->isBitField()) {
Douglas Gregor10982ea2010-04-28 22:36:06 +000011027 Diag(OC.LocEnd, diag::err_offsetof_bitfield)
11028 << MemberDecl->getDeclName()
11029 << SourceRange(BuiltinLoc, RParenLoc);
11030 Diag(MemberDecl->getLocation(), diag::note_bitfield_decl);
11031 return ExprError();
11032 }
Eli Friedman74ef7cf2010-08-05 10:11:36 +000011033
11034 RecordDecl *Parent = MemberDecl->getParent();
Francois Pichet783dd6e2010-11-21 06:08:52 +000011035 if (IndirectMemberDecl)
11036 Parent = cast<RecordDecl>(IndirectMemberDecl->getDeclContext());
Eli Friedman74ef7cf2010-08-05 10:11:36 +000011037
Douglas Gregord1702062010-04-29 00:18:15 +000011038 // If the member was found in a base class, introduce OffsetOfNodes for
11039 // the base class indirections.
David Majnemerff17f832013-10-15 06:28:23 +000011040 CXXBasePaths Paths;
Eli Friedman74ef7cf2010-08-05 10:11:36 +000011041 if (IsDerivedFrom(CurrentType, Context.getTypeDeclType(Parent), Paths)) {
David Majnemerff17f832013-10-15 06:28:23 +000011042 if (Paths.getDetectedVirtual()) {
11043 Diag(OC.LocEnd, diag::err_offsetof_field_of_virtual_base)
11044 << MemberDecl->getDeclName()
11045 << SourceRange(BuiltinLoc, RParenLoc);
11046 return ExprError();
11047 }
11048
Douglas Gregord1702062010-04-29 00:18:15 +000011049 CXXBasePath &Path = Paths.front();
11050 for (CXXBasePath::iterator B = Path.begin(), BEnd = Path.end();
11051 B != BEnd; ++B)
11052 Comps.push_back(OffsetOfNode(B->Base));
11053 }
Eli Friedman74ef7cf2010-08-05 10:11:36 +000011054
Francois Pichet783dd6e2010-11-21 06:08:52 +000011055 if (IndirectMemberDecl) {
Aaron Ballman29c94602014-03-07 18:36:15 +000011056 for (auto *FI : IndirectMemberDecl->chain()) {
Aaron Ballman13916082014-03-07 18:11:58 +000011057 assert(isa<FieldDecl>(FI));
Francois Pichet783dd6e2010-11-21 06:08:52 +000011058 Comps.push_back(OffsetOfNode(OC.LocStart,
Aaron Ballman13916082014-03-07 18:11:58 +000011059 cast<FieldDecl>(FI), OC.LocEnd));
Francois Pichet783dd6e2010-11-21 06:08:52 +000011060 }
11061 } else
Douglas Gregor882211c2010-04-28 22:16:22 +000011062 Comps.push_back(OffsetOfNode(OC.LocStart, MemberDecl, OC.LocEnd));
Francois Pichet783dd6e2010-11-21 06:08:52 +000011063
Douglas Gregor882211c2010-04-28 22:16:22 +000011064 CurrentType = MemberDecl->getType().getNonReferenceType();
11065 }
11066
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011067 return OffsetOfExpr::Create(Context, Context.getSizeType(), BuiltinLoc, TInfo,
11068 Comps, Exprs, RParenLoc);
Douglas Gregor882211c2010-04-28 22:16:22 +000011069}
Mike Stump4e1f26a2009-02-19 03:04:26 +000011070
John McCalldadc5752010-08-24 06:29:42 +000011071ExprResult Sema::ActOnBuiltinOffsetOf(Scope *S,
John McCall36226622010-10-12 02:09:17 +000011072 SourceLocation BuiltinLoc,
11073 SourceLocation TypeLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +000011074 ParsedType ParsedArgTy,
John McCall36226622010-10-12 02:09:17 +000011075 OffsetOfComponent *CompPtr,
11076 unsigned NumComponents,
Richard Trieuba63ce62011-09-09 01:45:06 +000011077 SourceLocation RParenLoc) {
John McCall36226622010-10-12 02:09:17 +000011078
Douglas Gregor882211c2010-04-28 22:16:22 +000011079 TypeSourceInfo *ArgTInfo;
Richard Trieuba63ce62011-09-09 01:45:06 +000011080 QualType ArgTy = GetTypeFromParser(ParsedArgTy, &ArgTInfo);
Douglas Gregor882211c2010-04-28 22:16:22 +000011081 if (ArgTy.isNull())
11082 return ExprError();
11083
Eli Friedman06dcfd92010-08-05 10:15:45 +000011084 if (!ArgTInfo)
11085 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
11086
11087 return BuildBuiltinOffsetOf(BuiltinLoc, ArgTInfo, CompPtr, NumComponents,
Richard Trieuba63ce62011-09-09 01:45:06 +000011088 RParenLoc);
Chris Lattnerf17bd422007-08-30 17:45:32 +000011089}
11090
11091
John McCalldadc5752010-08-24 06:29:42 +000011092ExprResult Sema::ActOnChooseExpr(SourceLocation BuiltinLoc,
John McCall36226622010-10-12 02:09:17 +000011093 Expr *CondExpr,
11094 Expr *LHSExpr, Expr *RHSExpr,
11095 SourceLocation RPLoc) {
Steve Naroff9efdabc2007-08-03 21:21:27 +000011096 assert((CondExpr && LHSExpr && RHSExpr) && "Missing type argument(s)");
11097
John McCall7decc9e2010-11-18 06:31:45 +000011098 ExprValueKind VK = VK_RValue;
11099 ExprObjectKind OK = OK_Ordinary;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000011100 QualType resType;
Douglas Gregor56751b52009-09-25 04:25:58 +000011101 bool ValueDependent = false;
Eli Friedman75807f22013-07-20 00:40:58 +000011102 bool CondIsTrue = false;
Douglas Gregor0df91122009-05-19 22:43:30 +000011103 if (CondExpr->isTypeDependent() || CondExpr->isValueDependent()) {
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000011104 resType = Context.DependentTy;
Douglas Gregor56751b52009-09-25 04:25:58 +000011105 ValueDependent = true;
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000011106 } else {
11107 // The conditional expression is required to be a constant expression.
11108 llvm::APSInt condEval(32);
Douglas Gregore2b37442012-05-04 22:38:52 +000011109 ExprResult CondICE
11110 = VerifyIntegerConstantExpression(CondExpr, &condEval,
11111 diag::err_typecheck_choose_expr_requires_constant, false);
Richard Smithf4c51d92012-02-04 09:53:13 +000011112 if (CondICE.isInvalid())
11113 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011114 CondExpr = CondICE.get();
Eli Friedman75807f22013-07-20 00:40:58 +000011115 CondIsTrue = condEval.getZExtValue();
Steve Naroff9efdabc2007-08-03 21:21:27 +000011116
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000011117 // If the condition is > zero, then the AST type is the same as the LSHExpr.
Eli Friedman75807f22013-07-20 00:40:58 +000011118 Expr *ActiveExpr = CondIsTrue ? LHSExpr : RHSExpr;
John McCall7decc9e2010-11-18 06:31:45 +000011119
11120 resType = ActiveExpr->getType();
11121 ValueDependent = ActiveExpr->isValueDependent();
11122 VK = ActiveExpr->getValueKind();
11123 OK = ActiveExpr->getObjectKind();
Sebastian Redl8d2ccae2009-02-26 14:39:58 +000011124 }
11125
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011126 return new (Context)
11127 ChooseExpr(BuiltinLoc, CondExpr, LHSExpr, RHSExpr, resType, VK, OK, RPLoc,
11128 CondIsTrue, resType->isDependentType(), ValueDependent);
Steve Naroff9efdabc2007-08-03 21:21:27 +000011129}
11130
Steve Naroffc540d662008-09-03 18:15:37 +000011131//===----------------------------------------------------------------------===//
11132// Clang Extensions.
11133//===----------------------------------------------------------------------===//
11134
11135/// ActOnBlockStart - This callback is invoked when a block literal is started.
Richard Trieuba63ce62011-09-09 01:45:06 +000011136void Sema::ActOnBlockStart(SourceLocation CaretLoc, Scope *CurScope) {
Douglas Gregor9a28e842010-03-01 23:15:13 +000011137 BlockDecl *Block = BlockDecl::Create(Context, CurContext, CaretLoc);
Eli Friedman7e346a82013-07-01 20:22:57 +000011138
Eli Friedman4ef077a2013-09-12 22:36:24 +000011139 if (LangOpts.CPlusPlus) {
Eli Friedman7e346a82013-07-01 20:22:57 +000011140 Decl *ManglingContextDecl;
11141 if (MangleNumberingContext *MCtx =
11142 getCurrentMangleNumberContext(Block->getDeclContext(),
11143 ManglingContextDecl)) {
11144 unsigned ManglingNumber = MCtx->getManglingNumber(Block);
11145 Block->setBlockMangling(ManglingNumber, ManglingContextDecl);
11146 }
11147 }
11148
Richard Trieuba63ce62011-09-09 01:45:06 +000011149 PushBlockScope(CurScope, Block);
Douglas Gregor9a28e842010-03-01 23:15:13 +000011150 CurContext->addDecl(Block);
Richard Trieuba63ce62011-09-09 01:45:06 +000011151 if (CurScope)
11152 PushDeclContext(CurScope, Block);
Fariborz Jahanian1babe772010-07-09 18:44:02 +000011153 else
11154 CurContext = Block;
John McCallf1a3c2a2011-11-11 03:19:12 +000011155
Eli Friedman34b49062012-01-26 03:00:14 +000011156 getCurBlock()->HasImplicitReturnType = true;
11157
John McCallf1a3c2a2011-11-11 03:19:12 +000011158 // Enter a new evaluation context to insulate the block from any
11159 // cleanups from the enclosing full-expression.
11160 PushExpressionEvaluationContext(PotentiallyEvaluated);
Steve Naroff1d95e5a2008-10-10 01:28:17 +000011161}
11162
Douglas Gregor7efd007c2012-06-15 16:59:29 +000011163void Sema::ActOnBlockArguments(SourceLocation CaretLoc, Declarator &ParamInfo,
11164 Scope *CurScope) {
Craig Topperc3ec1492014-05-26 06:22:03 +000011165 assert(ParamInfo.getIdentifier() == nullptr &&
11166 "block-id should have no identifier!");
John McCall3882ace2011-01-05 12:14:39 +000011167 assert(ParamInfo.getContext() == Declarator::BlockLiteralContext);
Douglas Gregor9a28e842010-03-01 23:15:13 +000011168 BlockScopeInfo *CurBlock = getCurBlock();
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000011169
John McCall8cb7bdf2010-06-04 23:28:52 +000011170 TypeSourceInfo *Sig = GetTypeForDeclarator(ParamInfo, CurScope);
John McCall8cb7bdf2010-06-04 23:28:52 +000011171 QualType T = Sig->getType();
Mike Stump82f071f2009-02-04 22:31:32 +000011172
Douglas Gregor7efd007c2012-06-15 16:59:29 +000011173 // FIXME: We should allow unexpanded parameter packs here, but that would,
11174 // in turn, make the block expression contain unexpanded parameter packs.
11175 if (DiagnoseUnexpandedParameterPack(CaretLoc, Sig, UPPC_Block)) {
11176 // Drop the parameters.
11177 FunctionProtoType::ExtProtoInfo EPI;
11178 EPI.HasTrailingReturn = false;
11179 EPI.TypeQuals |= DeclSpec::TQ_const;
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +000011180 T = Context.getFunctionType(Context.DependentTy, None, EPI);
Douglas Gregor7efd007c2012-06-15 16:59:29 +000011181 Sig = Context.getTrivialTypeSourceInfo(T);
11182 }
11183
John McCall3882ace2011-01-05 12:14:39 +000011184 // GetTypeForDeclarator always produces a function type for a block
11185 // literal signature. Furthermore, it is always a FunctionProtoType
11186 // unless the function was written with a typedef.
11187 assert(T->isFunctionType() &&
11188 "GetTypeForDeclarator made a non-function block signature");
11189
11190 // Look for an explicit signature in that function type.
11191 FunctionProtoTypeLoc ExplicitSignature;
11192
11193 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
David Blaikie6adc78e2013-02-18 22:06:02 +000011194 if ((ExplicitSignature = tmp.getAs<FunctionProtoTypeLoc>())) {
John McCall3882ace2011-01-05 12:14:39 +000011195
11196 // Check whether that explicit signature was synthesized by
11197 // GetTypeForDeclarator. If so, don't save that as part of the
11198 // written signature.
Abramo Bagnaraf2a79d92011-03-12 11:17:06 +000011199 if (ExplicitSignature.getLocalRangeBegin() ==
11200 ExplicitSignature.getLocalRangeEnd()) {
John McCall3882ace2011-01-05 12:14:39 +000011201 // This would be much cheaper if we stored TypeLocs instead of
11202 // TypeSourceInfos.
Alp Toker42a16a62014-01-25 23:51:36 +000011203 TypeLoc Result = ExplicitSignature.getReturnLoc();
John McCall3882ace2011-01-05 12:14:39 +000011204 unsigned Size = Result.getFullDataSize();
11205 Sig = Context.CreateTypeSourceInfo(Result.getType(), Size);
11206 Sig->getTypeLoc().initializeFullCopy(Result, Size);
11207
11208 ExplicitSignature = FunctionProtoTypeLoc();
11209 }
John McCalla3ccba02010-06-04 11:21:44 +000011210 }
Mike Stump11289f42009-09-09 15:08:12 +000011211
John McCall3882ace2011-01-05 12:14:39 +000011212 CurBlock->TheDecl->setSignatureAsWritten(Sig);
11213 CurBlock->FunctionType = T;
11214
11215 const FunctionType *Fn = T->getAs<FunctionType>();
Alp Toker314cc812014-01-25 16:55:45 +000011216 QualType RetTy = Fn->getReturnType();
John McCall3882ace2011-01-05 12:14:39 +000011217 bool isVariadic =
11218 (isa<FunctionProtoType>(Fn) && cast<FunctionProtoType>(Fn)->isVariadic());
11219
John McCall8e346702010-06-04 19:02:56 +000011220 CurBlock->TheDecl->setIsVariadic(isVariadic);
Douglas Gregorb92a1562010-02-03 00:27:59 +000011221
John McCalla3ccba02010-06-04 11:21:44 +000011222 // Context.DependentTy is used as a placeholder for a missing block
John McCall8e346702010-06-04 19:02:56 +000011223 // return type. TODO: what should we do with declarators like:
11224 // ^ * { ... }
11225 // If the answer is "apply template argument deduction"....
Fariborz Jahaniandd5eb9d2011-12-03 17:47:53 +000011226 if (RetTy != Context.DependentTy) {
John McCalla3ccba02010-06-04 11:21:44 +000011227 CurBlock->ReturnType = RetTy;
Fariborz Jahaniandd5eb9d2011-12-03 17:47:53 +000011228 CurBlock->TheDecl->setBlockMissingReturnType(false);
Eli Friedman34b49062012-01-26 03:00:14 +000011229 CurBlock->HasImplicitReturnType = false;
Fariborz Jahaniandd5eb9d2011-12-03 17:47:53 +000011230 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011231
John McCalla3ccba02010-06-04 11:21:44 +000011232 // Push block parameters from the declarator if we had them.
Chris Lattner0e62c1c2011-07-23 10:55:15 +000011233 SmallVector<ParmVarDecl*, 8> Params;
John McCall3882ace2011-01-05 12:14:39 +000011234 if (ExplicitSignature) {
Alp Tokerb3fd5cf2014-01-21 00:32:38 +000011235 for (unsigned I = 0, E = ExplicitSignature.getNumParams(); I != E; ++I) {
11236 ParmVarDecl *Param = ExplicitSignature.getParam(I);
Craig Topperc3ec1492014-05-26 06:22:03 +000011237 if (Param->getIdentifier() == nullptr &&
Fariborz Jahanian5ec502e2010-02-12 21:53:14 +000011238 !Param->isImplicit() &&
11239 !Param->isInvalidDecl() &&
David Blaikiebbafb8a2012-03-11 07:00:24 +000011240 !getLangOpts().CPlusPlus)
Fariborz Jahanian5ec502e2010-02-12 21:53:14 +000011241 Diag(Param->getLocation(), diag::err_parameter_name_omitted);
John McCall8e346702010-06-04 19:02:56 +000011242 Params.push_back(Param);
Fariborz Jahanian5ec502e2010-02-12 21:53:14 +000011243 }
John McCalla3ccba02010-06-04 11:21:44 +000011244
11245 // Fake up parameter variables if we have a typedef, like
11246 // ^ fntype { ... }
11247 } else if (const FunctionProtoType *Fn = T->getAs<FunctionProtoType>()) {
Aaron Ballman40bd0aa2014-03-17 15:23:01 +000011248 for (const auto &I : Fn->param_types()) {
11249 ParmVarDecl *Param = BuildParmVarDeclForTypedef(
11250 CurBlock->TheDecl, ParamInfo.getLocStart(), I);
John McCall8e346702010-06-04 19:02:56 +000011251 Params.push_back(Param);
John McCalla3ccba02010-06-04 11:21:44 +000011252 }
Steve Naroffc540d662008-09-03 18:15:37 +000011253 }
John McCalla3ccba02010-06-04 11:21:44 +000011254
John McCall8e346702010-06-04 19:02:56 +000011255 // Set the parameters on the block decl.
Douglas Gregorb524d902010-11-01 18:37:59 +000011256 if (!Params.empty()) {
David Blaikie9c70e042011-09-21 18:16:56 +000011257 CurBlock->TheDecl->setParams(Params);
Douglas Gregorb524d902010-11-01 18:37:59 +000011258 CheckParmsForFunctionDef(CurBlock->TheDecl->param_begin(),
11259 CurBlock->TheDecl->param_end(),
11260 /*CheckParameterNames=*/false);
11261 }
11262
John McCalla3ccba02010-06-04 11:21:44 +000011263 // Finally we can process decl attributes.
Douglas Gregor758a8692009-06-17 21:51:59 +000011264 ProcessDeclAttributes(CurScope, CurBlock->TheDecl, ParamInfo);
John McCalldf8b37c2010-03-22 09:20:08 +000011265
Eli Friedman7e346a82013-07-01 20:22:57 +000011266 // Put the parameter variables in scope.
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +000011267 for (auto AI : CurBlock->TheDecl->params()) {
11268 AI->setOwningFunction(CurBlock->TheDecl);
John McCallf7b2fb52010-01-22 00:28:27 +000011269
Steve Naroff1d95e5a2008-10-10 01:28:17 +000011270 // If this has an identifier, add it to the scope stack.
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +000011271 if (AI->getIdentifier()) {
11272 CheckShadow(CurBlock->TheScope, AI);
John McCalldf8b37c2010-03-22 09:20:08 +000011273
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +000011274 PushOnScopeChains(AI, CurBlock->TheScope);
John McCalldf8b37c2010-03-22 09:20:08 +000011275 }
John McCallf7b2fb52010-01-22 00:28:27 +000011276 }
Steve Naroffc540d662008-09-03 18:15:37 +000011277}
11278
11279/// ActOnBlockError - If there is an error parsing a block, this callback
11280/// is invoked to pop the information about the block from the action impl.
11281void Sema::ActOnBlockError(SourceLocation CaretLoc, Scope *CurScope) {
John McCallf1a3c2a2011-11-11 03:19:12 +000011282 // Leave the expression-evaluation context.
11283 DiscardCleanupsInEvaluationContext();
11284 PopExpressionEvaluationContext();
11285
Steve Naroffc540d662008-09-03 18:15:37 +000011286 // Pop off CurBlock, handle nested blocks.
Chris Lattner41b86942009-04-21 22:38:46 +000011287 PopDeclContext();
Eli Friedman71c80552012-01-05 03:35:19 +000011288 PopFunctionScopeInfo();
Steve Naroffc540d662008-09-03 18:15:37 +000011289}
11290
11291/// ActOnBlockStmtExpr - This is called when the body of a block statement
11292/// literal was successfully completed. ^(int x){...}
John McCalldadc5752010-08-24 06:29:42 +000011293ExprResult Sema::ActOnBlockStmtExpr(SourceLocation CaretLoc,
Chris Lattner60f84492011-02-17 23:58:47 +000011294 Stmt *Body, Scope *CurScope) {
Chris Lattner9eac9312009-03-27 04:18:06 +000011295 // If blocks are disabled, emit an error.
11296 if (!LangOpts.Blocks)
11297 Diag(CaretLoc, diag::err_blocks_disable);
Mike Stump11289f42009-09-09 15:08:12 +000011298
John McCallf1a3c2a2011-11-11 03:19:12 +000011299 // Leave the expression-evaluation context.
John McCall85110b42012-03-08 22:00:17 +000011300 if (hasAnyUnrecoverableErrorsInThisFunction())
11301 DiscardCleanupsInEvaluationContext();
John McCallf1a3c2a2011-11-11 03:19:12 +000011302 assert(!ExprNeedsCleanups && "cleanups within block not correctly bound!");
11303 PopExpressionEvaluationContext();
11304
Douglas Gregor9a28e842010-03-01 23:15:13 +000011305 BlockScopeInfo *BSI = cast<BlockScopeInfo>(FunctionScopes.back());
Jordan Rosed39e5f12012-07-02 21:19:23 +000011306
11307 if (BSI->HasImplicitReturnType)
11308 deduceClosureReturnType(*BSI);
11309
Steve Naroff1d95e5a2008-10-10 01:28:17 +000011310 PopDeclContext();
11311
Steve Naroffc540d662008-09-03 18:15:37 +000011312 QualType RetTy = Context.VoidTy;
Fariborz Jahanian3fd73102009-06-19 23:37:08 +000011313 if (!BSI->ReturnType.isNull())
11314 RetTy = BSI->ReturnType;
Mike Stump4e1f26a2009-02-19 03:04:26 +000011315
Aaron Ballman9ead1242013-12-19 02:39:40 +000011316 bool NoReturn = BSI->TheDecl->hasAttr<NoReturnAttr>();
Steve Naroffc540d662008-09-03 18:15:37 +000011317 QualType BlockTy;
John McCall8e346702010-06-04 19:02:56 +000011318
John McCallc63de662011-02-02 13:00:07 +000011319 // Set the captured variables on the block.
Eli Friedman20139d32012-01-11 02:36:31 +000011320 // FIXME: Share capture structure between BlockDecl and CapturingScopeInfo!
11321 SmallVector<BlockDecl::Capture, 4> Captures;
11322 for (unsigned i = 0, e = BSI->Captures.size(); i != e; i++) {
11323 CapturingScopeInfo::Capture &Cap = BSI->Captures[i];
11324 if (Cap.isThisCapture())
11325 continue;
Eli Friedman24af8502012-02-03 22:47:37 +000011326 BlockDecl::Capture NewCap(Cap.getVariable(), Cap.isBlockCapture(),
Richard Smithba71c082013-05-16 06:20:58 +000011327 Cap.isNested(), Cap.getInitExpr());
Eli Friedman20139d32012-01-11 02:36:31 +000011328 Captures.push_back(NewCap);
11329 }
11330 BSI->TheDecl->setCaptures(Context, Captures.begin(), Captures.end(),
11331 BSI->CXXThisCaptureIndex != 0);
John McCallc63de662011-02-02 13:00:07 +000011332
John McCall8e346702010-06-04 19:02:56 +000011333 // If the user wrote a function type in some form, try to use that.
11334 if (!BSI->FunctionType.isNull()) {
11335 const FunctionType *FTy = BSI->FunctionType->getAs<FunctionType>();
11336
11337 FunctionType::ExtInfo Ext = FTy->getExtInfo();
11338 if (NoReturn && !Ext.getNoReturn()) Ext = Ext.withNoReturn(true);
11339
11340 // Turn protoless block types into nullary block types.
11341 if (isa<FunctionNoProtoType>(FTy)) {
John McCalldb40c7f2010-12-14 08:05:40 +000011342 FunctionProtoType::ExtProtoInfo EPI;
11343 EPI.ExtInfo = Ext;
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +000011344 BlockTy = Context.getFunctionType(RetTy, None, EPI);
John McCall8e346702010-06-04 19:02:56 +000011345
11346 // Otherwise, if we don't need to change anything about the function type,
11347 // preserve its sugar structure.
Alp Toker314cc812014-01-25 16:55:45 +000011348 } else if (FTy->getReturnType() == RetTy &&
John McCall8e346702010-06-04 19:02:56 +000011349 (!NoReturn || FTy->getNoReturnAttr())) {
11350 BlockTy = BSI->FunctionType;
11351
11352 // Otherwise, make the minimal modifications to the function type.
11353 } else {
11354 const FunctionProtoType *FPT = cast<FunctionProtoType>(FTy);
John McCalldb40c7f2010-12-14 08:05:40 +000011355 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
11356 EPI.TypeQuals = 0; // FIXME: silently?
11357 EPI.ExtInfo = Ext;
Alp Toker9cacbab2014-01-20 20:26:09 +000011358 BlockTy = Context.getFunctionType(RetTy, FPT->getParamTypes(), EPI);
John McCall8e346702010-06-04 19:02:56 +000011359 }
11360
11361 // If we don't have a function type, just build one from nothing.
11362 } else {
John McCalldb40c7f2010-12-14 08:05:40 +000011363 FunctionProtoType::ExtProtoInfo EPI;
John McCall31168b02011-06-15 23:02:42 +000011364 EPI.ExtInfo = FunctionType::ExtInfo().withNoReturn(NoReturn);
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +000011365 BlockTy = Context.getFunctionType(RetTy, None, EPI);
John McCall8e346702010-06-04 19:02:56 +000011366 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011367
John McCall8e346702010-06-04 19:02:56 +000011368 DiagnoseUnusedParameters(BSI->TheDecl->param_begin(),
11369 BSI->TheDecl->param_end());
Steve Naroffc540d662008-09-03 18:15:37 +000011370 BlockTy = Context.getBlockPointerType(BlockTy);
Mike Stump4e1f26a2009-02-19 03:04:26 +000011371
Chris Lattner45542ea2009-04-19 05:28:12 +000011372 // If needed, diagnose invalid gotos and switches in the block.
John McCall31168b02011-06-15 23:02:42 +000011373 if (getCurFunction()->NeedsScopeChecking() &&
Douglas Gregor5d944db2012-08-17 05:12:08 +000011374 !PP.isCodeCompletionEnabled())
John McCallb268a282010-08-23 23:25:46 +000011375 DiagnoseInvalidJumps(cast<CompoundStmt>(Body));
Mike Stump11289f42009-09-09 15:08:12 +000011376
Chris Lattner60f84492011-02-17 23:58:47 +000011377 BSI->TheDecl->setBody(cast<CompoundStmt>(Body));
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000011378
Jordan Rosed39e5f12012-07-02 21:19:23 +000011379 // Try to apply the named return value optimization. We have to check again
11380 // if we can do this, though, because blocks keep return statements around
11381 // to deduce an implicit return type.
11382 if (getLangOpts().CPlusPlus && RetTy->isRecordType() &&
11383 !BSI->TheDecl->isDependentContext())
Argyrios Kyrtzidisea75aad2014-04-26 18:29:13 +000011384 computeNRVO(Body, BSI);
Douglas Gregor49695f02011-09-06 20:46:03 +000011385
Benjamin Kramera4fb8362011-07-12 14:11:05 +000011386 BlockExpr *Result = new (Context) BlockExpr(BSI->TheDecl, BlockTy);
David Blaikie43472b32013-09-03 21:40:15 +000011387 AnalysisBasedWarnings::Policy WP = AnalysisWarnings.getDefaultPolicy();
Eli Friedman71c80552012-01-05 03:35:19 +000011388 PopFunctionScopeInfo(&WP, Result->getBlockDecl(), Result);
Benjamin Kramera4fb8362011-07-12 14:11:05 +000011389
John McCall28fc7092011-11-10 05:35:25 +000011390 // If the block isn't obviously global, i.e. it captures anything at
John McCalld2393872012-04-13 01:08:17 +000011391 // all, then we need to do a few things in the surrounding context:
John McCall28fc7092011-11-10 05:35:25 +000011392 if (Result->getBlockDecl()->hasCaptures()) {
John McCalld2393872012-04-13 01:08:17 +000011393 // First, this expression has a new cleanup object.
John McCall28fc7092011-11-10 05:35:25 +000011394 ExprCleanupObjects.push_back(Result->getBlockDecl());
11395 ExprNeedsCleanups = true;
John McCalld2393872012-04-13 01:08:17 +000011396
11397 // It also gets a branch-protected scope if any of the captured
11398 // variables needs destruction.
Aaron Ballman9371dd22014-03-14 18:34:04 +000011399 for (const auto &CI : Result->getBlockDecl()->captures()) {
11400 const VarDecl *var = CI.getVariable();
John McCalld2393872012-04-13 01:08:17 +000011401 if (var->getType().isDestructedType() != QualType::DK_none) {
11402 getCurFunction()->setHasBranchProtectedScope();
11403 break;
11404 }
11405 }
John McCall28fc7092011-11-10 05:35:25 +000011406 }
Fariborz Jahanian197c68c2012-03-06 18:41:35 +000011407
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011408 return Result;
Steve Naroffc540d662008-09-03 18:15:37 +000011409}
11410
John McCalldadc5752010-08-24 06:29:42 +000011411ExprResult Sema::ActOnVAArg(SourceLocation BuiltinLoc,
Richard Trieuba63ce62011-09-09 01:45:06 +000011412 Expr *E, ParsedType Ty,
Sebastian Redl6d4256c2009-03-15 17:47:39 +000011413 SourceLocation RPLoc) {
Abramo Bagnara27db2392010-08-10 10:06:15 +000011414 TypeSourceInfo *TInfo;
Richard Trieuba63ce62011-09-09 01:45:06 +000011415 GetTypeFromParser(Ty, &TInfo);
11416 return BuildVAArgExpr(BuiltinLoc, E, TInfo, RPLoc);
Abramo Bagnara27db2392010-08-10 10:06:15 +000011417}
11418
John McCalldadc5752010-08-24 06:29:42 +000011419ExprResult Sema::BuildVAArgExpr(SourceLocation BuiltinLoc,
John McCall7decc9e2010-11-18 06:31:45 +000011420 Expr *E, TypeSourceInfo *TInfo,
11421 SourceLocation RPLoc) {
Chris Lattner56382aa2009-04-05 15:49:53 +000011422 Expr *OrigExpr = E;
Mike Stump11289f42009-09-09 15:08:12 +000011423
Eli Friedman121ba0c2008-08-09 23:32:40 +000011424 // Get the va_list type
11425 QualType VaListType = Context.getBuiltinVaListType();
Eli Friedmane2cad652009-05-16 12:46:54 +000011426 if (VaListType->isArrayType()) {
11427 // Deal with implicit array decay; for example, on x86-64,
11428 // va_list is an array, but it's supposed to decay to
11429 // a pointer for va_arg.
Eli Friedman121ba0c2008-08-09 23:32:40 +000011430 VaListType = Context.getArrayDecayedType(VaListType);
Eli Friedmane2cad652009-05-16 12:46:54 +000011431 // Make sure the input expression also decays appropriately.
John Wiegley01296292011-04-08 18:41:53 +000011432 ExprResult Result = UsualUnaryConversions(E);
11433 if (Result.isInvalid())
11434 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011435 E = Result.get();
Logan Chien29574892012-10-20 06:11:33 +000011436 } else if (VaListType->isRecordType() && getLangOpts().CPlusPlus) {
11437 // If va_list is a record type and we are compiling in C++ mode,
11438 // check the argument using reference binding.
11439 InitializedEntity Entity
11440 = InitializedEntity::InitializeParameter(Context,
11441 Context.getLValueReferenceType(VaListType), false);
11442 ExprResult Init = PerformCopyInitialization(Entity, SourceLocation(), E);
11443 if (Init.isInvalid())
11444 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011445 E = Init.getAs<Expr>();
Eli Friedmane2cad652009-05-16 12:46:54 +000011446 } else {
11447 // Otherwise, the va_list argument must be an l-value because
11448 // it is modified by va_arg.
Mike Stump11289f42009-09-09 15:08:12 +000011449 if (!E->isTypeDependent() &&
Douglas Gregorad3150c2009-05-19 23:10:31 +000011450 CheckForModifiableLvalue(E, BuiltinLoc, *this))
Eli Friedmane2cad652009-05-16 12:46:54 +000011451 return ExprError();
11452 }
Eli Friedman121ba0c2008-08-09 23:32:40 +000011453
Douglas Gregorad3150c2009-05-19 23:10:31 +000011454 if (!E->isTypeDependent() &&
11455 !Context.hasSameType(VaListType, E->getType())) {
Sebastian Redl6d4256c2009-03-15 17:47:39 +000011456 return ExprError(Diag(E->getLocStart(),
11457 diag::err_first_argument_to_va_arg_not_of_type_va_list)
Chris Lattner56382aa2009-04-05 15:49:53 +000011458 << OrigExpr->getType() << E->getSourceRange());
Chris Lattner3f5cd772009-04-05 00:59:53 +000011459 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011460
David Majnemerc75d1a12011-06-14 05:17:32 +000011461 if (!TInfo->getType()->isDependentType()) {
11462 if (RequireCompleteType(TInfo->getTypeLoc().getBeginLoc(), TInfo->getType(),
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000011463 diag::err_second_parameter_to_va_arg_incomplete,
11464 TInfo->getTypeLoc()))
David Majnemerc75d1a12011-06-14 05:17:32 +000011465 return ExprError();
David Majnemer254a5c02011-06-13 06:37:03 +000011466
David Majnemerc75d1a12011-06-14 05:17:32 +000011467 if (RequireNonAbstractType(TInfo->getTypeLoc().getBeginLoc(),
Douglas Gregorae298422012-05-04 17:09:59 +000011468 TInfo->getType(),
11469 diag::err_second_parameter_to_va_arg_abstract,
11470 TInfo->getTypeLoc()))
David Majnemerc75d1a12011-06-14 05:17:32 +000011471 return ExprError();
11472
Douglas Gregor7e1eb932011-07-30 06:45:27 +000011473 if (!TInfo->getType().isPODType(Context)) {
David Majnemerc75d1a12011-06-14 05:17:32 +000011474 Diag(TInfo->getTypeLoc().getBeginLoc(),
Douglas Gregor7e1eb932011-07-30 06:45:27 +000011475 TInfo->getType()->isObjCLifetimeType()
11476 ? diag::warn_second_parameter_to_va_arg_ownership_qualified
11477 : diag::warn_second_parameter_to_va_arg_not_pod)
David Majnemerc75d1a12011-06-14 05:17:32 +000011478 << TInfo->getType()
11479 << TInfo->getTypeLoc().getSourceRange();
Douglas Gregor7e1eb932011-07-30 06:45:27 +000011480 }
Eli Friedman6290ae42011-07-11 21:45:59 +000011481
11482 // Check for va_arg where arguments of the given type will be promoted
11483 // (i.e. this va_arg is guaranteed to have undefined behavior).
11484 QualType PromoteType;
11485 if (TInfo->getType()->isPromotableIntegerType()) {
11486 PromoteType = Context.getPromotedIntegerType(TInfo->getType());
11487 if (Context.typesAreCompatible(PromoteType, TInfo->getType()))
11488 PromoteType = QualType();
11489 }
11490 if (TInfo->getType()->isSpecificBuiltinType(BuiltinType::Float))
11491 PromoteType = Context.DoubleTy;
11492 if (!PromoteType.isNull())
Ted Kremeneka0461692013-01-08 01:50:40 +000011493 DiagRuntimeBehavior(TInfo->getTypeLoc().getBeginLoc(), E,
11494 PDiag(diag::warn_second_parameter_to_va_arg_never_compatible)
11495 << TInfo->getType()
11496 << PromoteType
11497 << TInfo->getTypeLoc().getSourceRange());
David Majnemerc75d1a12011-06-14 05:17:32 +000011498 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011499
Abramo Bagnara27db2392010-08-10 10:06:15 +000011500 QualType T = TInfo->getType().getNonLValueExprType(Context);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011501 return new (Context) VAArgExpr(BuiltinLoc, E, TInfo, RPLoc, T);
Anders Carlsson7e13ab82007-10-15 20:28:48 +000011502}
11503
John McCalldadc5752010-08-24 06:29:42 +000011504ExprResult Sema::ActOnGNUNullExpr(SourceLocation TokenLoc) {
Douglas Gregor3be4b122008-11-29 04:51:27 +000011505 // The type of __null will be int or long, depending on the size of
11506 // pointers on the target.
11507 QualType Ty;
Douglas Gregore8bbc122011-09-02 00:18:52 +000011508 unsigned pw = Context.getTargetInfo().getPointerWidth(0);
11509 if (pw == Context.getTargetInfo().getIntWidth())
Douglas Gregor3be4b122008-11-29 04:51:27 +000011510 Ty = Context.IntTy;
Douglas Gregore8bbc122011-09-02 00:18:52 +000011511 else if (pw == Context.getTargetInfo().getLongWidth())
Douglas Gregor3be4b122008-11-29 04:51:27 +000011512 Ty = Context.LongTy;
Douglas Gregore8bbc122011-09-02 00:18:52 +000011513 else if (pw == Context.getTargetInfo().getLongLongWidth())
NAKAMURA Takumi0d13fd32011-01-19 00:11:41 +000011514 Ty = Context.LongLongTy;
11515 else {
David Blaikie83d382b2011-09-23 05:06:16 +000011516 llvm_unreachable("I don't know size of pointer!");
NAKAMURA Takumi0d13fd32011-01-19 00:11:41 +000011517 }
Douglas Gregor3be4b122008-11-29 04:51:27 +000011518
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011519 return new (Context) GNUNullExpr(Ty, TokenLoc);
Douglas Gregor3be4b122008-11-29 04:51:27 +000011520}
11521
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011522bool
11523Sema::ConversionToObjCStringLiteralCheck(QualType DstType, Expr *&Exp) {
Fariborz Jahanianbd714e92013-12-17 19:33:43 +000011524 if (!getLangOpts().ObjC1)
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011525 return false;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000011526
Anders Carlssonace5d072009-11-10 04:46:30 +000011527 const ObjCObjectPointerType *PT = DstType->getAs<ObjCObjectPointerType>();
11528 if (!PT)
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011529 return false;
Anders Carlssonace5d072009-11-10 04:46:30 +000011530
Anders Carlssonace5d072009-11-10 04:46:30 +000011531 if (!PT->isObjCIdType()) {
11532 // Check if the destination is the 'NSString' interface.
11533 const ObjCInterfaceDecl *ID = PT->getInterfaceDecl();
11534 if (!ID || !ID->getIdentifier()->isStr("NSString"))
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011535 return false;
Anders Carlssonace5d072009-11-10 04:46:30 +000011536 }
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011537
John McCallfe96e0b2011-11-06 09:01:30 +000011538 // Ignore any parens, implicit casts (should only be
11539 // array-to-pointer decays), and not-so-opaque values. The last is
11540 // important for making this trigger for property assignments.
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011541 Expr *SrcExpr = Exp->IgnoreParenImpCasts();
John McCallfe96e0b2011-11-06 09:01:30 +000011542 if (OpaqueValueExpr *OV = dyn_cast<OpaqueValueExpr>(SrcExpr))
11543 if (OV->getSourceExpr())
11544 SrcExpr = OV->getSourceExpr()->IgnoreParenImpCasts();
11545
11546 StringLiteral *SL = dyn_cast<StringLiteral>(SrcExpr);
Douglas Gregorfb65e592011-07-27 05:40:30 +000011547 if (!SL || !SL->isAscii())
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011548 return false;
11549 Diag(SL->getLocStart(), diag::err_missing_atsign_prefix)
11550 << FixItHint::CreateInsertion(SL->getLocStart(), "@");
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011551 Exp = BuildObjCStringLiteral(SL->getLocStart(), SL).get();
Fariborz Jahanian283bf892013-12-18 21:04:43 +000011552 return true;
Anders Carlssonace5d072009-11-10 04:46:30 +000011553}
11554
Chris Lattner9bad62c2008-01-04 18:04:52 +000011555bool Sema::DiagnoseAssignmentResult(AssignConvertType ConvTy,
11556 SourceLocation Loc,
11557 QualType DstType, QualType SrcType,
Douglas Gregor4f4946a2010-04-22 00:20:18 +000011558 Expr *SrcExpr, AssignmentAction Action,
11559 bool *Complained) {
11560 if (Complained)
11561 *Complained = false;
11562
Chris Lattner9bad62c2008-01-04 18:04:52 +000011563 // Decode the result (notice that AST's are still created for extensions).
Douglas Gregor33823722011-06-11 01:09:30 +000011564 bool CheckInferredResultType = false;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011565 bool isInvalid = false;
Eli Friedman381f4312012-02-29 20:59:56 +000011566 unsigned DiagKind = 0;
Douglas Gregora771f462010-03-31 17:46:05 +000011567 FixItHint Hint;
Anna Zaks3b402712011-07-28 19:51:27 +000011568 ConversionFixItGenerator ConvHints;
11569 bool MayHaveConvFixit = false;
Richard Trieucaff2472011-11-23 22:32:32 +000011570 bool MayHaveFunctionDiff = false;
Fariborz Jahaniand3296742014-06-19 23:05:46 +000011571 const ObjCInterfaceDecl *IFace = nullptr;
11572 const ObjCProtocolDecl *PDecl = nullptr;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000011573
Chris Lattner9bad62c2008-01-04 18:04:52 +000011574 switch (ConvTy) {
Fariborz Jahanian268fec12012-07-17 18:00:08 +000011575 case Compatible:
Joerg Sonnenberger05bd2da2013-11-19 13:38:38 +000011576 DiagnoseAssignmentEnum(DstType, SrcType, SrcExpr);
11577 return false;
Fariborz Jahanian268fec12012-07-17 18:00:08 +000011578
Chris Lattner940cfeb2008-01-04 18:22:42 +000011579 case PointerToInt:
Chris Lattner9bad62c2008-01-04 18:04:52 +000011580 DiagKind = diag::ext_typecheck_convert_pointer_int;
Anna Zaks3b402712011-07-28 19:51:27 +000011581 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11582 MayHaveConvFixit = true;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011583 break;
Chris Lattner940cfeb2008-01-04 18:22:42 +000011584 case IntToPointer:
11585 DiagKind = diag::ext_typecheck_convert_int_pointer;
Anna Zaks3b402712011-07-28 19:51:27 +000011586 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11587 MayHaveConvFixit = true;
Chris Lattner940cfeb2008-01-04 18:22:42 +000011588 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011589 case IncompatiblePointer:
Fariborz Jahanian3a25d0d2013-07-31 23:19:34 +000011590 DiagKind =
11591 (Action == AA_Passing_CFAudited ?
11592 diag::err_arc_typecheck_convert_incompatible_pointer :
11593 diag::ext_typecheck_convert_incompatible_pointer);
Douglas Gregor33823722011-06-11 01:09:30 +000011594 CheckInferredResultType = DstType->isObjCObjectPointerType() &&
11595 SrcType->isObjCObjectPointerType();
Anna Zaks3b402712011-07-28 19:51:27 +000011596 if (Hint.isNull() && !CheckInferredResultType) {
11597 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11598 }
Fariborz Jahanian3beec202013-04-30 00:30:48 +000011599 else if (CheckInferredResultType) {
11600 SrcType = SrcType.getUnqualifiedType();
11601 DstType = DstType.getUnqualifiedType();
11602 }
Anna Zaks3b402712011-07-28 19:51:27 +000011603 MayHaveConvFixit = true;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011604 break;
Eli Friedman80160bd2009-03-22 23:59:44 +000011605 case IncompatiblePointerSign:
11606 DiagKind = diag::ext_typecheck_convert_incompatible_pointer_sign;
11607 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011608 case FunctionVoidPointer:
11609 DiagKind = diag::ext_typecheck_convert_pointer_void_func;
11610 break;
John McCall4fff8f62011-02-01 00:10:29 +000011611 case IncompatiblePointerDiscardsQualifiers: {
John McCall71de91c2011-02-01 23:28:01 +000011612 // Perform array-to-pointer decay if necessary.
11613 if (SrcType->isArrayType()) SrcType = Context.getArrayDecayedType(SrcType);
11614
John McCall4fff8f62011-02-01 00:10:29 +000011615 Qualifiers lhq = SrcType->getPointeeType().getQualifiers();
11616 Qualifiers rhq = DstType->getPointeeType().getQualifiers();
11617 if (lhq.getAddressSpace() != rhq.getAddressSpace()) {
11618 DiagKind = diag::err_typecheck_incompatible_address_space;
11619 break;
John McCall31168b02011-06-15 23:02:42 +000011620
11621
11622 } else if (lhq.getObjCLifetime() != rhq.getObjCLifetime()) {
Argyrios Kyrtzidiscff00d92011-06-24 00:08:59 +000011623 DiagKind = diag::err_typecheck_incompatible_ownership;
John McCall31168b02011-06-15 23:02:42 +000011624 break;
John McCall4fff8f62011-02-01 00:10:29 +000011625 }
11626
11627 llvm_unreachable("unknown error case for discarding qualifiers!");
11628 // fallthrough
11629 }
Chris Lattner9bad62c2008-01-04 18:04:52 +000011630 case CompatiblePointerDiscardsQualifiers:
Douglas Gregoraa1e21d2008-09-12 00:47:35 +000011631 // If the qualifiers lost were because we were applying the
11632 // (deprecated) C++ conversion from a string literal to a char*
11633 // (or wchar_t*), then there was no error (C++ 4.2p2). FIXME:
11634 // Ideally, this check would be performed in
John McCallaba90822011-01-31 23:13:11 +000011635 // checkPointerTypesForAssignment. However, that would require a
Douglas Gregoraa1e21d2008-09-12 00:47:35 +000011636 // bit of refactoring (so that the second argument is an
11637 // expression, rather than a type), which should be done as part
John McCallaba90822011-01-31 23:13:11 +000011638 // of a larger effort to fix checkPointerTypesForAssignment for
Douglas Gregoraa1e21d2008-09-12 00:47:35 +000011639 // C++ semantics.
David Blaikiebbafb8a2012-03-11 07:00:24 +000011640 if (getLangOpts().CPlusPlus &&
Douglas Gregoraa1e21d2008-09-12 00:47:35 +000011641 IsStringLiteralToNonConstPointerConversion(SrcExpr, DstType))
11642 return false;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011643 DiagKind = diag::ext_typecheck_convert_discards_qualifiers;
11644 break;
Alexis Hunt6f3de502009-11-08 07:46:34 +000011645 case IncompatibleNestedPointerQualifiers:
Fariborz Jahanianb98dade2009-11-09 22:16:37 +000011646 DiagKind = diag::ext_nested_pointer_qualifier_mismatch;
Fariborz Jahaniand7aa9d82009-11-07 20:20:40 +000011647 break;
Steve Naroff081c7422008-09-04 15:10:53 +000011648 case IntToBlockPointer:
11649 DiagKind = diag::err_int_to_block_pointer;
11650 break;
11651 case IncompatibleBlockPointer:
Mike Stumpd79b5a82009-04-21 22:51:42 +000011652 DiagKind = diag::err_typecheck_convert_incompatible_block_pointer;
Steve Naroff081c7422008-09-04 15:10:53 +000011653 break;
Fariborz Jahaniand3296742014-06-19 23:05:46 +000011654 case IncompatibleObjCQualifiedId: {
11655 if (SrcType->isObjCQualifiedIdType()) {
11656 const ObjCObjectPointerType *srcOPT =
11657 SrcType->getAs<ObjCObjectPointerType>();
11658 for (auto *srcProto : srcOPT->quals()) {
11659 PDecl = srcProto;
11660 break;
11661 }
11662 if (const ObjCInterfaceType *IFaceT =
11663 DstType->getAs<ObjCObjectPointerType>()->getInterfaceType())
11664 IFace = IFaceT->getDecl();
11665 }
11666 else if (DstType->isObjCQualifiedIdType()) {
11667 const ObjCObjectPointerType *dstOPT =
11668 DstType->getAs<ObjCObjectPointerType>();
11669 for (auto *dstProto : dstOPT->quals()) {
11670 PDecl = dstProto;
11671 break;
11672 }
11673 if (const ObjCInterfaceType *IFaceT =
11674 SrcType->getAs<ObjCObjectPointerType>()->getInterfaceType())
11675 IFace = IFaceT->getDecl();
11676 }
Steve Naroff8afa9892008-10-14 22:18:38 +000011677 DiagKind = diag::warn_incompatible_qualified_id;
11678 break;
Fariborz Jahaniand3296742014-06-19 23:05:46 +000011679 }
Anders Carlssondb5a9b62009-01-30 23:17:46 +000011680 case IncompatibleVectors:
11681 DiagKind = diag::warn_incompatible_vectors;
11682 break;
Fariborz Jahanian6f472e82011-07-07 18:55:47 +000011683 case IncompatibleObjCWeakRef:
11684 DiagKind = diag::err_arc_weak_unavailable_assign;
11685 break;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011686 case Incompatible:
11687 DiagKind = diag::err_typecheck_convert_incompatible;
Anna Zaks3b402712011-07-28 19:51:27 +000011688 ConvHints.tryToFixConversion(SrcExpr, SrcType, DstType, *this);
11689 MayHaveConvFixit = true;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011690 isInvalid = true;
Richard Trieucaff2472011-11-23 22:32:32 +000011691 MayHaveFunctionDiff = true;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011692 break;
11693 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011694
Douglas Gregorc68e1402010-04-09 00:35:39 +000011695 QualType FirstType, SecondType;
11696 switch (Action) {
11697 case AA_Assigning:
11698 case AA_Initializing:
11699 // The destination type comes first.
11700 FirstType = DstType;
11701 SecondType = SrcType;
11702 break;
Alexis Huntc46382e2010-04-28 23:02:27 +000011703
Douglas Gregorc68e1402010-04-09 00:35:39 +000011704 case AA_Returning:
11705 case AA_Passing:
Fariborz Jahanian3a25d0d2013-07-31 23:19:34 +000011706 case AA_Passing_CFAudited:
Douglas Gregorc68e1402010-04-09 00:35:39 +000011707 case AA_Converting:
11708 case AA_Sending:
11709 case AA_Casting:
11710 // The source type comes first.
11711 FirstType = SrcType;
11712 SecondType = DstType;
11713 break;
11714 }
Alexis Huntc46382e2010-04-28 23:02:27 +000011715
Anna Zaks3b402712011-07-28 19:51:27 +000011716 PartialDiagnostic FDiag = PDiag(DiagKind);
Fariborz Jahanian3a25d0d2013-07-31 23:19:34 +000011717 if (Action == AA_Passing_CFAudited)
Fariborz Jahanian68e18672014-09-10 18:23:34 +000011718 FDiag << FirstType << SecondType << AA_Passing << SrcExpr->getSourceRange();
Fariborz Jahanian3a25d0d2013-07-31 23:19:34 +000011719 else
11720 FDiag << FirstType << SecondType << Action << SrcExpr->getSourceRange();
Anna Zaks3b402712011-07-28 19:51:27 +000011721
11722 // If we can fix the conversion, suggest the FixIts.
11723 assert(ConvHints.isNull() || Hint.isNull());
11724 if (!ConvHints.isNull()) {
Benjamin Kramer490afa62012-01-14 21:05:10 +000011725 for (std::vector<FixItHint>::iterator HI = ConvHints.Hints.begin(),
11726 HE = ConvHints.Hints.end(); HI != HE; ++HI)
Anna Zaks3b402712011-07-28 19:51:27 +000011727 FDiag << *HI;
11728 } else {
11729 FDiag << Hint;
11730 }
11731 if (MayHaveConvFixit) { FDiag << (unsigned) (ConvHints.Kind); }
11732
Richard Trieucaff2472011-11-23 22:32:32 +000011733 if (MayHaveFunctionDiff)
11734 HandleFunctionTypeMismatch(FDiag, SecondType, FirstType);
11735
Anna Zaks3b402712011-07-28 19:51:27 +000011736 Diag(Loc, FDiag);
Fariborz Jahaniand3296742014-06-19 23:05:46 +000011737 if (DiagKind == diag::warn_incompatible_qualified_id &&
11738 PDecl && IFace && !IFace->hasDefinition())
11739 Diag(IFace->getLocation(), diag::not_incomplete_class_and_qualified_id)
11740 << IFace->getName() << PDecl->getName();
11741
Richard Trieucaff2472011-11-23 22:32:32 +000011742 if (SecondType == Context.OverloadTy)
11743 NoteAllOverloadCandidates(OverloadExpr::find(SrcExpr).Expression,
11744 FirstType);
11745
Douglas Gregor33823722011-06-11 01:09:30 +000011746 if (CheckInferredResultType)
11747 EmitRelatedResultTypeNote(SrcExpr);
John McCall5ec7e7d2013-03-19 07:04:25 +000011748
11749 if (Action == AA_Returning && ConvTy == IncompatiblePointer)
11750 EmitRelatedResultTypeNoteForReturn(DstType);
Douglas Gregor33823722011-06-11 01:09:30 +000011751
Douglas Gregor4f4946a2010-04-22 00:20:18 +000011752 if (Complained)
11753 *Complained = true;
Chris Lattner9bad62c2008-01-04 18:04:52 +000011754 return isInvalid;
11755}
Anders Carlssone54e8a12008-11-30 19:50:32 +000011756
Richard Smithf4c51d92012-02-04 09:53:13 +000011757ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
11758 llvm::APSInt *Result) {
Douglas Gregore2b37442012-05-04 22:38:52 +000011759 class SimpleICEDiagnoser : public VerifyICEDiagnoser {
11760 public:
Craig Toppere14c0f82014-03-12 04:55:44 +000011761 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
Douglas Gregore2b37442012-05-04 22:38:52 +000011762 S.Diag(Loc, diag::err_expr_not_ice) << S.LangOpts.CPlusPlus << SR;
11763 }
11764 } Diagnoser;
11765
11766 return VerifyIntegerConstantExpression(E, Result, Diagnoser);
11767}
11768
11769ExprResult Sema::VerifyIntegerConstantExpression(Expr *E,
11770 llvm::APSInt *Result,
11771 unsigned DiagID,
11772 bool AllowFold) {
11773 class IDDiagnoser : public VerifyICEDiagnoser {
11774 unsigned DiagID;
11775
11776 public:
11777 IDDiagnoser(unsigned DiagID)
11778 : VerifyICEDiagnoser(DiagID == 0), DiagID(DiagID) { }
11779
Craig Toppere14c0f82014-03-12 04:55:44 +000011780 void diagnoseNotICE(Sema &S, SourceLocation Loc, SourceRange SR) override {
Douglas Gregore2b37442012-05-04 22:38:52 +000011781 S.Diag(Loc, DiagID) << SR;
11782 }
11783 } Diagnoser(DiagID);
11784
11785 return VerifyIntegerConstantExpression(E, Result, Diagnoser, AllowFold);
11786}
11787
11788void Sema::VerifyICEDiagnoser::diagnoseFold(Sema &S, SourceLocation Loc,
11789 SourceRange SR) {
11790 S.Diag(Loc, diag::ext_expr_not_ice) << SR << S.LangOpts.CPlusPlus;
Richard Smithf4c51d92012-02-04 09:53:13 +000011791}
11792
Benjamin Kramer33adaae2012-04-18 14:22:41 +000011793ExprResult
11794Sema::VerifyIntegerConstantExpression(Expr *E, llvm::APSInt *Result,
Douglas Gregore2b37442012-05-04 22:38:52 +000011795 VerifyICEDiagnoser &Diagnoser,
11796 bool AllowFold) {
Daniel Dunbar62ee6412012-03-09 18:35:03 +000011797 SourceLocation DiagLoc = E->getLocStart();
Richard Smithf4c51d92012-02-04 09:53:13 +000011798
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011799 if (getLangOpts().CPlusPlus11) {
Richard Smithf4c51d92012-02-04 09:53:13 +000011800 // C++11 [expr.const]p5:
11801 // If an expression of literal class type is used in a context where an
11802 // integral constant expression is required, then that class type shall
11803 // have a single non-explicit conversion function to an integral or
11804 // unscoped enumeration type
11805 ExprResult Converted;
Richard Smithccc11812013-05-21 19:05:48 +000011806 class CXX11ConvertDiagnoser : public ICEConvertDiagnoser {
11807 public:
11808 CXX11ConvertDiagnoser(bool Silent)
11809 : ICEConvertDiagnoser(/*AllowScopedEnumerations*/false,
11810 Silent, true) {}
Douglas Gregore2b37442012-05-04 22:38:52 +000011811
Craig Toppere14c0f82014-03-12 04:55:44 +000011812 SemaDiagnosticBuilder diagnoseNotInt(Sema &S, SourceLocation Loc,
11813 QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +000011814 return S.Diag(Loc, diag::err_ice_not_integral) << T;
11815 }
11816
Craig Toppere14c0f82014-03-12 04:55:44 +000011817 SemaDiagnosticBuilder diagnoseIncomplete(
11818 Sema &S, SourceLocation Loc, QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +000011819 return S.Diag(Loc, diag::err_ice_incomplete_type) << T;
11820 }
11821
Craig Toppere14c0f82014-03-12 04:55:44 +000011822 SemaDiagnosticBuilder diagnoseExplicitConv(
11823 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +000011824 return S.Diag(Loc, diag::err_ice_explicit_conversion) << T << ConvTy;
11825 }
11826
Craig Toppere14c0f82014-03-12 04:55:44 +000011827 SemaDiagnosticBuilder noteExplicitConv(
11828 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +000011829 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
11830 << ConvTy->isEnumeralType() << ConvTy;
11831 }
11832
Craig Toppere14c0f82014-03-12 04:55:44 +000011833 SemaDiagnosticBuilder diagnoseAmbiguous(
11834 Sema &S, SourceLocation Loc, QualType T) override {
Richard Smithccc11812013-05-21 19:05:48 +000011835 return S.Diag(Loc, diag::err_ice_ambiguous_conversion) << T;
11836 }
11837
Craig Toppere14c0f82014-03-12 04:55:44 +000011838 SemaDiagnosticBuilder noteAmbiguous(
11839 Sema &S, CXXConversionDecl *Conv, QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +000011840 return S.Diag(Conv->getLocation(), diag::note_ice_conversion_here)
11841 << ConvTy->isEnumeralType() << ConvTy;
11842 }
11843
Craig Toppere14c0f82014-03-12 04:55:44 +000011844 SemaDiagnosticBuilder diagnoseConversion(
11845 Sema &S, SourceLocation Loc, QualType T, QualType ConvTy) override {
Richard Smithccc11812013-05-21 19:05:48 +000011846 llvm_unreachable("conversion functions are permitted");
11847 }
11848 } ConvertDiagnoser(Diagnoser.Suppress);
11849
11850 Converted = PerformContextualImplicitConversion(DiagLoc, E,
11851 ConvertDiagnoser);
Richard Smithf4c51d92012-02-04 09:53:13 +000011852 if (Converted.isInvalid())
11853 return Converted;
Nikola Smiljanic01a75982014-05-29 10:55:11 +000011854 E = Converted.get();
Richard Smithf4c51d92012-02-04 09:53:13 +000011855 if (!E->getType()->isIntegralOrUnscopedEnumerationType())
11856 return ExprError();
11857 } else if (!E->getType()->isIntegralOrUnscopedEnumerationType()) {
11858 // An ICE must be of integral or unscoped enumeration type.
Douglas Gregore2b37442012-05-04 22:38:52 +000011859 if (!Diagnoser.Suppress)
11860 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
Richard Smithf4c51d92012-02-04 09:53:13 +000011861 return ExprError();
11862 }
11863
Richard Smith902ca212011-12-14 23:32:26 +000011864 // Circumvent ICE checking in C++11 to avoid evaluating the expression twice
11865 // in the non-ICE case.
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011866 if (!getLangOpts().CPlusPlus11 && E->isIntegerConstantExpr(Context)) {
Richard Smithf4c51d92012-02-04 09:53:13 +000011867 if (Result)
11868 *Result = E->EvaluateKnownConstInt(Context);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011869 return E;
Eli Friedmanbb967cc2009-04-25 22:26:58 +000011870 }
11871
Anders Carlssone54e8a12008-11-30 19:50:32 +000011872 Expr::EvalResult EvalResult;
Dmitri Gribenkof8579502013-01-12 19:30:44 +000011873 SmallVector<PartialDiagnosticAt, 8> Notes;
Richard Smith92b1ce02011-12-12 09:28:41 +000011874 EvalResult.Diag = &Notes;
Anders Carlssone54e8a12008-11-30 19:50:32 +000011875
Richard Smith902ca212011-12-14 23:32:26 +000011876 // Try to evaluate the expression, and produce diagnostics explaining why it's
11877 // not a constant expression as a side-effect.
11878 bool Folded = E->EvaluateAsRValue(EvalResult, Context) &&
11879 EvalResult.Val.isInt() && !EvalResult.HasSideEffects;
11880
11881 // In C++11, we can rely on diagnostics being produced for any expression
11882 // which is not a constant expression. If no diagnostics were produced, then
11883 // this is a constant expression.
Richard Smith2bf7fdb2013-01-02 11:42:31 +000011884 if (Folded && getLangOpts().CPlusPlus11 && Notes.empty()) {
Richard Smith902ca212011-12-14 23:32:26 +000011885 if (Result)
11886 *Result = EvalResult.Val.getInt();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011887 return E;
Richard Smithf4c51d92012-02-04 09:53:13 +000011888 }
11889
11890 // If our only note is the usual "invalid subexpression" note, just point
11891 // the caret at its location rather than producing an essentially
11892 // redundant note.
11893 if (Notes.size() == 1 && Notes[0].second.getDiagID() ==
11894 diag::note_invalid_subexpr_in_const_expr) {
11895 DiagLoc = Notes[0].first;
11896 Notes.clear();
Richard Smith902ca212011-12-14 23:32:26 +000011897 }
11898
11899 if (!Folded || !AllowFold) {
Douglas Gregore2b37442012-05-04 22:38:52 +000011900 if (!Diagnoser.Suppress) {
11901 Diagnoser.diagnoseNotICE(*this, DiagLoc, E->getSourceRange());
Richard Smith92b1ce02011-12-12 09:28:41 +000011902 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11903 Diag(Notes[I].first, Notes[I].second);
Anders Carlssone54e8a12008-11-30 19:50:32 +000011904 }
Mike Stump4e1f26a2009-02-19 03:04:26 +000011905
Richard Smithf4c51d92012-02-04 09:53:13 +000011906 return ExprError();
Anders Carlssone54e8a12008-11-30 19:50:32 +000011907 }
11908
Douglas Gregore2b37442012-05-04 22:38:52 +000011909 Diagnoser.diagnoseFold(*this, DiagLoc, E->getSourceRange());
Richard Smith2ec40612012-01-15 03:51:30 +000011910 for (unsigned I = 0, N = Notes.size(); I != N; ++I)
11911 Diag(Notes[I].first, Notes[I].second);
Mike Stump4e1f26a2009-02-19 03:04:26 +000011912
Anders Carlssone54e8a12008-11-30 19:50:32 +000011913 if (Result)
11914 *Result = EvalResult.Val.getInt();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000011915 return E;
Anders Carlssone54e8a12008-11-30 19:50:32 +000011916}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +000011917
Eli Friedman456f0182012-01-20 01:26:23 +000011918namespace {
11919 // Handle the case where we conclude a expression which we speculatively
11920 // considered to be unevaluated is actually evaluated.
11921 class TransformToPE : public TreeTransform<TransformToPE> {
11922 typedef TreeTransform<TransformToPE> BaseTransform;
11923
11924 public:
11925 TransformToPE(Sema &SemaRef) : BaseTransform(SemaRef) { }
11926
11927 // Make sure we redo semantic analysis
11928 bool AlwaysRebuild() { return true; }
11929
Eli Friedman5f0ca242012-02-06 23:29:57 +000011930 // Make sure we handle LabelStmts correctly.
11931 // FIXME: This does the right thing, but maybe we need a more general
11932 // fix to TreeTransform?
11933 StmtResult TransformLabelStmt(LabelStmt *S) {
Craig Topperc3ec1492014-05-26 06:22:03 +000011934 S->getDecl()->setStmt(nullptr);
Eli Friedman5f0ca242012-02-06 23:29:57 +000011935 return BaseTransform::TransformLabelStmt(S);
11936 }
11937
Eli Friedman456f0182012-01-20 01:26:23 +000011938 // We need to special-case DeclRefExprs referring to FieldDecls which
11939 // are not part of a member pointer formation; normal TreeTransforming
11940 // doesn't catch this case because of the way we represent them in the AST.
11941 // FIXME: This is a bit ugly; is it really the best way to handle this
11942 // case?
11943 //
11944 // Error on DeclRefExprs referring to FieldDecls.
11945 ExprResult TransformDeclRefExpr(DeclRefExpr *E) {
11946 if (isa<FieldDecl>(E->getDecl()) &&
David Blaikie131fcb42012-08-06 22:47:24 +000011947 !SemaRef.isUnevaluatedContext())
Eli Friedman456f0182012-01-20 01:26:23 +000011948 return SemaRef.Diag(E->getLocation(),
11949 diag::err_invalid_non_static_member_use)
11950 << E->getDecl() << E->getSourceRange();
11951
11952 return BaseTransform::TransformDeclRefExpr(E);
11953 }
11954
11955 // Exception: filter out member pointer formation
11956 ExprResult TransformUnaryOperator(UnaryOperator *E) {
11957 if (E->getOpcode() == UO_AddrOf && E->getType()->isMemberPointerType())
11958 return E;
11959
11960 return BaseTransform::TransformUnaryOperator(E);
11961 }
11962
Douglas Gregor89625492012-02-09 08:14:43 +000011963 ExprResult TransformLambdaExpr(LambdaExpr *E) {
11964 // Lambdas never need to be transformed.
11965 return E;
11966 }
Eli Friedman456f0182012-01-20 01:26:23 +000011967 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000011968}
Eli Friedmanfbc0dff2012-01-18 01:05:54 +000011969
Benjamin Kramerd81108f2012-11-14 15:08:31 +000011970ExprResult Sema::TransformToPotentiallyEvaluated(Expr *E) {
John McCallf413f5e2013-05-03 00:10:13 +000011971 assert(isUnevaluatedContext() &&
Eli Friedmane4f22df2012-02-29 04:03:55 +000011972 "Should only transform unevaluated expressions");
Eli Friedman456f0182012-01-20 01:26:23 +000011973 ExprEvalContexts.back().Context =
11974 ExprEvalContexts[ExprEvalContexts.size()-2].Context;
John McCallf413f5e2013-05-03 00:10:13 +000011975 if (isUnevaluatedContext())
Eli Friedman456f0182012-01-20 01:26:23 +000011976 return E;
11977 return TransformToPE(*this).TransformExpr(E);
Eli Friedmanfbc0dff2012-01-18 01:05:54 +000011978}
11979
Douglas Gregorff790f12009-11-26 00:44:06 +000011980void
Douglas Gregor7fcbd902012-02-21 00:37:24 +000011981Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
Richard Smithfd555f62012-02-22 02:04:18 +000011982 Decl *LambdaContextDecl,
11983 bool IsDecltype) {
Benjamin Kramer57dddd482015-02-17 21:55:18 +000011984 ExprEvalContexts.emplace_back(NewContext, ExprCleanupObjects.size(),
11985 ExprNeedsCleanups, LambdaContextDecl,
11986 IsDecltype);
John McCall31168b02011-06-15 23:02:42 +000011987 ExprNeedsCleanups = false;
Eli Friedman3bda6b12012-02-02 23:15:15 +000011988 if (!MaybeODRUseExprs.empty())
11989 std::swap(MaybeODRUseExprs, ExprEvalContexts.back().SavedMaybeODRUseExprs);
Douglas Gregor0b6a6242009-06-22 20:57:11 +000011990}
11991
Eli Friedman15681d62012-09-26 04:34:21 +000011992void
11993Sema::PushExpressionEvaluationContext(ExpressionEvaluationContext NewContext,
11994 ReuseLambdaContextDecl_t,
11995 bool IsDecltype) {
Eli Friedman7e346a82013-07-01 20:22:57 +000011996 Decl *ClosureContextDecl = ExprEvalContexts.back().ManglingContextDecl;
11997 PushExpressionEvaluationContext(NewContext, ClosureContextDecl, IsDecltype);
Eli Friedman15681d62012-09-26 04:34:21 +000011998}
11999
Richard Trieucfc491d2011-08-02 04:35:43 +000012000void Sema::PopExpressionEvaluationContext() {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012001 ExpressionEvaluationContextRecord& Rec = ExprEvalContexts.back();
Kaelyn Takata6c759512014-10-27 18:07:37 +000012002 unsigned NumTypos = Rec.NumTypos;
Douglas Gregor0b6a6242009-06-22 20:57:11 +000012003
Douglas Gregor89625492012-02-09 08:14:43 +000012004 if (!Rec.Lambdas.empty()) {
David Majnemer9adc3612013-10-25 09:12:52 +000012005 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
12006 unsigned D;
12007 if (Rec.isUnevaluated()) {
12008 // C++11 [expr.prim.lambda]p2:
12009 // A lambda-expression shall not appear in an unevaluated operand
12010 // (Clause 5).
12011 D = diag::err_lambda_unevaluated_operand;
12012 } else {
12013 // C++1y [expr.const]p2:
12014 // A conditional-expression e is a core constant expression unless the
12015 // evaluation of e, following the rules of the abstract machine, would
12016 // evaluate [...] a lambda-expression.
12017 D = diag::err_lambda_in_constant_expression;
12018 }
Aaron Ballmanae2144e2014-10-16 17:53:07 +000012019 for (const auto *L : Rec.Lambdas)
12020 Diag(L->getLocStart(), D);
Douglas Gregor89625492012-02-09 08:14:43 +000012021 } else {
12022 // Mark the capture expressions odr-used. This was deferred
12023 // during lambda expression creation.
Aaron Ballmanae2144e2014-10-16 17:53:07 +000012024 for (auto *Lambda : Rec.Lambdas) {
12025 for (auto *C : Lambda->capture_inits())
12026 MarkDeclarationsReferencedInExpr(C);
Douglas Gregor89625492012-02-09 08:14:43 +000012027 }
12028 }
12029 }
12030
Douglas Gregorff790f12009-11-26 00:44:06 +000012031 // When are coming out of an unevaluated context, clear out any
12032 // temporaries that we may have created as part of the evaluation of
12033 // the expression in that context: they aren't relevant because they
12034 // will never be constructed.
John McCallf413f5e2013-05-03 00:10:13 +000012035 if (Rec.isUnevaluated() || Rec.Context == ConstantEvaluated) {
John McCall28fc7092011-11-10 05:35:25 +000012036 ExprCleanupObjects.erase(ExprCleanupObjects.begin() + Rec.NumCleanupObjects,
12037 ExprCleanupObjects.end());
John McCall31168b02011-06-15 23:02:42 +000012038 ExprNeedsCleanups = Rec.ParentNeedsCleanups;
Eli Friedman3bda6b12012-02-02 23:15:15 +000012039 CleanupVarDeclMarking();
12040 std::swap(MaybeODRUseExprs, Rec.SavedMaybeODRUseExprs);
John McCall31168b02011-06-15 23:02:42 +000012041 // Otherwise, merge the contexts together.
12042 } else {
12043 ExprNeedsCleanups |= Rec.ParentNeedsCleanups;
Eli Friedman3bda6b12012-02-02 23:15:15 +000012044 MaybeODRUseExprs.insert(Rec.SavedMaybeODRUseExprs.begin(),
12045 Rec.SavedMaybeODRUseExprs.end());
John McCall31168b02011-06-15 23:02:42 +000012046 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012047
12048 // Pop the current expression evaluation context off the stack.
12049 ExprEvalContexts.pop_back();
Kaelyn Takata6c759512014-10-27 18:07:37 +000012050
12051 if (!ExprEvalContexts.empty())
12052 ExprEvalContexts.back().NumTypos += NumTypos;
12053 else
12054 assert(NumTypos == 0 && "There are outstanding typos after popping the "
12055 "last ExpressionEvaluationContextRecord");
Douglas Gregor0b6a6242009-06-22 20:57:11 +000012056}
Douglas Gregorc9c02ed2009-06-19 23:52:42 +000012057
John McCall31168b02011-06-15 23:02:42 +000012058void Sema::DiscardCleanupsInEvaluationContext() {
John McCall28fc7092011-11-10 05:35:25 +000012059 ExprCleanupObjects.erase(
12060 ExprCleanupObjects.begin() + ExprEvalContexts.back().NumCleanupObjects,
12061 ExprCleanupObjects.end());
John McCall31168b02011-06-15 23:02:42 +000012062 ExprNeedsCleanups = false;
Eli Friedman3bda6b12012-02-02 23:15:15 +000012063 MaybeODRUseExprs.clear();
John McCall31168b02011-06-15 23:02:42 +000012064}
12065
Eli Friedmane0afc982012-01-21 01:01:51 +000012066ExprResult Sema::HandleExprEvaluationContextForTypeof(Expr *E) {
12067 if (!E->getType()->isVariablyModifiedType())
12068 return E;
Benjamin Kramerd81108f2012-11-14 15:08:31 +000012069 return TransformToPotentiallyEvaluated(E);
Eli Friedmane0afc982012-01-21 01:01:51 +000012070}
12071
Benjamin Kramerbf8da9d2012-02-06 11:13:08 +000012072static bool IsPotentiallyEvaluatedContext(Sema &SemaRef) {
Douglas Gregorc9c02ed2009-06-19 23:52:42 +000012073 // Do not mark anything as "used" within a dependent context; wait for
12074 // an instantiation.
Eli Friedmanfa0df832012-02-02 03:46:19 +000012075 if (SemaRef.CurContext->isDependentContext())
12076 return false;
Mike Stump11289f42009-09-09 15:08:12 +000012077
Eli Friedmanfa0df832012-02-02 03:46:19 +000012078 switch (SemaRef.ExprEvalContexts.back().Context) {
12079 case Sema::Unevaluated:
John McCallf413f5e2013-05-03 00:10:13 +000012080 case Sema::UnevaluatedAbstract:
Douglas Gregor0b6a6242009-06-22 20:57:11 +000012081 // We are in an expression that is not potentially evaluated; do nothing.
Eli Friedman02b58512012-01-21 04:44:06 +000012082 // (Depending on how you read the standard, we actually do need to do
12083 // something here for null pointer constants, but the standard's
12084 // definition of a null pointer constant is completely crazy.)
Eli Friedmanfa0df832012-02-02 03:46:19 +000012085 return false;
Mike Stump11289f42009-09-09 15:08:12 +000012086
Eli Friedmanfa0df832012-02-02 03:46:19 +000012087 case Sema::ConstantEvaluated:
12088 case Sema::PotentiallyEvaluated:
Eli Friedman02b58512012-01-21 04:44:06 +000012089 // We are in a potentially evaluated expression (or a constant-expression
12090 // in C++03); we need to do implicit template instantiation, implicitly
12091 // define class members, and mark most declarations as used.
Eli Friedmanfa0df832012-02-02 03:46:19 +000012092 return true;
Mike Stump11289f42009-09-09 15:08:12 +000012093
Eli Friedmanfa0df832012-02-02 03:46:19 +000012094 case Sema::PotentiallyEvaluatedIfUsed:
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000012095 // Referenced declarations will only be used if the construct in the
12096 // containing expression is used.
Eli Friedmanfa0df832012-02-02 03:46:19 +000012097 return false;
Douglas Gregor0b6a6242009-06-22 20:57:11 +000012098 }
Matt Beaumont-Gay248bc722012-02-02 18:35:35 +000012099 llvm_unreachable("Invalid context");
Eli Friedmanfa0df832012-02-02 03:46:19 +000012100}
12101
12102/// \brief Mark a function referenced, and check whether it is odr-used
12103/// (C++ [basic.def.odr]p2, C99 6.9p3)
Nico Weber8bf410f2014-08-27 17:04:39 +000012104void Sema::MarkFunctionReferenced(SourceLocation Loc, FunctionDecl *Func,
12105 bool OdrUse) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012106 assert(Func && "No function?");
12107
12108 Func->setReferenced();
12109
Richard Smithe10d3042012-11-07 01:14:25 +000012110 // C++11 [basic.def.odr]p3:
12111 // A function whose name appears as a potentially-evaluated expression is
12112 // odr-used if it is the unique lookup result or the selected member of a
12113 // set of overloaded functions [...].
12114 //
12115 // We (incorrectly) mark overload resolution as an unevaluated context, so we
12116 // can just check that here. Skip the rest of this function if we've already
12117 // marked the function as used.
Nico Weber562ff372015-01-25 01:00:21 +000012118 if (Func->isUsed(/*CheckUsedAttr=*/false) ||
12119 !IsPotentiallyEvaluatedContext(*this)) {
Richard Smithe10d3042012-11-07 01:14:25 +000012120 // C++11 [temp.inst]p3:
12121 // Unless a function template specialization has been explicitly
12122 // instantiated or explicitly specialized, the function template
12123 // specialization is implicitly instantiated when the specialization is
12124 // referenced in a context that requires a function definition to exist.
12125 //
12126 // We consider constexpr function templates to be referenced in a context
12127 // that requires a definition to exist whenever they are referenced.
12128 //
12129 // FIXME: This instantiates constexpr functions too frequently. If this is
12130 // really an unevaluated context (and we're not just in the definition of a
12131 // function template or overload resolution or other cases which we
12132 // incorrectly consider to be unevaluated contexts), and we're not in a
12133 // subexpression which we actually need to evaluate (for instance, a
12134 // template argument, array bound or an expression in a braced-init-list),
12135 // we are not permitted to instantiate this constexpr function definition.
12136 //
12137 // FIXME: This also implicitly defines special members too frequently. They
12138 // are only supposed to be implicitly defined if they are odr-used, but they
12139 // are not odr-used from constant expressions in unevaluated contexts.
12140 // However, they cannot be referenced if they are deleted, and they are
12141 // deleted whenever the implicit definition of the special member would
12142 // fail.
David Majnemerc85ed7e2013-10-23 21:31:20 +000012143 if (!Func->isConstexpr() || Func->getBody())
Richard Smithe10d3042012-11-07 01:14:25 +000012144 return;
12145 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(Func);
12146 if (!Func->isImplicitlyInstantiable() && (!MD || MD->isUserProvided()))
12147 return;
12148 }
Mike Stump11289f42009-09-09 15:08:12 +000012149
Douglas Gregorc9c02ed2009-06-19 23:52:42 +000012150 // Note that this declaration has been used.
Eli Friedmanfa0df832012-02-02 03:46:19 +000012151 if (CXXConstructorDecl *Constructor = dyn_cast<CXXConstructorDecl>(Func)) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012152 Constructor = cast<CXXConstructorDecl>(Constructor->getFirstDecl());
Richard Smith273c4e92012-02-26 07:51:39 +000012153 if (Constructor->isDefaulted() && !Constructor->isDeleted()) {
Sebastian Redl22653ba2011-08-30 19:58:05 +000012154 if (Constructor->isDefaultConstructor()) {
Hans Wennborg853ae942014-05-30 16:59:42 +000012155 if (Constructor->isTrivial() && !Constructor->hasAttr<DLLExportAttr>())
Sebastian Redl22653ba2011-08-30 19:58:05 +000012156 return;
Richard Smithab44d5b2013-12-10 08:25:00 +000012157 DefineImplicitDefaultConstructor(Loc, Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000012158 } else if (Constructor->isCopyConstructor()) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012159 DefineImplicitCopyConstructor(Loc, Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000012160 } else if (Constructor->isMoveConstructor()) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012161 DefineImplicitMoveConstructor(Loc, Constructor);
Sebastian Redl22653ba2011-08-30 19:58:05 +000012162 }
Richard Smithc2bc61b2013-03-18 21:12:30 +000012163 } else if (Constructor->getInheritedConstructor()) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012164 DefineInheritingConstructor(Loc, Constructor);
Fariborz Jahanian477d2422009-06-22 23:34:40 +000012165 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012166 } else if (CXXDestructorDecl *Destructor =
12167 dyn_cast<CXXDestructorDecl>(Func)) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012168 Destructor = cast<CXXDestructorDecl>(Destructor->getFirstDecl());
Nico Weber55905142015-03-06 06:01:06 +000012169 if (Destructor->isDefaulted() && !Destructor->isDeleted()) {
12170 if (Destructor->isTrivial() && !Destructor->hasAttr<DLLExportAttr>())
12171 return;
Fariborz Jahanian24a175b2009-06-26 23:49:16 +000012172 DefineImplicitDestructor(Loc, Destructor);
Nico Weber55905142015-03-06 06:01:06 +000012173 }
Nico Weberb3a99782015-01-26 06:23:36 +000012174 if (Destructor->isVirtual() && getLangOpts().AppleKext)
Douglas Gregor88d292c2010-05-13 16:44:06 +000012175 MarkVTableUsed(Loc, Destructor->getParent());
Eli Friedmanfa0df832012-02-02 03:46:19 +000012176 } else if (CXXMethodDecl *MethodDecl = dyn_cast<CXXMethodDecl>(Func)) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012177 if (MethodDecl->isOverloadedOperator() &&
Fariborz Jahanian41f79272009-06-25 21:45:19 +000012178 MethodDecl->getOverloadedOperator() == OO_Equal) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012179 MethodDecl = cast<CXXMethodDecl>(MethodDecl->getFirstDecl());
12180 if (MethodDecl->isDefaulted() && !MethodDecl->isDeleted()) {
Sebastian Redl22653ba2011-08-30 19:58:05 +000012181 if (MethodDecl->isCopyAssignmentOperator())
12182 DefineImplicitCopyAssignment(Loc, MethodDecl);
12183 else
12184 DefineImplicitMoveAssignment(Loc, MethodDecl);
12185 }
Douglas Gregord3b672c2012-02-16 01:06:16 +000012186 } else if (isa<CXXConversionDecl>(MethodDecl) &&
12187 MethodDecl->getParent()->isLambda()) {
Richard Smithab44d5b2013-12-10 08:25:00 +000012188 CXXConversionDecl *Conversion =
12189 cast<CXXConversionDecl>(MethodDecl->getFirstDecl());
Douglas Gregord3b672c2012-02-16 01:06:16 +000012190 if (Conversion->isLambdaToBlockPointerConversion())
12191 DefineImplicitLambdaToBlockPointerConversion(Loc, Conversion);
12192 else
12193 DefineImplicitLambdaToFunctionPointerConversion(Loc, Conversion);
Nico Weberb3a99782015-01-26 06:23:36 +000012194 } else if (MethodDecl->isVirtual() && getLangOpts().AppleKext)
Douglas Gregor88d292c2010-05-13 16:44:06 +000012195 MarkVTableUsed(Loc, MethodDecl->getParent());
Fariborz Jahanian41f79272009-06-25 21:45:19 +000012196 }
John McCall83779672011-02-19 02:53:41 +000012197
Eli Friedmanfa0df832012-02-02 03:46:19 +000012198 // Recursive functions should be marked when used from another function.
12199 // FIXME: Is this really right?
12200 if (CurContext == Func) return;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000012201
Richard Smithd3b5c9082012-07-27 04:22:15 +000012202 // Resolve the exception specification for any function which is
Richard Smithf623c962012-04-17 00:58:00 +000012203 // used: CodeGen will need it.
Richard Smithd3729422012-04-19 00:08:28 +000012204 const FunctionProtoType *FPT = Func->getType()->getAs<FunctionProtoType>();
Richard Smithd3b5c9082012-07-27 04:22:15 +000012205 if (FPT && isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
12206 ResolveExceptionSpec(Loc, FPT);
Richard Smithf623c962012-04-17 00:58:00 +000012207
Nico Weber8bf410f2014-08-27 17:04:39 +000012208 if (!OdrUse) return;
12209
Eli Friedmanfa0df832012-02-02 03:46:19 +000012210 // Implicit instantiation of function templates and member functions of
12211 // class templates.
12212 if (Func->isImplicitlyInstantiable()) {
12213 bool AlreadyInstantiated = false;
Richard Smith4a941e22012-02-14 22:25:15 +000012214 SourceLocation PointOfInstantiation = Loc;
Eli Friedmanfa0df832012-02-02 03:46:19 +000012215 if (FunctionTemplateSpecializationInfo *SpecInfo
12216 = Func->getTemplateSpecializationInfo()) {
12217 if (SpecInfo->getPointOfInstantiation().isInvalid())
12218 SpecInfo->setPointOfInstantiation(Loc);
12219 else if (SpecInfo->getTemplateSpecializationKind()
Richard Smith4a941e22012-02-14 22:25:15 +000012220 == TSK_ImplicitInstantiation) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012221 AlreadyInstantiated = true;
Richard Smith4a941e22012-02-14 22:25:15 +000012222 PointOfInstantiation = SpecInfo->getPointOfInstantiation();
12223 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012224 } else if (MemberSpecializationInfo *MSInfo
12225 = Func->getMemberSpecializationInfo()) {
12226 if (MSInfo->getPointOfInstantiation().isInvalid())
Douglas Gregor06db9f52009-10-12 20:18:28 +000012227 MSInfo->setPointOfInstantiation(Loc);
Eli Friedmanfa0df832012-02-02 03:46:19 +000012228 else if (MSInfo->getTemplateSpecializationKind()
Richard Smith4a941e22012-02-14 22:25:15 +000012229 == TSK_ImplicitInstantiation) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012230 AlreadyInstantiated = true;
Richard Smith4a941e22012-02-14 22:25:15 +000012231 PointOfInstantiation = MSInfo->getPointOfInstantiation();
12232 }
Douglas Gregor06db9f52009-10-12 20:18:28 +000012233 }
Mike Stump11289f42009-09-09 15:08:12 +000012234
David Majnemerc85ed7e2013-10-23 21:31:20 +000012235 if (!AlreadyInstantiated || Func->isConstexpr()) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012236 if (isa<CXXRecordDecl>(Func->getDeclContext()) &&
Faisal Vali18d35982013-06-26 02:34:24 +000012237 cast<CXXRecordDecl>(Func->getDeclContext())->isLocalClass() &&
12238 ActiveTemplateInstantiations.size())
Richard Smith4a941e22012-02-14 22:25:15 +000012239 PendingLocalImplicitInstantiations.push_back(
12240 std::make_pair(Func, PointOfInstantiation));
David Majnemerc85ed7e2013-10-23 21:31:20 +000012241 else if (Func->isConstexpr())
Eli Friedmanfa0df832012-02-02 03:46:19 +000012242 // Do not defer instantiations of constexpr functions, to avoid the
12243 // expression evaluator needing to call back into Sema if it sees a
12244 // call to such a function.
Richard Smith4a941e22012-02-14 22:25:15 +000012245 InstantiateFunctionDefinition(PointOfInstantiation, Func);
Argyrios Kyrtzidise5dc5b32012-02-10 20:10:44 +000012246 else {
Richard Smith4a941e22012-02-14 22:25:15 +000012247 PendingInstantiations.push_back(std::make_pair(Func,
12248 PointOfInstantiation));
Argyrios Kyrtzidise5dc5b32012-02-10 20:10:44 +000012249 // Notify the consumer that a function was implicitly instantiated.
12250 Consumer.HandleCXXImplicitFunctionInstantiation(Func);
12251 }
John McCall83779672011-02-19 02:53:41 +000012252 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012253 } else {
12254 // Walk redefinitions, as some of them may be instantiable.
Aaron Ballman86c93902014-03-06 23:45:36 +000012255 for (auto i : Func->redecls()) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000012256 if (!i->isUsed(false) && i->isImplicitlyInstantiable())
Aaron Ballman86c93902014-03-06 23:45:36 +000012257 MarkFunctionReferenced(Loc, i);
Eli Friedmanfa0df832012-02-02 03:46:19 +000012258 }
Sam Weinigbae69142009-09-11 03:29:30 +000012259 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012260
12261 // Keep track of used but undefined functions.
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +000012262 if (!Func->isDefined()) {
Rafael Espindola0e0d0092013-03-14 03:07:35 +000012263 if (mightHaveNonExternalLinkage(Func))
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +000012264 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
12265 else if (Func->getMostRecentDecl()->isInlined() &&
Peter Collingbourne470d9422015-05-13 22:07:22 +000012266 !LangOpts.GNUInline &&
Nick Lewycky9c7eb1d2013-02-01 08:13:20 +000012267 !Func->getMostRecentDecl()->hasAttr<GNUInlineAttr>())
12268 UndefinedButUsed.insert(std::make_pair(Func->getCanonicalDecl(), Loc));
Eli Friedmanfa0df832012-02-02 03:46:19 +000012269 }
12270
Rafael Espindola0d3da832013-10-19 02:06:23 +000012271 // Normally the most current decl is marked used while processing the use and
Rafael Espindola820fa702013-01-08 19:43:34 +000012272 // any subsequent decls are marked used by decl merging. This fails with
12273 // template instantiation since marking can happen at the end of the file
12274 // and, because of the two phase lookup, this function is called with at
12275 // decl in the middle of a decl chain. We loop to maintain the invariant
12276 // that once a decl is used, all decls after it are also used.
Rafael Espindolaf26d5392013-01-08 19:58:34 +000012277 for (FunctionDecl *F = Func->getMostRecentDecl();; F = F->getPreviousDecl()) {
Eli Friedman276dd182013-09-05 00:02:25 +000012278 F->markUsed(Context);
Rafael Espindola820fa702013-01-08 19:43:34 +000012279 if (F == Func)
12280 break;
Rafael Espindola820fa702013-01-08 19:43:34 +000012281 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000012282}
12283
Eli Friedman9bb33f52012-02-03 02:04:35 +000012284static void
12285diagnoseUncapturableValueReference(Sema &S, SourceLocation loc,
12286 VarDecl *var, DeclContext *DC) {
Eli Friedmandd053f62012-02-07 00:15:00 +000012287 DeclContext *VarDC = var->getDeclContext();
12288
Eli Friedman9bb33f52012-02-03 02:04:35 +000012289 // If the parameter still belongs to the translation unit, then
12290 // we're actually just using one parameter in the declaration of
12291 // the next.
12292 if (isa<ParmVarDecl>(var) &&
Eli Friedmandd053f62012-02-07 00:15:00 +000012293 isa<TranslationUnitDecl>(VarDC))
Eli Friedman9bb33f52012-02-03 02:04:35 +000012294 return;
12295
Eli Friedmandd053f62012-02-07 00:15:00 +000012296 // For C code, don't diagnose about capture if we're not actually in code
12297 // right now; it's impossible to write a non-constant expression outside of
12298 // function context, so we'll get other (more useful) diagnostics later.
12299 //
12300 // For C++, things get a bit more nasty... it would be nice to suppress this
12301 // diagnostic for certain cases like using a local variable in an array bound
12302 // for a member of a local class, but the correct predicate is not obvious.
David Blaikiebbafb8a2012-03-11 07:00:24 +000012303 if (!S.getLangOpts().CPlusPlus && !S.CurContext->isFunctionOrMethod())
Eli Friedman9bb33f52012-02-03 02:04:35 +000012304 return;
12305
Eli Friedmandd053f62012-02-07 00:15:00 +000012306 if (isa<CXXMethodDecl>(VarDC) &&
12307 cast<CXXRecordDecl>(VarDC->getParent())->isLambda()) {
12308 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_lambda)
12309 << var->getIdentifier();
12310 } else if (FunctionDecl *fn = dyn_cast<FunctionDecl>(VarDC)) {
12311 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_function)
12312 << var->getIdentifier() << fn->getDeclName();
12313 } else if (isa<BlockDecl>(VarDC)) {
12314 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_block)
12315 << var->getIdentifier();
12316 } else {
12317 // FIXME: Is there any other context where a local variable can be
12318 // declared?
12319 S.Diag(loc, diag::err_reference_to_local_var_in_enclosing_context)
12320 << var->getIdentifier();
12321 }
Eli Friedman9bb33f52012-02-03 02:04:35 +000012322
Alp Toker2afa8782014-05-28 12:20:14 +000012323 S.Diag(var->getLocation(), diag::note_entity_declared_at)
12324 << var->getIdentifier();
Eli Friedmandd053f62012-02-07 00:15:00 +000012325
12326 // FIXME: Add additional diagnostic info about class etc. which prevents
12327 // capture.
Eli Friedman9bb33f52012-02-03 02:04:35 +000012328}
12329
Faisal Valiad090d82013-10-07 05:13:48 +000012330
12331static bool isVariableAlreadyCapturedInScopeInfo(CapturingScopeInfo *CSI, VarDecl *Var,
12332 bool &SubCapturesAreNested,
12333 QualType &CaptureType,
12334 QualType &DeclRefType) {
12335 // Check whether we've already captured it.
12336 if (CSI->CaptureMap.count(Var)) {
12337 // If we found a capture, any subcaptures are nested.
12338 SubCapturesAreNested = true;
12339
12340 // Retrieve the capture type for this variable.
12341 CaptureType = CSI->getCapture(Var).getCaptureType();
12342
12343 // Compute the type of an expression that refers to this variable.
12344 DeclRefType = CaptureType.getNonReferenceType();
12345
12346 const CapturingScopeInfo::Capture &Cap = CSI->getCapture(Var);
12347 if (Cap.isCopyCapture() &&
12348 !(isa<LambdaScopeInfo>(CSI) && cast<LambdaScopeInfo>(CSI)->Mutable))
12349 DeclRefType.addConst();
12350 return true;
12351 }
12352 return false;
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +000012353}
12354
Faisal Valiad090d82013-10-07 05:13:48 +000012355// Only block literals, captured statements, and lambda expressions can
12356// capture; other scopes don't work.
12357static DeclContext *getParentOfCapturingContextOrNull(DeclContext *DC, VarDecl *Var,
12358 SourceLocation Loc,
12359 const bool Diagnose, Sema &S) {
Faisal Valia17d19f2013-11-07 05:17:06 +000012360 if (isa<BlockDecl>(DC) || isa<CapturedDecl>(DC) || isLambdaCallOperator(DC))
12361 return getLambdaAwareParentOfDeclContext(DC);
Alexey Bataevf841bd92014-12-16 07:00:22 +000012362 else if (Var->hasLocalStorage()) {
Faisal Valiad090d82013-10-07 05:13:48 +000012363 if (Diagnose)
12364 diagnoseUncapturableValueReference(S, Loc, Var, DC);
12365 }
Craig Topperc3ec1492014-05-26 06:22:03 +000012366 return nullptr;
Faisal Valiad090d82013-10-07 05:13:48 +000012367}
12368
12369// Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
12370// certain types of variables (unnamed, variably modified types etc.)
12371// so check for eligibility.
12372static bool isVariableCapturable(CapturingScopeInfo *CSI, VarDecl *Var,
12373 SourceLocation Loc,
12374 const bool Diagnose, Sema &S) {
12375
12376 bool IsBlock = isa<BlockScopeInfo>(CSI);
12377 bool IsLambda = isa<LambdaScopeInfo>(CSI);
12378
12379 // Lambdas are not allowed to capture unnamed variables
12380 // (e.g. anonymous unions).
12381 // FIXME: The C++11 rule don't actually state this explicitly, but I'm
12382 // assuming that's the intent.
12383 if (IsLambda && !Var->getDeclName()) {
12384 if (Diagnose) {
12385 S.Diag(Loc, diag::err_lambda_capture_anonymous_var);
12386 S.Diag(Var->getLocation(), diag::note_declared_at);
12387 }
12388 return false;
12389 }
12390
Alexey Bataev39c81e22014-08-28 04:28:19 +000012391 // Prohibit variably-modified types in blocks; they're difficult to deal with.
12392 if (Var->getType()->isVariablyModifiedType() && IsBlock) {
Faisal Valiad090d82013-10-07 05:13:48 +000012393 if (Diagnose) {
Alexey Bataev39c81e22014-08-28 04:28:19 +000012394 S.Diag(Loc, diag::err_ref_vm_type);
Faisal Valiad090d82013-10-07 05:13:48 +000012395 S.Diag(Var->getLocation(), diag::note_previous_decl)
12396 << Var->getDeclName();
12397 }
12398 return false;
12399 }
12400 // Prohibit structs with flexible array members too.
12401 // We cannot capture what is in the tail end of the struct.
12402 if (const RecordType *VTTy = Var->getType()->getAs<RecordType>()) {
12403 if (VTTy->getDecl()->hasFlexibleArrayMember()) {
12404 if (Diagnose) {
12405 if (IsBlock)
12406 S.Diag(Loc, diag::err_ref_flexarray_type);
12407 else
12408 S.Diag(Loc, diag::err_lambda_capture_flexarray_type)
12409 << Var->getDeclName();
12410 S.Diag(Var->getLocation(), diag::note_previous_decl)
12411 << Var->getDeclName();
12412 }
12413 return false;
12414 }
12415 }
12416 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
12417 // Lambdas and captured statements are not allowed to capture __block
12418 // variables; they don't support the expected semantics.
12419 if (HasBlocksAttr && (IsLambda || isa<CapturedRegionScopeInfo>(CSI))) {
12420 if (Diagnose) {
12421 S.Diag(Loc, diag::err_capture_block_variable)
12422 << Var->getDeclName() << !IsLambda;
12423 S.Diag(Var->getLocation(), diag::note_previous_decl)
12424 << Var->getDeclName();
12425 }
12426 return false;
12427 }
12428
12429 return true;
12430}
12431
12432// Returns true if the capture by block was successful.
12433static bool captureInBlock(BlockScopeInfo *BSI, VarDecl *Var,
12434 SourceLocation Loc,
12435 const bool BuildAndDiagnose,
12436 QualType &CaptureType,
12437 QualType &DeclRefType,
12438 const bool Nested,
12439 Sema &S) {
Craig Topperc3ec1492014-05-26 06:22:03 +000012440 Expr *CopyExpr = nullptr;
Faisal Valiad090d82013-10-07 05:13:48 +000012441 bool ByRef = false;
12442
12443 // Blocks are not allowed to capture arrays.
12444 if (CaptureType->isArrayType()) {
12445 if (BuildAndDiagnose) {
12446 S.Diag(Loc, diag::err_ref_array_type);
12447 S.Diag(Var->getLocation(), diag::note_previous_decl)
12448 << Var->getDeclName();
12449 }
12450 return false;
12451 }
12452
12453 // Forbid the block-capture of autoreleasing variables.
12454 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
12455 if (BuildAndDiagnose) {
12456 S.Diag(Loc, diag::err_arc_autoreleasing_capture)
12457 << /*block*/ 0;
12458 S.Diag(Var->getLocation(), diag::note_previous_decl)
12459 << Var->getDeclName();
12460 }
12461 return false;
12462 }
12463 const bool HasBlocksAttr = Var->hasAttr<BlocksAttr>();
12464 if (HasBlocksAttr || CaptureType->isReferenceType()) {
12465 // Block capture by reference does not change the capture or
12466 // declaration reference types.
12467 ByRef = true;
12468 } else {
12469 // Block capture by copy introduces 'const'.
12470 CaptureType = CaptureType.getNonReferenceType().withConst();
12471 DeclRefType = CaptureType;
12472
12473 if (S.getLangOpts().CPlusPlus && BuildAndDiagnose) {
12474 if (const RecordType *Record = DeclRefType->getAs<RecordType>()) {
12475 // The capture logic needs the destructor, so make sure we mark it.
12476 // Usually this is unnecessary because most local variables have
12477 // their destructors marked at declaration time, but parameters are
12478 // an exception because it's technically only the call site that
12479 // actually requires the destructor.
12480 if (isa<ParmVarDecl>(Var))
12481 S.FinalizeVarWithDestructor(Var, Record);
12482
12483 // Enter a new evaluation context to insulate the copy
12484 // full-expression.
12485 EnterExpressionEvaluationContext scope(S, S.PotentiallyEvaluated);
12486
12487 // According to the blocks spec, the capture of a variable from
12488 // the stack requires a const copy constructor. This is not true
12489 // of the copy/move done to move a __block variable to the heap.
12490 Expr *DeclRef = new (S.Context) DeclRefExpr(Var, Nested,
12491 DeclRefType.withConst(),
12492 VK_LValue, Loc);
12493
12494 ExprResult Result
12495 = S.PerformCopyInitialization(
12496 InitializedEntity::InitializeBlock(Var->getLocation(),
12497 CaptureType, false),
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000012498 Loc, DeclRef);
Faisal Valiad090d82013-10-07 05:13:48 +000012499
12500 // Build a full-expression copy expression if initialization
12501 // succeeded and used a non-trivial constructor. Recover from
12502 // errors by pretending that the copy isn't necessary.
12503 if (!Result.isInvalid() &&
12504 !cast<CXXConstructExpr>(Result.get())->getConstructor()
12505 ->isTrivial()) {
12506 Result = S.MaybeCreateExprWithCleanups(Result);
Nikola Smiljanic01a75982014-05-29 10:55:11 +000012507 CopyExpr = Result.get();
Faisal Valiad090d82013-10-07 05:13:48 +000012508 }
12509 }
12510 }
12511 }
12512
12513 // Actually capture the variable.
12514 if (BuildAndDiagnose)
12515 BSI->addCapture(Var, HasBlocksAttr, ByRef, Nested, Loc,
12516 SourceLocation(), CaptureType, CopyExpr);
12517
12518 return true;
12519
12520}
12521
12522
12523/// \brief Capture the given variable in the captured region.
12524static bool captureInCapturedRegion(CapturedRegionScopeInfo *RSI,
12525 VarDecl *Var,
12526 SourceLocation Loc,
12527 const bool BuildAndDiagnose,
12528 QualType &CaptureType,
12529 QualType &DeclRefType,
Alexey Bataev07649fb2014-12-16 08:01:48 +000012530 const bool RefersToCapturedVariable,
Faisal Valiad090d82013-10-07 05:13:48 +000012531 Sema &S) {
12532
12533 // By default, capture variables by reference.
12534 bool ByRef = true;
12535 // Using an LValue reference type is consistent with Lambdas (see below).
Alexey Bataevb44fdfc2015-07-14 10:32:29 +000012536 if (S.getLangOpts().OpenMP && S.IsOpenMPCapturedVar(Var))
12537 DeclRefType = DeclRefType.getUnqualifiedType();
Faisal Valiad090d82013-10-07 05:13:48 +000012538 CaptureType = S.Context.getLValueReferenceType(DeclRefType);
Craig Topperc3ec1492014-05-26 06:22:03 +000012539 Expr *CopyExpr = nullptr;
Faisal Valiad090d82013-10-07 05:13:48 +000012540 if (BuildAndDiagnose) {
12541 // The current implementation assumes that all variables are captured
Nico Weber83ea0122014-05-03 21:57:40 +000012542 // by references. Since there is no capture by copy, no expression
12543 // evaluation will be needed.
Faisal Valiad090d82013-10-07 05:13:48 +000012544 RecordDecl *RD = RSI->TheRecordDecl;
12545
12546 FieldDecl *Field
Craig Topperc3ec1492014-05-26 06:22:03 +000012547 = FieldDecl::Create(S.Context, RD, Loc, Loc, nullptr, CaptureType,
Faisal Valiad090d82013-10-07 05:13:48 +000012548 S.Context.getTrivialTypeSourceInfo(CaptureType, Loc),
Craig Topperc3ec1492014-05-26 06:22:03 +000012549 nullptr, false, ICIS_NoInit);
Faisal Valiad090d82013-10-07 05:13:48 +000012550 Field->setImplicit(true);
12551 Field->setAccess(AS_private);
12552 RD->addDecl(Field);
12553
Alexey Bataev07649fb2014-12-16 08:01:48 +000012554 CopyExpr = new (S.Context) DeclRefExpr(Var, RefersToCapturedVariable,
Faisal Valiad090d82013-10-07 05:13:48 +000012555 DeclRefType, VK_LValue, Loc);
12556 Var->setReferenced(true);
12557 Var->markUsed(S.Context);
12558 }
12559
12560 // Actually capture the variable.
12561 if (BuildAndDiagnose)
Alexey Bataev07649fb2014-12-16 08:01:48 +000012562 RSI->addCapture(Var, /*isBlock*/false, ByRef, RefersToCapturedVariable, Loc,
Faisal Valiad090d82013-10-07 05:13:48 +000012563 SourceLocation(), CaptureType, CopyExpr);
12564
12565
12566 return true;
12567}
12568
12569/// \brief Create a field within the lambda class for the variable
Richard Smithc38498f2015-04-27 21:27:54 +000012570/// being captured.
12571static void addAsFieldToClosureType(Sema &S, LambdaScopeInfo *LSI, VarDecl *Var,
12572 QualType FieldType, QualType DeclRefType,
12573 SourceLocation Loc,
12574 bool RefersToCapturedVariable) {
Douglas Gregor81495f32012-02-12 18:42:33 +000012575 CXXRecordDecl *Lambda = LSI->Lambda;
Douglas Gregor81495f32012-02-12 18:42:33 +000012576
Douglas Gregorabecb9c2012-02-09 01:56:40 +000012577 // Build the non-static data member.
12578 FieldDecl *Field
Craig Topperc3ec1492014-05-26 06:22:03 +000012579 = FieldDecl::Create(S.Context, Lambda, Loc, Loc, nullptr, FieldType,
Douglas Gregorabecb9c2012-02-09 01:56:40 +000012580 S.Context.getTrivialTypeSourceInfo(FieldType, Loc),
Craig Topperc3ec1492014-05-26 06:22:03 +000012581 nullptr, false, ICIS_NoInit);
Douglas Gregorabecb9c2012-02-09 01:56:40 +000012582 Field->setImplicit(true);
12583 Field->setAccess(AS_private);
Douglas Gregor3d23f7882012-02-09 02:12:34 +000012584 Lambda->addDecl(Field);
Douglas Gregor199cec72012-02-09 02:45:47 +000012585}
Douglas Gregorabecb9c2012-02-09 01:56:40 +000012586
Faisal Valiad090d82013-10-07 05:13:48 +000012587/// \brief Capture the given variable in the lambda.
12588static bool captureInLambda(LambdaScopeInfo *LSI,
12589 VarDecl *Var,
12590 SourceLocation Loc,
12591 const bool BuildAndDiagnose,
12592 QualType &CaptureType,
12593 QualType &DeclRefType,
Alexey Bataev07649fb2014-12-16 08:01:48 +000012594 const bool RefersToCapturedVariable,
Faisal Valiad090d82013-10-07 05:13:48 +000012595 const Sema::TryCaptureKind Kind,
12596 SourceLocation EllipsisLoc,
12597 const bool IsTopScope,
12598 Sema &S) {
12599
12600 // Determine whether we are capturing by reference or by value.
12601 bool ByRef = false;
12602 if (IsTopScope && Kind != Sema::TryCapture_Implicit) {
12603 ByRef = (Kind == Sema::TryCapture_ExplicitByRef);
12604 } else {
12605 ByRef = (LSI->ImpCaptureStyle == LambdaScopeInfo::ImpCap_LambdaByref);
12606 }
12607
12608 // Compute the type of the field that will capture this variable.
12609 if (ByRef) {
12610 // C++11 [expr.prim.lambda]p15:
12611 // An entity is captured by reference if it is implicitly or
12612 // explicitly captured but not captured by copy. It is
12613 // unspecified whether additional unnamed non-static data
12614 // members are declared in the closure type for entities
12615 // captured by reference.
12616 //
12617 // FIXME: It is not clear whether we want to build an lvalue reference
12618 // to the DeclRefType or to CaptureType.getNonReferenceType(). GCC appears
12619 // to do the former, while EDG does the latter. Core issue 1249 will
12620 // clarify, but for now we follow GCC because it's a more permissive and
12621 // easily defensible position.
12622 CaptureType = S.Context.getLValueReferenceType(DeclRefType);
12623 } else {
12624 // C++11 [expr.prim.lambda]p14:
12625 // For each entity captured by copy, an unnamed non-static
12626 // data member is declared in the closure type. The
12627 // declaration order of these members is unspecified. The type
12628 // of such a data member is the type of the corresponding
12629 // captured entity if the entity is not a reference to an
12630 // object, or the referenced type otherwise. [Note: If the
12631 // captured entity is a reference to a function, the
12632 // corresponding data member is also a reference to a
12633 // function. - end note ]
12634 if (const ReferenceType *RefType = CaptureType->getAs<ReferenceType>()){
12635 if (!RefType->getPointeeType()->isFunctionType())
12636 CaptureType = RefType->getPointeeType();
12637 }
12638
12639 // Forbid the lambda copy-capture of autoreleasing variables.
12640 if (CaptureType.getObjCLifetime() == Qualifiers::OCL_Autoreleasing) {
12641 if (BuildAndDiagnose) {
12642 S.Diag(Loc, diag::err_arc_autoreleasing_capture) << /*lambda*/ 1;
12643 S.Diag(Var->getLocation(), diag::note_previous_decl)
12644 << Var->getDeclName();
12645 }
12646 return false;
12647 }
Douglas Gregor71fe0e82013-10-11 04:25:21 +000012648
Richard Smith111d3482014-01-21 23:27:46 +000012649 // Make sure that by-copy captures are of a complete and non-abstract type.
12650 if (BuildAndDiagnose) {
12651 if (!CaptureType->isDependentType() &&
12652 S.RequireCompleteType(Loc, CaptureType,
12653 diag::err_capture_of_incomplete_type,
12654 Var->getDeclName()))
12655 return false;
12656
12657 if (S.RequireNonAbstractType(Loc, CaptureType,
12658 diag::err_capture_of_abstract_type))
12659 return false;
12660 }
Faisal Valiad090d82013-10-07 05:13:48 +000012661 }
12662
12663 // Capture this variable in the lambda.
Richard Smithc38498f2015-04-27 21:27:54 +000012664 if (BuildAndDiagnose)
12665 addAsFieldToClosureType(S, LSI, Var, CaptureType, DeclRefType, Loc,
12666 RefersToCapturedVariable);
Faisal Valiad090d82013-10-07 05:13:48 +000012667
12668 // Compute the type of a reference to this captured variable.
12669 if (ByRef)
12670 DeclRefType = CaptureType.getNonReferenceType();
12671 else {
12672 // C++ [expr.prim.lambda]p5:
12673 // The closure type for a lambda-expression has a public inline
12674 // function call operator [...]. This function call operator is
12675 // declared const (9.3.1) if and only if the lambda-expression’s
12676 // parameter-declaration-clause is not followed by mutable.
12677 DeclRefType = CaptureType.getNonReferenceType();
12678 if (!LSI->Mutable && !CaptureType->isReferenceType())
12679 DeclRefType.addConst();
12680 }
12681
12682 // Add the capture.
12683 if (BuildAndDiagnose)
Alexey Bataev07649fb2014-12-16 08:01:48 +000012684 LSI->addCapture(Var, /*IsBlock=*/false, ByRef, RefersToCapturedVariable,
Richard Smithc38498f2015-04-27 21:27:54 +000012685 Loc, EllipsisLoc, CaptureType, /*CopyExpr=*/nullptr);
Faisal Valiad090d82013-10-07 05:13:48 +000012686
12687 return true;
12688}
12689
Richard Smithc38498f2015-04-27 21:27:54 +000012690bool Sema::tryCaptureVariable(
12691 VarDecl *Var, SourceLocation ExprLoc, TryCaptureKind Kind,
12692 SourceLocation EllipsisLoc, bool BuildAndDiagnose, QualType &CaptureType,
12693 QualType &DeclRefType, const unsigned *const FunctionScopeIndexToStopAt) {
12694 // An init-capture is notionally from the context surrounding its
12695 // declaration, but its parent DC is the lambda class.
12696 DeclContext *VarDC = Var->getDeclContext();
12697 if (Var->isInitCapture())
12698 VarDC = VarDC->getParent();
Douglas Gregor81495f32012-02-12 18:42:33 +000012699
Eli Friedman24af8502012-02-03 22:47:37 +000012700 DeclContext *DC = CurContext;
Faisal Valia17d19f2013-11-07 05:17:06 +000012701 const unsigned MaxFunctionScopesIndex = FunctionScopeIndexToStopAt
12702 ? *FunctionScopeIndexToStopAt : FunctionScopes.size() - 1;
12703 // We need to sync up the Declaration Context with the
12704 // FunctionScopeIndexToStopAt
12705 if (FunctionScopeIndexToStopAt) {
12706 unsigned FSIndex = FunctionScopes.size() - 1;
12707 while (FSIndex != MaxFunctionScopesIndex) {
12708 DC = getLambdaAwareParentOfDeclContext(DC);
12709 --FSIndex;
12710 }
12711 }
Faisal Valiad090d82013-10-07 05:13:48 +000012712
Faisal Valia17d19f2013-11-07 05:17:06 +000012713
Richard Smithc38498f2015-04-27 21:27:54 +000012714 // If the variable is declared in the current context, there is no need to
12715 // capture it.
12716 if (VarDC == DC) return true;
Alexey Bataevf841bd92014-12-16 07:00:22 +000012717
12718 // Capture global variables if it is required to use private copy of this
12719 // variable.
12720 bool IsGlobal = !Var->hasLocalStorage();
12721 if (IsGlobal && !(LangOpts.OpenMP && IsOpenMPCapturedVar(Var)))
12722 return true;
Eli Friedman9bb33f52012-02-03 02:04:35 +000012723
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012724 // Walk up the stack to determine whether we can capture the variable,
12725 // performing the "simple" checks that don't depend on type. We stop when
12726 // we've either hit the declared scope of the variable or find an existing
Faisal Valiad090d82013-10-07 05:13:48 +000012727 // capture of that variable. We start from the innermost capturing-entity
12728 // (the DC) and ensure that all intervening capturing-entities
12729 // (blocks/lambdas etc.) between the innermost capturer and the variable`s
12730 // declcontext can either capture the variable or have already captured
12731 // the variable.
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012732 CaptureType = Var->getType();
12733 DeclRefType = CaptureType.getNonReferenceType();
Richard Smithc38498f2015-04-27 21:27:54 +000012734 bool Nested = false;
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012735 bool Explicit = (Kind != TryCapture_Implicit);
Faisal Valiad090d82013-10-07 05:13:48 +000012736 unsigned FunctionScopesIndex = MaxFunctionScopesIndex;
Alexey Bataevaac108a2015-06-23 04:51:00 +000012737 unsigned OpenMPLevel = 0;
Eli Friedman9bb33f52012-02-03 02:04:35 +000012738 do {
Tareq A. Siraj6dfa25a2013-04-16 19:37:38 +000012739 // Only block literals, captured statements, and lambda expressions can
12740 // capture; other scopes don't work.
Faisal Valiad090d82013-10-07 05:13:48 +000012741 DeclContext *ParentDC = getParentOfCapturingContextOrNull(DC, Var,
12742 ExprLoc,
12743 BuildAndDiagnose,
12744 *this);
Alexey Bataevf841bd92014-12-16 07:00:22 +000012745 // We need to check for the parent *first* because, if we *have*
12746 // private-captured a global variable, we need to recursively capture it in
12747 // intermediate blocks, lambdas, etc.
12748 if (!ParentDC) {
12749 if (IsGlobal) {
12750 FunctionScopesIndex = MaxFunctionScopesIndex - 1;
12751 break;
12752 }
12753 return true;
12754 }
12755
Faisal Valiad090d82013-10-07 05:13:48 +000012756 FunctionScopeInfo *FSI = FunctionScopes[FunctionScopesIndex];
12757 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FSI);
Eli Friedman9bb33f52012-02-03 02:04:35 +000012758
Eli Friedman9bb33f52012-02-03 02:04:35 +000012759
Eli Friedman24af8502012-02-03 22:47:37 +000012760 // Check whether we've already captured it.
Faisal Valiad090d82013-10-07 05:13:48 +000012761 if (isVariableAlreadyCapturedInScopeInfo(CSI, Var, Nested, CaptureType,
12762 DeclRefType))
Eli Friedman9bb33f52012-02-03 02:04:35 +000012763 break;
Alexey Bataevaac108a2015-06-23 04:51:00 +000012764 if (getLangOpts().OpenMP) {
12765 if (auto *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
12766 // OpenMP private variables should not be captured in outer scope, so
12767 // just break here.
12768 if (RSI->CapRegionKind == CR_OpenMP) {
12769 if (isOpenMPPrivateVar(Var, OpenMPLevel)) {
12770 Nested = true;
Alexey Bataevb44fdfc2015-07-14 10:32:29 +000012771 DeclRefType = DeclRefType.getUnqualifiedType();
Alexey Bataevaac108a2015-06-23 04:51:00 +000012772 CaptureType = Context.getLValueReferenceType(DeclRefType);
12773 break;
12774 }
12775 ++OpenMPLevel;
12776 }
12777 }
12778 }
Faisal Valia17d19f2013-11-07 05:17:06 +000012779 // If we are instantiating a generic lambda call operator body,
12780 // we do not want to capture new variables. What was captured
12781 // during either a lambdas transformation or initial parsing
12782 // should be used.
12783 if (isGenericLambdaCallOperatorSpecialization(DC)) {
12784 if (BuildAndDiagnose) {
12785 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
12786 if (LSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None) {
12787 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
12788 Diag(Var->getLocation(), diag::note_previous_decl)
12789 << Var->getDeclName();
12790 Diag(LSI->Lambda->getLocStart(), diag::note_lambda_decl);
12791 } else
12792 diagnoseUncapturableValueReference(*this, ExprLoc, Var, DC);
12793 }
12794 return true;
12795 }
Faisal Valiad090d82013-10-07 05:13:48 +000012796 // Certain capturing entities (lambdas, blocks etc.) are not allowed to capture
12797 // certain types of variables (unnamed, variably modified types etc.)
12798 // so check for eligibility.
12799 if (!isVariableCapturable(CSI, Var, ExprLoc, BuildAndDiagnose, *this))
Alexey Bataevaca7fcf2014-06-30 02:55:54 +000012800 return true;
12801
12802 // Try to capture variable-length arrays types.
12803 if (Var->getType()->isVariablyModifiedType()) {
12804 // We're going to walk down into the type and look for VLA
12805 // expressions.
12806 QualType QTy = Var->getType();
12807 if (ParmVarDecl *PVD = dyn_cast_or_null<ParmVarDecl>(Var))
12808 QTy = PVD->getOriginalType();
12809 do {
12810 const Type *Ty = QTy.getTypePtr();
12811 switch (Ty->getTypeClass()) {
12812#define TYPE(Class, Base)
12813#define ABSTRACT_TYPE(Class, Base)
12814#define NON_CANONICAL_TYPE(Class, Base)
12815#define DEPENDENT_TYPE(Class, Base) case Type::Class:
12816#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base)
12817#include "clang/AST/TypeNodes.def"
12818 QTy = QualType();
12819 break;
12820 // These types are never variably-modified.
12821 case Type::Builtin:
12822 case Type::Complex:
12823 case Type::Vector:
12824 case Type::ExtVector:
12825 case Type::Record:
12826 case Type::Enum:
12827 case Type::Elaborated:
12828 case Type::TemplateSpecialization:
12829 case Type::ObjCObject:
12830 case Type::ObjCInterface:
12831 case Type::ObjCObjectPointer:
12832 llvm_unreachable("type class is never variably-modified!");
12833 case Type::Adjusted:
12834 QTy = cast<AdjustedType>(Ty)->getOriginalType();
12835 break;
12836 case Type::Decayed:
12837 QTy = cast<DecayedType>(Ty)->getPointeeType();
12838 break;
12839 case Type::Pointer:
12840 QTy = cast<PointerType>(Ty)->getPointeeType();
12841 break;
12842 case Type::BlockPointer:
12843 QTy = cast<BlockPointerType>(Ty)->getPointeeType();
12844 break;
12845 case Type::LValueReference:
12846 case Type::RValueReference:
12847 QTy = cast<ReferenceType>(Ty)->getPointeeType();
12848 break;
12849 case Type::MemberPointer:
12850 QTy = cast<MemberPointerType>(Ty)->getPointeeType();
12851 break;
12852 case Type::ConstantArray:
12853 case Type::IncompleteArray:
12854 // Losing element qualification here is fine.
12855 QTy = cast<ArrayType>(Ty)->getElementType();
12856 break;
12857 case Type::VariableArray: {
12858 // Losing element qualification here is fine.
Alexey Bataev39c81e22014-08-28 04:28:19 +000012859 const VariableArrayType *VAT = cast<VariableArrayType>(Ty);
Alexey Bataevaca7fcf2014-06-30 02:55:54 +000012860
12861 // Unknown size indication requires no size computation.
12862 // Otherwise, evaluate and record it.
Alexey Bataev39c81e22014-08-28 04:28:19 +000012863 if (auto Size = VAT->getSizeExpr()) {
Alexey Bataev330de032014-10-29 12:21:55 +000012864 if (!CSI->isVLATypeCaptured(VAT)) {
12865 RecordDecl *CapRecord = nullptr;
12866 if (auto LSI = dyn_cast<LambdaScopeInfo>(CSI)) {
12867 CapRecord = LSI->Lambda;
12868 } else if (auto CRSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
12869 CapRecord = CRSI->TheRecordDecl;
12870 }
12871 if (CapRecord) {
Alexey Bataev39c81e22014-08-28 04:28:19 +000012872 auto ExprLoc = Size->getExprLoc();
12873 auto SizeType = Context.getSizeType();
Alexey Bataev39c81e22014-08-28 04:28:19 +000012874 // Build the non-static data member.
12875 auto Field = FieldDecl::Create(
Alexey Bataev330de032014-10-29 12:21:55 +000012876 Context, CapRecord, ExprLoc, ExprLoc,
Alexey Bataev39c81e22014-08-28 04:28:19 +000012877 /*Id*/ nullptr, SizeType, /*TInfo*/ nullptr,
12878 /*BW*/ nullptr, /*Mutable*/ false,
12879 /*InitStyle*/ ICIS_NoInit);
12880 Field->setImplicit(true);
12881 Field->setAccess(AS_private);
12882 Field->setCapturedVLAType(VAT);
Alexey Bataev330de032014-10-29 12:21:55 +000012883 CapRecord->addDecl(Field);
Alexey Bataev39c81e22014-08-28 04:28:19 +000012884
Alexey Bataev330de032014-10-29 12:21:55 +000012885 CSI->addVLATypeCapture(ExprLoc, SizeType);
Alexey Bataev39c81e22014-08-28 04:28:19 +000012886 }
Alexey Bataev39c81e22014-08-28 04:28:19 +000012887 }
Alexey Bataevaca7fcf2014-06-30 02:55:54 +000012888 }
Alexey Bataev39c81e22014-08-28 04:28:19 +000012889 QTy = VAT->getElementType();
Alexey Bataevaca7fcf2014-06-30 02:55:54 +000012890 break;
12891 }
12892 case Type::FunctionProto:
12893 case Type::FunctionNoProto:
12894 QTy = cast<FunctionType>(Ty)->getReturnType();
12895 break;
12896 case Type::Paren:
12897 case Type::TypeOf:
12898 case Type::UnaryTransform:
12899 case Type::Attributed:
12900 case Type::SubstTemplateTypeParm:
12901 case Type::PackExpansion:
12902 // Keep walking after single level desugaring.
12903 QTy = QTy.getSingleStepDesugaredType(getASTContext());
12904 break;
12905 case Type::Typedef:
12906 QTy = cast<TypedefType>(Ty)->desugar();
12907 break;
12908 case Type::Decltype:
12909 QTy = cast<DecltypeType>(Ty)->desugar();
12910 break;
12911 case Type::Auto:
12912 QTy = cast<AutoType>(Ty)->getDeducedType();
12913 break;
12914 case Type::TypeOfExpr:
12915 QTy = cast<TypeOfExprType>(Ty)->getUnderlyingExpr()->getType();
12916 break;
12917 case Type::Atomic:
12918 QTy = cast<AtomicType>(Ty)->getValueType();
12919 break;
12920 }
12921 } while (!QTy.isNull() && QTy->isVariablyModifiedType());
12922 }
12923
Douglas Gregor81495f32012-02-12 18:42:33 +000012924 if (CSI->ImpCaptureStyle == CapturingScopeInfo::ImpCap_None && !Explicit) {
Faisal Valiad090d82013-10-07 05:13:48 +000012925 // No capture-default, and this is not an explicit capture
12926 // so cannot capture this variable.
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012927 if (BuildAndDiagnose) {
Faisal Valiad090d82013-10-07 05:13:48 +000012928 Diag(ExprLoc, diag::err_lambda_impcap) << Var->getDeclName();
Douglas Gregor81495f32012-02-12 18:42:33 +000012929 Diag(Var->getLocation(), diag::note_previous_decl)
12930 << Var->getDeclName();
12931 Diag(cast<LambdaScopeInfo>(CSI)->Lambda->getLocStart(),
12932 diag::note_lambda_decl);
Faisal Valia17d19f2013-11-07 05:17:06 +000012933 // FIXME: If we error out because an outer lambda can not implicitly
12934 // capture a variable that an inner lambda explicitly captures, we
12935 // should have the inner lambda do the explicit capture - because
12936 // it makes for cleaner diagnostics later. This would purely be done
12937 // so that the diagnostic does not misleadingly claim that a variable
12938 // can not be captured by a lambda implicitly even though it is captured
12939 // explicitly. Suggestion:
12940 // - create const bool VariableCaptureWasInitiallyExplicit = Explicit
12941 // at the function head
12942 // - cache the StartingDeclContext - this must be a lambda
12943 // - captureInLambda in the innermost lambda the variable.
Douglas Gregor81495f32012-02-12 18:42:33 +000012944 }
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012945 return true;
Douglas Gregor81495f32012-02-12 18:42:33 +000012946 }
12947
12948 FunctionScopesIndex--;
12949 DC = ParentDC;
12950 Explicit = false;
Richard Smithc38498f2015-04-27 21:27:54 +000012951 } while (!VarDC->Equals(DC));
Douglas Gregor81495f32012-02-12 18:42:33 +000012952
Faisal Valiad090d82013-10-07 05:13:48 +000012953 // Walk back down the scope stack, (e.g. from outer lambda to inner lambda)
12954 // computing the type of the capture at each step, checking type-specific
12955 // requirements, and adding captures if requested.
12956 // If the variable had already been captured previously, we start capturing
12957 // at the lambda nested within that one.
12958 for (unsigned I = ++FunctionScopesIndex, N = MaxFunctionScopesIndex + 1; I != N;
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012959 ++I) {
12960 CapturingScopeInfo *CSI = cast<CapturingScopeInfo>(FunctionScopes[I]);
Douglas Gregor812d8f62012-02-18 05:51:20 +000012961
Faisal Valiad090d82013-10-07 05:13:48 +000012962 if (BlockScopeInfo *BSI = dyn_cast<BlockScopeInfo>(CSI)) {
12963 if (!captureInBlock(BSI, Var, ExprLoc,
12964 BuildAndDiagnose, CaptureType,
12965 DeclRefType, Nested, *this))
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012966 return true;
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012967 Nested = true;
Faisal Valiad090d82013-10-07 05:13:48 +000012968 } else if (CapturedRegionScopeInfo *RSI = dyn_cast<CapturedRegionScopeInfo>(CSI)) {
12969 if (!captureInCapturedRegion(RSI, Var, ExprLoc,
12970 BuildAndDiagnose, CaptureType,
12971 DeclRefType, Nested, *this))
John McCall67cd5e02012-03-30 05:23:48 +000012972 return true;
Faisal Valiad090d82013-10-07 05:13:48 +000012973 Nested = true;
12974 } else {
12975 LambdaScopeInfo *LSI = cast<LambdaScopeInfo>(CSI);
12976 if (!captureInLambda(LSI, Var, ExprLoc,
12977 BuildAndDiagnose, CaptureType,
12978 DeclRefType, Nested, Kind, EllipsisLoc,
12979 /*IsTopScope*/I == N - 1, *this))
12980 return true;
12981 Nested = true;
Eli Friedman9bb33f52012-02-03 02:04:35 +000012982 }
Eli Friedman9bb33f52012-02-03 02:04:35 +000012983 }
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012984 return false;
12985}
12986
12987bool Sema::tryCaptureVariable(VarDecl *Var, SourceLocation Loc,
12988 TryCaptureKind Kind, SourceLocation EllipsisLoc) {
12989 QualType CaptureType;
12990 QualType DeclRefType;
12991 return tryCaptureVariable(Var, Loc, Kind, EllipsisLoc,
12992 /*BuildAndDiagnose=*/true, CaptureType,
Craig Topperc3ec1492014-05-26 06:22:03 +000012993 DeclRefType, nullptr);
Douglas Gregorfdf598e2012-02-18 09:37:24 +000012994}
12995
Alexey Bataevf841bd92014-12-16 07:00:22 +000012996bool Sema::NeedToCaptureVariable(VarDecl *Var, SourceLocation Loc) {
12997 QualType CaptureType;
12998 QualType DeclRefType;
12999 return !tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
13000 /*BuildAndDiagnose=*/false, CaptureType,
13001 DeclRefType, nullptr);
13002}
13003
Douglas Gregorfdf598e2012-02-18 09:37:24 +000013004QualType Sema::getCapturedDeclRefType(VarDecl *Var, SourceLocation Loc) {
13005 QualType CaptureType;
13006 QualType DeclRefType;
13007
13008 // Determine whether we can capture this variable.
13009 if (tryCaptureVariable(Var, Loc, TryCapture_Implicit, SourceLocation(),
Faisal Valia17d19f2013-11-07 05:17:06 +000013010 /*BuildAndDiagnose=*/false, CaptureType,
Craig Topperc3ec1492014-05-26 06:22:03 +000013011 DeclRefType, nullptr))
Douglas Gregorfdf598e2012-02-18 09:37:24 +000013012 return QualType();
13013
13014 return DeclRefType;
Eli Friedman9bb33f52012-02-03 02:04:35 +000013015}
13016
Eli Friedman3bda6b12012-02-02 23:15:15 +000013017
Eli Friedman9bb33f52012-02-03 02:04:35 +000013018
Faisal Valia17d19f2013-11-07 05:17:06 +000013019// If either the type of the variable or the initializer is dependent,
13020// return false. Otherwise, determine whether the variable is a constant
13021// expression. Use this if you need to know if a variable that might or
13022// might not be dependent is truly a constant expression.
13023static inline bool IsVariableNonDependentAndAConstantExpression(VarDecl *Var,
13024 ASTContext &Context) {
13025
13026 if (Var->getType()->isDependentType())
13027 return false;
Craig Topperc3ec1492014-05-26 06:22:03 +000013028 const VarDecl *DefVD = nullptr;
Faisal Valia17d19f2013-11-07 05:17:06 +000013029 Var->getAnyInitializer(DefVD);
13030 if (!DefVD)
13031 return false;
13032 EvaluatedStmt *Eval = DefVD->ensureEvaluatedStmt();
13033 Expr *Init = cast<Expr>(Eval->Value);
13034 if (Init->isValueDependent())
13035 return false;
13036 return IsVariableAConstantExpression(Var, Context);
Eli Friedman3bda6b12012-02-02 23:15:15 +000013037}
13038
Faisal Valia17d19f2013-11-07 05:17:06 +000013039
Eli Friedman3bda6b12012-02-02 23:15:15 +000013040void Sema::UpdateMarkingForLValueToRValue(Expr *E) {
13041 // Per C++11 [basic.def.odr], a variable is odr-used "unless it is
13042 // an object that satisfies the requirements for appearing in a
13043 // constant expression (5.19) and the lvalue-to-rvalue conversion (4.1)
13044 // is immediately applied." This function handles the lvalue-to-rvalue
13045 // conversion part.
13046 MaybeODRUseExprs.erase(E->IgnoreParens());
Faisal Valia17d19f2013-11-07 05:17:06 +000013047
13048 // If we are in a lambda, check if this DeclRefExpr or MemberExpr refers
13049 // to a variable that is a constant expression, and if so, identify it as
13050 // a reference to a variable that does not involve an odr-use of that
13051 // variable.
13052 if (LambdaScopeInfo *LSI = getCurLambda()) {
13053 Expr *SansParensExpr = E->IgnoreParens();
Craig Topperc3ec1492014-05-26 06:22:03 +000013054 VarDecl *Var = nullptr;
Faisal Valia17d19f2013-11-07 05:17:06 +000013055 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(SansParensExpr))
13056 Var = dyn_cast<VarDecl>(DRE->getFoundDecl());
13057 else if (MemberExpr *ME = dyn_cast<MemberExpr>(SansParensExpr))
13058 Var = dyn_cast<VarDecl>(ME->getMemberDecl());
13059
13060 if (Var && IsVariableNonDependentAndAConstantExpression(Var, Context))
13061 LSI->markVariableExprAsNonODRUsed(SansParensExpr);
13062 }
Eli Friedman3bda6b12012-02-02 23:15:15 +000013063}
13064
Eli Friedmanc6237c62012-02-29 03:16:56 +000013065ExprResult Sema::ActOnConstantExpression(ExprResult Res) {
Kaelyn Takatab16e6322014-11-20 22:06:40 +000013066 Res = CorrectDelayedTyposInExpr(Res);
13067
Eli Friedmanc6237c62012-02-29 03:16:56 +000013068 if (!Res.isUsable())
13069 return Res;
13070
13071 // If a constant-expression is a reference to a variable where we delay
13072 // deciding whether it is an odr-use, just assume we will apply the
13073 // lvalue-to-rvalue conversion. In the one case where this doesn't happen
13074 // (a non-type template argument), we have special handling anyway.
13075 UpdateMarkingForLValueToRValue(Res.get());
13076 return Res;
13077}
13078
Eli Friedman3bda6b12012-02-02 23:15:15 +000013079void Sema::CleanupVarDeclMarking() {
13080 for (llvm::SmallPtrSetIterator<Expr*> i = MaybeODRUseExprs.begin(),
13081 e = MaybeODRUseExprs.end();
13082 i != e; ++i) {
13083 VarDecl *Var;
13084 SourceLocation Loc;
John McCall113bee02012-03-10 09:33:50 +000013085 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(*i)) {
Eli Friedman3bda6b12012-02-02 23:15:15 +000013086 Var = cast<VarDecl>(DRE->getDecl());
13087 Loc = DRE->getLocation();
13088 } else if (MemberExpr *ME = dyn_cast<MemberExpr>(*i)) {
13089 Var = cast<VarDecl>(ME->getMemberDecl());
13090 Loc = ME->getMemberLoc();
13091 } else {
Larisse Voufo4e673c92014-07-29 18:45:54 +000013092 llvm_unreachable("Unexpected expression");
Eli Friedman3bda6b12012-02-02 23:15:15 +000013093 }
13094
Craig Topperc3ec1492014-05-26 06:22:03 +000013095 MarkVarDeclODRUsed(Var, Loc, *this,
13096 /*MaxFunctionScopeIndex Pointer*/ nullptr);
Eli Friedman3bda6b12012-02-02 23:15:15 +000013097 }
13098
13099 MaybeODRUseExprs.clear();
13100}
13101
Faisal Valia17d19f2013-11-07 05:17:06 +000013102
Eli Friedman3bda6b12012-02-02 23:15:15 +000013103static void DoMarkVarDeclReferenced(Sema &SemaRef, SourceLocation Loc,
13104 VarDecl *Var, Expr *E) {
Benjamin Kramercd502b52013-11-07 11:03:53 +000013105 assert((!E || isa<DeclRefExpr>(E) || isa<MemberExpr>(E)) &&
13106 "Invalid Expr argument to DoMarkVarDeclReferenced");
Eli Friedmanfa0df832012-02-02 03:46:19 +000013107 Var->setReferenced();
13108
Larisse Voufob6fab262014-07-29 18:44:19 +000013109 TemplateSpecializationKind TSK = Var->getTemplateSpecializationKind();
Larisse Voufof73da982014-07-30 00:49:55 +000013110 bool MarkODRUsed = true;
Larisse Voufob6fab262014-07-29 18:44:19 +000013111
Richard Smith5ef98f72014-02-03 23:22:05 +000013112 // If the context is not potentially evaluated, this is not an odr-use and
13113 // does not trigger instantiation.
Faisal Valia17d19f2013-11-07 05:17:06 +000013114 if (!IsPotentiallyEvaluatedContext(SemaRef)) {
Richard Smith5ef98f72014-02-03 23:22:05 +000013115 if (SemaRef.isUnevaluatedContext())
13116 return;
Faisal Valia17d19f2013-11-07 05:17:06 +000013117
Richard Smith5ef98f72014-02-03 23:22:05 +000013118 // If we don't yet know whether this context is going to end up being an
13119 // evaluated context, and we're referencing a variable from an enclosing
13120 // scope, add a potential capture.
13121 //
13122 // FIXME: Is this necessary? These contexts are only used for default
13123 // arguments, where local variables can't be used.
13124 const bool RefersToEnclosingScope =
13125 (SemaRef.CurContext != Var->getDeclContext() &&
Larisse Voufob6fab262014-07-29 18:44:19 +000013126 Var->getDeclContext()->isFunctionOrMethod() && Var->hasLocalStorage());
13127 if (RefersToEnclosingScope) {
13128 if (LambdaScopeInfo *const LSI = SemaRef.getCurLambda()) {
13129 // If a variable could potentially be odr-used, defer marking it so
13130 // until we finish analyzing the full expression for any
13131 // lvalue-to-rvalue
13132 // or discarded value conversions that would obviate odr-use.
13133 // Add it to the list of potential captures that will be analyzed
13134 // later (ActOnFinishFullExpr) for eventual capture and odr-use marking
13135 // unless the variable is a reference that was initialized by a constant
13136 // expression (this will never need to be captured or odr-used).
13137 assert(E && "Capture variable should be used in an expression.");
13138 if (!Var->getType()->isReferenceType() ||
13139 !IsVariableNonDependentAndAConstantExpression(Var, SemaRef.Context))
13140 LSI->addPotentialCapture(E->IgnoreParens());
13141 }
Richard Smith5ef98f72014-02-03 23:22:05 +000013142 }
Larisse Voufob6fab262014-07-29 18:44:19 +000013143
13144 if (!isTemplateInstantiation(TSK))
13145 return;
Larisse Voufof73da982014-07-30 00:49:55 +000013146
13147 // Instantiate, but do not mark as odr-used, variable templates.
13148 MarkODRUsed = false;
Faisal Valia17d19f2013-11-07 05:17:06 +000013149 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000013150
Larisse Voufo39a1e502013-08-06 01:03:05 +000013151 VarTemplateSpecializationDecl *VarSpec =
13152 dyn_cast<VarTemplateSpecializationDecl>(Var);
Richard Smith8809a0c2013-09-27 20:14:12 +000013153 assert(!isa<VarTemplatePartialSpecializationDecl>(Var) &&
13154 "Can't instantiate a partial template specialization.");
Larisse Voufo39a1e502013-08-06 01:03:05 +000013155
Richard Smith5ef98f72014-02-03 23:22:05 +000013156 // Perform implicit instantiation of static data members, static data member
13157 // templates of class templates, and variable template specializations. Delay
13158 // instantiations of variable templates, except for those that could be used
13159 // in a constant expression.
Richard Smith8809a0c2013-09-27 20:14:12 +000013160 if (isTemplateInstantiation(TSK)) {
13161 bool TryInstantiating = TSK == TSK_ImplicitInstantiation;
Larisse Voufo39a1e502013-08-06 01:03:05 +000013162
Richard Smith8809a0c2013-09-27 20:14:12 +000013163 if (TryInstantiating && !isa<VarTemplateSpecializationDecl>(Var)) {
13164 if (Var->getPointOfInstantiation().isInvalid()) {
13165 // This is a modification of an existing AST node. Notify listeners.
13166 if (ASTMutationListener *L = SemaRef.getASTMutationListener())
13167 L->StaticDataMemberInstantiated(Var);
13168 } else if (!Var->isUsableInConstantExpressions(SemaRef.Context))
13169 // Don't bother trying to instantiate it again, unless we might need
13170 // its initializer before we get to the end of the TU.
13171 TryInstantiating = false;
Larisse Voufo39a1e502013-08-06 01:03:05 +000013172 }
13173
Richard Smith8809a0c2013-09-27 20:14:12 +000013174 if (Var->getPointOfInstantiation().isInvalid())
13175 Var->setTemplateSpecializationKind(TSK, Loc);
13176
13177 if (TryInstantiating) {
13178 SourceLocation PointOfInstantiation = Var->getPointOfInstantiation();
Larisse Voufo39a1e502013-08-06 01:03:05 +000013179 bool InstantiationDependent = false;
13180 bool IsNonDependent =
13181 VarSpec ? !TemplateSpecializationType::anyDependentTemplateArguments(
13182 VarSpec->getTemplateArgsInfo(), InstantiationDependent)
13183 : true;
13184
13185 // Do not instantiate specializations that are still type-dependent.
13186 if (IsNonDependent) {
13187 if (Var->isUsableInConstantExpressions(SemaRef.Context)) {
13188 // Do not defer instantiations of variables which could be used in a
13189 // constant expression.
13190 SemaRef.InstantiateVariableDefinition(PointOfInstantiation, Var);
13191 } else {
13192 SemaRef.PendingInstantiations
13193 .push_back(std::make_pair(Var, PointOfInstantiation));
13194 }
Richard Smithd3cf2382012-02-15 02:42:50 +000013195 }
Eli Friedmanfa0df832012-02-02 03:46:19 +000013196 }
13197 }
Richard Smith5ef98f72014-02-03 23:22:05 +000013198
Larisse Voufof73da982014-07-30 00:49:55 +000013199 if(!MarkODRUsed) return;
13200
Richard Smith5a1104b2012-10-20 01:38:33 +000013201 // Per C++11 [basic.def.odr], a variable is odr-used "unless it satisfies
13202 // the requirements for appearing in a constant expression (5.19) and, if
13203 // it is an object, the lvalue-to-rvalue conversion (4.1)
Eli Friedman3bda6b12012-02-02 23:15:15 +000013204 // is immediately applied." We check the first part here, and
13205 // Sema::UpdateMarkingForLValueToRValue deals with the second part.
13206 // Note that we use the C++11 definition everywhere because nothing in
Richard Smith5a1104b2012-10-20 01:38:33 +000013207 // C++03 depends on whether we get the C++03 version correct. The second
13208 // part does not apply to references, since they are not objects.
Faisal Valia17d19f2013-11-07 05:17:06 +000013209 if (E && IsVariableAConstantExpression(Var, SemaRef.Context)) {
Richard Smith5ef98f72014-02-03 23:22:05 +000013210 // A reference initialized by a constant expression can never be
Faisal Valia17d19f2013-11-07 05:17:06 +000013211 // odr-used, so simply ignore it.
Richard Smith5a1104b2012-10-20 01:38:33 +000013212 if (!Var->getType()->isReferenceType())
13213 SemaRef.MaybeODRUseExprs.insert(E);
Richard Smith5ef98f72014-02-03 23:22:05 +000013214 } else
Craig Topperc3ec1492014-05-26 06:22:03 +000013215 MarkVarDeclODRUsed(Var, Loc, SemaRef,
13216 /*MaxFunctionScopeIndex ptr*/ nullptr);
Eli Friedman3bda6b12012-02-02 23:15:15 +000013217}
Eli Friedmanfa0df832012-02-02 03:46:19 +000013218
Eli Friedman3bda6b12012-02-02 23:15:15 +000013219/// \brief Mark a variable referenced, and check whether it is odr-used
13220/// (C++ [basic.def.odr]p2, C99 6.9p3). Note that this should not be
13221/// used directly for normal expressions referring to VarDecl.
13222void Sema::MarkVariableReferenced(SourceLocation Loc, VarDecl *Var) {
Craig Topperc3ec1492014-05-26 06:22:03 +000013223 DoMarkVarDeclReferenced(*this, Loc, Var, nullptr);
Eli Friedmanfa0df832012-02-02 03:46:19 +000013224}
13225
13226static void MarkExprReferenced(Sema &SemaRef, SourceLocation Loc,
Nick Lewycky45b50522013-02-02 00:25:55 +000013227 Decl *D, Expr *E, bool OdrUse) {
Eli Friedman3bda6b12012-02-02 23:15:15 +000013228 if (VarDecl *Var = dyn_cast<VarDecl>(D)) {
13229 DoMarkVarDeclReferenced(SemaRef, Loc, Var, E);
13230 return;
13231 }
13232
Nick Lewycky45b50522013-02-02 00:25:55 +000013233 SemaRef.MarkAnyDeclReferenced(Loc, D, OdrUse);
Rafael Espindola49e860b2012-06-26 17:45:31 +000013234
13235 // If this is a call to a method via a cast, also mark the method in the
13236 // derived class used in case codegen can devirtualize the call.
13237 const MemberExpr *ME = dyn_cast<MemberExpr>(E);
13238 if (!ME)
13239 return;
13240 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(ME->getMemberDecl());
13241 if (!MD)
13242 return;
Reid Kleckner5c553e32014-09-16 22:23:33 +000013243 // Only attempt to devirtualize if this is truly a virtual call.
13244 bool IsVirtualCall = MD->isVirtual() && !ME->hasQualifier();
13245 if (!IsVirtualCall)
13246 return;
Rafael Espindola49e860b2012-06-26 17:45:31 +000013247 const Expr *Base = ME->getBase();
Rafael Espindolab7f5a9c2012-06-27 18:18:05 +000013248 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
Rafael Espindola49e860b2012-06-26 17:45:31 +000013249 if (!MostDerivedClassDecl)
13250 return;
13251 CXXMethodDecl *DM = MD->getCorrespondingMethodInClass(MostDerivedClassDecl);
Nick Lewyckyb7444cd2013-02-14 00:55:17 +000013252 if (!DM || DM->isPure())
Rafael Espindolaa245edc2012-06-27 17:44:39 +000013253 return;
Nick Lewycky45b50522013-02-02 00:25:55 +000013254 SemaRef.MarkAnyDeclReferenced(Loc, DM, OdrUse);
Douglas Gregord3b672c2012-02-16 01:06:16 +000013255}
Eli Friedmanfa0df832012-02-02 03:46:19 +000013256
Eli Friedmanfa0df832012-02-02 03:46:19 +000013257/// \brief Perform reference-marking and odr-use handling for a DeclRefExpr.
13258void Sema::MarkDeclRefReferenced(DeclRefExpr *E) {
Nick Lewycky45b50522013-02-02 00:25:55 +000013259 // TODO: update this with DR# once a defect report is filed.
13260 // C++11 defect. The address of a pure member should not be an ODR use, even
13261 // if it's a qualified reference.
13262 bool OdrUse = true;
13263 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getDecl()))
Nick Lewycky192542c2013-02-05 06:20:31 +000013264 if (Method->isVirtual())
Nick Lewycky45b50522013-02-02 00:25:55 +000013265 OdrUse = false;
13266 MarkExprReferenced(*this, E->getLocation(), E->getDecl(), E, OdrUse);
Eli Friedmanfa0df832012-02-02 03:46:19 +000013267}
13268
13269/// \brief Perform reference-marking and odr-use handling for a MemberExpr.
13270void Sema::MarkMemberReferenced(MemberExpr *E) {
Nick Lewycky60bd4be2013-01-31 03:15:20 +000013271 // C++11 [basic.def.odr]p2:
Nick Lewycky35d23592013-01-31 01:34:31 +000013272 // A non-overloaded function whose name appears as a potentially-evaluated
13273 // expression or a member of a set of candidate functions, if selected by
13274 // overload resolution when referred to from a potentially-evaluated
13275 // expression, is odr-used, unless it is a pure virtual function and its
13276 // name is not explicitly qualified.
Nick Lewycky45b50522013-02-02 00:25:55 +000013277 bool OdrUse = true;
Nick Lewycky35d23592013-01-31 01:34:31 +000013278 if (!E->hasQualifier()) {
13279 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(E->getMemberDecl()))
13280 if (Method->isPure())
Nick Lewycky45b50522013-02-02 00:25:55 +000013281 OdrUse = false;
Nick Lewycky35d23592013-01-31 01:34:31 +000013282 }
Nick Lewyckya096b142013-02-12 08:08:54 +000013283 SourceLocation Loc = E->getMemberLoc().isValid() ?
13284 E->getMemberLoc() : E->getLocStart();
13285 MarkExprReferenced(*this, Loc, E->getMemberDecl(), E, OdrUse);
Eli Friedmanfa0df832012-02-02 03:46:19 +000013286}
13287
Douglas Gregorf02455e2012-02-10 09:26:04 +000013288/// \brief Perform marking for a reference to an arbitrary declaration. It
Nico Weber83ea0122014-05-03 21:57:40 +000013289/// marks the declaration referenced, and performs odr-use checking for
13290/// functions and variables. This method should not be used when building a
13291/// normal expression which refers to a variable.
Nick Lewycky45b50522013-02-02 00:25:55 +000013292void Sema::MarkAnyDeclReferenced(SourceLocation Loc, Decl *D, bool OdrUse) {
13293 if (OdrUse) {
Nico Weber8bf410f2014-08-27 17:04:39 +000013294 if (auto *VD = dyn_cast<VarDecl>(D)) {
Nick Lewycky45b50522013-02-02 00:25:55 +000013295 MarkVariableReferenced(Loc, VD);
13296 return;
13297 }
Nico Weber8bf410f2014-08-27 17:04:39 +000013298 }
13299 if (auto *FD = dyn_cast<FunctionDecl>(D)) {
13300 MarkFunctionReferenced(Loc, FD, OdrUse);
13301 return;
Nick Lewycky45b50522013-02-02 00:25:55 +000013302 }
13303 D->setReferenced();
Douglas Gregorc9c02ed2009-06-19 23:52:42 +000013304}
Anders Carlsson7f84ed92009-10-09 23:51:55 +000013305
Douglas Gregor5597ab42010-05-07 23:12:07 +000013306namespace {
Chandler Carruthaf80f662010-06-09 08:17:30 +000013307 // Mark all of the declarations referenced
Douglas Gregor5597ab42010-05-07 23:12:07 +000013308 // FIXME: Not fully implemented yet! We need to have a better understanding
Chandler Carruthaf80f662010-06-09 08:17:30 +000013309 // of when we're entering
Douglas Gregor5597ab42010-05-07 23:12:07 +000013310 class MarkReferencedDecls : public RecursiveASTVisitor<MarkReferencedDecls> {
13311 Sema &S;
13312 SourceLocation Loc;
Chandler Carruthaf80f662010-06-09 08:17:30 +000013313
Douglas Gregor5597ab42010-05-07 23:12:07 +000013314 public:
13315 typedef RecursiveASTVisitor<MarkReferencedDecls> Inherited;
Chandler Carruthaf80f662010-06-09 08:17:30 +000013316
Douglas Gregor5597ab42010-05-07 23:12:07 +000013317 MarkReferencedDecls(Sema &S, SourceLocation Loc) : S(S), Loc(Loc) { }
Chandler Carruthaf80f662010-06-09 08:17:30 +000013318
13319 bool TraverseTemplateArgument(const TemplateArgument &Arg);
13320 bool TraverseRecordType(RecordType *T);
Douglas Gregor5597ab42010-05-07 23:12:07 +000013321 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000013322}
Douglas Gregor5597ab42010-05-07 23:12:07 +000013323
Chandler Carruthaf80f662010-06-09 08:17:30 +000013324bool MarkReferencedDecls::TraverseTemplateArgument(
Nico Weber83ea0122014-05-03 21:57:40 +000013325 const TemplateArgument &Arg) {
Douglas Gregor5597ab42010-05-07 23:12:07 +000013326 if (Arg.getKind() == TemplateArgument::Declaration) {
Douglas Gregor31f55dc2012-04-06 22:40:38 +000013327 if (Decl *D = Arg.getAsDecl())
Nick Lewycky45b50522013-02-02 00:25:55 +000013328 S.MarkAnyDeclReferenced(Loc, D, true);
Douglas Gregor5597ab42010-05-07 23:12:07 +000013329 }
Chandler Carruthaf80f662010-06-09 08:17:30 +000013330
13331 return Inherited::TraverseTemplateArgument(Arg);
Douglas Gregor5597ab42010-05-07 23:12:07 +000013332}
13333
Chandler Carruthaf80f662010-06-09 08:17:30 +000013334bool MarkReferencedDecls::TraverseRecordType(RecordType *T) {
Douglas Gregor5597ab42010-05-07 23:12:07 +000013335 if (ClassTemplateSpecializationDecl *Spec
13336 = dyn_cast<ClassTemplateSpecializationDecl>(T->getDecl())) {
13337 const TemplateArgumentList &Args = Spec->getTemplateArgs();
Douglas Gregor1ccc8412010-11-07 23:05:16 +000013338 return TraverseTemplateArguments(Args.data(), Args.size());
Douglas Gregor5597ab42010-05-07 23:12:07 +000013339 }
13340
Chandler Carruthc65667c2010-06-10 10:31:57 +000013341 return true;
Douglas Gregor5597ab42010-05-07 23:12:07 +000013342}
13343
13344void Sema::MarkDeclarationsReferencedInType(SourceLocation Loc, QualType T) {
13345 MarkReferencedDecls Marker(*this, Loc);
Chandler Carruthaf80f662010-06-09 08:17:30 +000013346 Marker.TraverseType(Context.getCanonicalType(T));
Douglas Gregor5597ab42010-05-07 23:12:07 +000013347}
13348
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013349namespace {
13350 /// \brief Helper class that marks all of the declarations referenced by
13351 /// potentially-evaluated subexpressions as "referenced".
13352 class EvaluatedExprMarker : public EvaluatedExprVisitor<EvaluatedExprMarker> {
13353 Sema &S;
Douglas Gregor680e9e02012-02-21 19:11:17 +000013354 bool SkipLocalVariables;
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013355
13356 public:
13357 typedef EvaluatedExprVisitor<EvaluatedExprMarker> Inherited;
13358
Douglas Gregor680e9e02012-02-21 19:11:17 +000013359 EvaluatedExprMarker(Sema &S, bool SkipLocalVariables)
13360 : Inherited(S.Context), S(S), SkipLocalVariables(SkipLocalVariables) { }
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013361
13362 void VisitDeclRefExpr(DeclRefExpr *E) {
Douglas Gregor680e9e02012-02-21 19:11:17 +000013363 // If we were asked not to visit local variables, don't.
13364 if (SkipLocalVariables) {
13365 if (VarDecl *VD = dyn_cast<VarDecl>(E->getDecl()))
13366 if (VD->hasLocalStorage())
13367 return;
13368 }
13369
Eli Friedmanfa0df832012-02-02 03:46:19 +000013370 S.MarkDeclRefReferenced(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013371 }
Nico Weber83ea0122014-05-03 21:57:40 +000013372
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013373 void VisitMemberExpr(MemberExpr *E) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000013374 S.MarkMemberReferenced(E);
Douglas Gregor32b3de52010-09-11 23:32:50 +000013375 Inherited::VisitMemberExpr(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013376 }
13377
John McCall28fc7092011-11-10 05:35:25 +000013378 void VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000013379 S.MarkFunctionReferenced(E->getLocStart(),
John McCall28fc7092011-11-10 05:35:25 +000013380 const_cast<CXXDestructorDecl*>(E->getTemporary()->getDestructor()));
13381 Visit(E->getSubExpr());
13382 }
13383
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013384 void VisitCXXNewExpr(CXXNewExpr *E) {
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013385 if (E->getOperatorNew())
Eli Friedmanfa0df832012-02-02 03:46:19 +000013386 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorNew());
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013387 if (E->getOperatorDelete())
Eli Friedmanfa0df832012-02-02 03:46:19 +000013388 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor32b3de52010-09-11 23:32:50 +000013389 Inherited::VisitCXXNewExpr(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013390 }
Sebastian Redl6047f072012-02-16 12:22:20 +000013391
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013392 void VisitCXXDeleteExpr(CXXDeleteExpr *E) {
13393 if (E->getOperatorDelete())
Eli Friedmanfa0df832012-02-02 03:46:19 +000013394 S.MarkFunctionReferenced(E->getLocStart(), E->getOperatorDelete());
Douglas Gregor6ed2fee2010-09-14 22:55:20 +000013395 QualType Destroyed = S.Context.getBaseElementType(E->getDestroyedType());
13396 if (const RecordType *DestroyedRec = Destroyed->getAs<RecordType>()) {
13397 CXXRecordDecl *Record = cast<CXXRecordDecl>(DestroyedRec->getDecl());
Eli Friedmanfa0df832012-02-02 03:46:19 +000013398 S.MarkFunctionReferenced(E->getLocStart(),
Douglas Gregor6ed2fee2010-09-14 22:55:20 +000013399 S.LookupDestructor(Record));
13400 }
13401
Douglas Gregor32b3de52010-09-11 23:32:50 +000013402 Inherited::VisitCXXDeleteExpr(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013403 }
13404
13405 void VisitCXXConstructExpr(CXXConstructExpr *E) {
Eli Friedmanfa0df832012-02-02 03:46:19 +000013406 S.MarkFunctionReferenced(E->getLocStart(), E->getConstructor());
Douglas Gregor32b3de52010-09-11 23:32:50 +000013407 Inherited::VisitCXXConstructExpr(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013408 }
13409
Douglas Gregorf0873f42010-10-19 17:17:35 +000013410 void VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
13411 Visit(E->getExpr());
13412 }
Eli Friedman3bda6b12012-02-02 23:15:15 +000013413
13414 void VisitImplicitCastExpr(ImplicitCastExpr *E) {
13415 Inherited::VisitImplicitCastExpr(E);
13416
13417 if (E->getCastKind() == CK_LValueToRValue)
13418 S.UpdateMarkingForLValueToRValue(E->getSubExpr());
13419 }
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013420 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000013421}
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013422
13423/// \brief Mark any declarations that appear within this expression or any
13424/// potentially-evaluated subexpressions as "referenced".
Douglas Gregor680e9e02012-02-21 19:11:17 +000013425///
13426/// \param SkipLocalVariables If true, don't mark local variables as
13427/// 'referenced'.
13428void Sema::MarkDeclarationsReferencedInExpr(Expr *E,
13429 bool SkipLocalVariables) {
13430 EvaluatedExprMarker(*this, SkipLocalVariables).Visit(E);
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013431}
13432
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013433/// \brief Emit a diagnostic that describes an effect on the run-time behavior
13434/// of the program being compiled.
13435///
13436/// This routine emits the given diagnostic when the code currently being
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000013437/// type-checked is "potentially evaluated", meaning that there is a
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013438/// possibility that the code will actually be executable. Code in sizeof()
13439/// expressions, code used only during overload resolution, etc., are not
13440/// potentially evaluated. This routine will suppress such diagnostics or,
13441/// in the absolutely nutty case of potentially potentially evaluated
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000013442/// expressions (C++ typeid), queue the diagnostic to potentially emit it
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013443/// later.
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000013444///
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013445/// This routine should be used for all diagnostics that describe the run-time
13446/// behavior of a program, such as passing a non-POD value through an ellipsis.
13447/// Failure to do so will likely result in spurious diagnostics or failures
13448/// during overload resolution or within sizeof/alignof/typeof/typeid.
Richard Trieuba63ce62011-09-09 01:45:06 +000013449bool Sema::DiagRuntimeBehavior(SourceLocation Loc, const Stmt *Statement,
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013450 const PartialDiagnostic &PD) {
John McCall31168b02011-06-15 23:02:42 +000013451 switch (ExprEvalContexts.back().Context) {
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013452 case Unevaluated:
John McCallf413f5e2013-05-03 00:10:13 +000013453 case UnevaluatedAbstract:
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013454 // The argument will never be evaluated, so don't complain.
13455 break;
Kovarththanan Rajaratnamba2c6522010-03-13 10:17:05 +000013456
Richard Smith764d2fe2011-12-20 02:08:33 +000013457 case ConstantEvaluated:
13458 // Relevant diagnostics should be produced by constant evaluation.
13459 break;
13460
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013461 case PotentiallyEvaluated:
Douglas Gregor8a01b2a2010-09-11 20:24:53 +000013462 case PotentiallyEvaluatedIfUsed:
Richard Trieuba63ce62011-09-09 01:45:06 +000013463 if (Statement && getCurFunctionOrMethodDecl()) {
Ted Kremenek3427fac2011-02-23 01:52:04 +000013464 FunctionScopes.back()->PossiblyUnreachableDiags.
Richard Trieuba63ce62011-09-09 01:45:06 +000013465 push_back(sema::PossiblyUnreachableDiag(PD, Loc, Statement));
Ted Kremenek3427fac2011-02-23 01:52:04 +000013466 }
13467 else
13468 Diag(Loc, PD);
13469
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013470 return true;
Douglas Gregorda8cdbc2009-12-22 01:01:55 +000013471 }
13472
13473 return false;
13474}
13475
Anders Carlsson7f84ed92009-10-09 23:51:55 +000013476bool Sema::CheckCallReturnType(QualType ReturnType, SourceLocation Loc,
13477 CallExpr *CE, FunctionDecl *FD) {
13478 if (ReturnType->isVoidType() || !ReturnType->isIncompleteType())
13479 return false;
13480
Richard Smithfd555f62012-02-22 02:04:18 +000013481 // If we're inside a decltype's expression, don't check for a valid return
13482 // type or construct temporaries until we know whether this is the last call.
13483 if (ExprEvalContexts.back().IsDecltype) {
13484 ExprEvalContexts.back().DelayedDecltypeCalls.push_back(CE);
13485 return false;
13486 }
13487
Douglas Gregora6c5abb2012-05-04 16:48:41 +000013488 class CallReturnIncompleteDiagnoser : public TypeDiagnoser {
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000013489 FunctionDecl *FD;
13490 CallExpr *CE;
13491
13492 public:
13493 CallReturnIncompleteDiagnoser(FunctionDecl *FD, CallExpr *CE)
13494 : FD(FD), CE(CE) { }
Craig Toppere14c0f82014-03-12 04:55:44 +000013495
13496 void diagnose(Sema &S, SourceLocation Loc, QualType T) override {
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000013497 if (!FD) {
13498 S.Diag(Loc, diag::err_call_incomplete_return)
13499 << T << CE->getSourceRange();
13500 return;
13501 }
13502
13503 S.Diag(Loc, diag::err_call_function_incomplete_return)
13504 << CE->getSourceRange() << FD->getDeclName() << T;
Alp Toker2afa8782014-05-28 12:20:14 +000013505 S.Diag(FD->getLocation(), diag::note_entity_declared_at)
13506 << FD->getDeclName();
Douglas Gregor7bfb2d02012-05-04 16:32:21 +000013507 }
13508 } Diagnoser(FD, CE);
13509
13510 if (RequireCompleteType(Loc, ReturnType, Diagnoser))
Anders Carlsson7f84ed92009-10-09 23:51:55 +000013511 return true;
13512
13513 return false;
13514}
13515
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013516// Diagnose the s/=/==/ and s/\|=/!=/ typos. Note that adding parentheses
John McCalld5707ab2009-10-12 21:59:07 +000013517// will prevent this condition from triggering, which is what we want.
13518void Sema::DiagnoseAssignmentAsCondition(Expr *E) {
13519 SourceLocation Loc;
13520
John McCall0506e4a2009-11-11 02:41:58 +000013521 unsigned diagnostic = diag::warn_condition_is_assignment;
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013522 bool IsOrAssign = false;
John McCall0506e4a2009-11-11 02:41:58 +000013523
Chandler Carruthf87d6c02011-08-16 22:30:10 +000013524 if (BinaryOperator *Op = dyn_cast<BinaryOperator>(E)) {
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013525 if (Op->getOpcode() != BO_Assign && Op->getOpcode() != BO_OrAssign)
John McCalld5707ab2009-10-12 21:59:07 +000013526 return;
13527
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013528 IsOrAssign = Op->getOpcode() == BO_OrAssign;
13529
John McCallb0e419e2009-11-12 00:06:05 +000013530 // Greylist some idioms by putting them into a warning subcategory.
13531 if (ObjCMessageExpr *ME
13532 = dyn_cast<ObjCMessageExpr>(Op->getRHS()->IgnoreParenCasts())) {
13533 Selector Sel = ME->getSelector();
13534
John McCallb0e419e2009-11-12 00:06:05 +000013535 // self = [<foo> init...]
Jean-Daniel Dupas39655742013-07-17 18:17:14 +000013536 if (isSelfExpr(Op->getLHS()) && ME->getMethodFamily() == OMF_init)
John McCallb0e419e2009-11-12 00:06:05 +000013537 diagnostic = diag::warn_condition_is_idiomatic_assignment;
13538
13539 // <foo> = [<bar> nextObject]
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +000013540 else if (Sel.isUnarySelector() && Sel.getNameForSlot(0) == "nextObject")
John McCallb0e419e2009-11-12 00:06:05 +000013541 diagnostic = diag::warn_condition_is_idiomatic_assignment;
13542 }
John McCall0506e4a2009-11-11 02:41:58 +000013543
John McCalld5707ab2009-10-12 21:59:07 +000013544 Loc = Op->getOperatorLoc();
Chandler Carruthf87d6c02011-08-16 22:30:10 +000013545 } else if (CXXOperatorCallExpr *Op = dyn_cast<CXXOperatorCallExpr>(E)) {
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013546 if (Op->getOperator() != OO_Equal && Op->getOperator() != OO_PipeEqual)
John McCalld5707ab2009-10-12 21:59:07 +000013547 return;
13548
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013549 IsOrAssign = Op->getOperator() == OO_PipeEqual;
John McCalld5707ab2009-10-12 21:59:07 +000013550 Loc = Op->getOperatorLoc();
Fariborz Jahanianf07bcc52012-08-29 17:17:11 +000013551 } else if (PseudoObjectExpr *POE = dyn_cast<PseudoObjectExpr>(E))
13552 return DiagnoseAssignmentAsCondition(POE->getSyntacticForm());
13553 else {
John McCalld5707ab2009-10-12 21:59:07 +000013554 // Not an assignment.
13555 return;
13556 }
13557
Douglas Gregor2bf2d3d2010-04-14 16:09:52 +000013558 Diag(Loc, diagnostic) << E->getSourceRange();
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013559
Daniel Dunbar62ee6412012-03-09 18:35:03 +000013560 SourceLocation Open = E->getLocStart();
Argyrios Kyrtzidise1b97c42011-04-25 23:01:29 +000013561 SourceLocation Close = PP.getLocForEndOfToken(E->getSourceRange().getEnd());
13562 Diag(Loc, diag::note_condition_assign_silence)
13563 << FixItHint::CreateInsertion(Open, "(")
13564 << FixItHint::CreateInsertion(Close, ")");
13565
Douglas Gregor2d4f64f2011-01-19 16:50:08 +000013566 if (IsOrAssign)
13567 Diag(Loc, diag::note_condition_or_assign_to_comparison)
13568 << FixItHint::CreateReplacement(Loc, "!=");
13569 else
13570 Diag(Loc, diag::note_condition_assign_to_comparison)
13571 << FixItHint::CreateReplacement(Loc, "==");
John McCalld5707ab2009-10-12 21:59:07 +000013572}
13573
Argyrios Kyrtzidis8b6ec682011-02-01 18:24:22 +000013574/// \brief Redundant parentheses over an equality comparison can indicate
13575/// that the user intended an assignment used as condition.
Richard Trieuba63ce62011-09-09 01:45:06 +000013576void Sema::DiagnoseEqualityWithExtraParens(ParenExpr *ParenE) {
Argyrios Kyrtzidisf4f82782011-02-01 22:23:56 +000013577 // Don't warn if the parens came from a macro.
Richard Trieuba63ce62011-09-09 01:45:06 +000013578 SourceLocation parenLoc = ParenE->getLocStart();
Argyrios Kyrtzidisf4f82782011-02-01 22:23:56 +000013579 if (parenLoc.isInvalid() || parenLoc.isMacroID())
13580 return;
Argyrios Kyrtzidisba699d62011-03-28 23:52:04 +000013581 // Don't warn for dependent expressions.
Richard Trieuba63ce62011-09-09 01:45:06 +000013582 if (ParenE->isTypeDependent())
Argyrios Kyrtzidisba699d62011-03-28 23:52:04 +000013583 return;
Argyrios Kyrtzidisf4f82782011-02-01 22:23:56 +000013584
Richard Trieuba63ce62011-09-09 01:45:06 +000013585 Expr *E = ParenE->IgnoreParens();
Argyrios Kyrtzidis8b6ec682011-02-01 18:24:22 +000013586
13587 if (BinaryOperator *opE = dyn_cast<BinaryOperator>(E))
Argyrios Kyrtzidis582dd682011-02-01 19:32:59 +000013588 if (opE->getOpcode() == BO_EQ &&
13589 opE->getLHS()->IgnoreParenImpCasts()->isModifiableLvalue(Context)
13590 == Expr::MLV_Valid) {
Argyrios Kyrtzidis8b6ec682011-02-01 18:24:22 +000013591 SourceLocation Loc = opE->getOperatorLoc();
Ted Kremenekc358d9f2011-02-01 22:36:09 +000013592
Ted Kremenekae022092011-02-02 02:20:30 +000013593 Diag(Loc, diag::warn_equality_with_extra_parens) << E->getSourceRange();
Daniel Dunbar62ee6412012-03-09 18:35:03 +000013594 SourceRange ParenERange = ParenE->getSourceRange();
Ted Kremenekae022092011-02-02 02:20:30 +000013595 Diag(Loc, diag::note_equality_comparison_silence)
Daniel Dunbar62ee6412012-03-09 18:35:03 +000013596 << FixItHint::CreateRemoval(ParenERange.getBegin())
13597 << FixItHint::CreateRemoval(ParenERange.getEnd());
Argyrios Kyrtzidise1b97c42011-04-25 23:01:29 +000013598 Diag(Loc, diag::note_equality_comparison_to_assign)
13599 << FixItHint::CreateReplacement(Loc, "=");
Argyrios Kyrtzidis8b6ec682011-02-01 18:24:22 +000013600 }
13601}
13602
John Wiegley01296292011-04-08 18:41:53 +000013603ExprResult Sema::CheckBooleanCondition(Expr *E, SourceLocation Loc) {
John McCalld5707ab2009-10-12 21:59:07 +000013604 DiagnoseAssignmentAsCondition(E);
Argyrios Kyrtzidis8b6ec682011-02-01 18:24:22 +000013605 if (ParenExpr *parenE = dyn_cast<ParenExpr>(E))
13606 DiagnoseEqualityWithExtraParens(parenE);
John McCalld5707ab2009-10-12 21:59:07 +000013607
John McCall0009fcc2011-04-26 20:42:42 +000013608 ExprResult result = CheckPlaceholderExpr(E);
13609 if (result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013610 E = result.get();
Argyrios Kyrtzidisca766292010-11-01 18:49:26 +000013611
John McCall0009fcc2011-04-26 20:42:42 +000013612 if (!E->isTypeDependent()) {
David Blaikiebbafb8a2012-03-11 07:00:24 +000013613 if (getLangOpts().CPlusPlus)
John McCall34376a62010-12-04 03:47:34 +000013614 return CheckCXXBooleanCondition(E); // C++ 6.4p4
13615
John Wiegley01296292011-04-08 18:41:53 +000013616 ExprResult ERes = DefaultFunctionArrayLvalueConversion(E);
13617 if (ERes.isInvalid())
13618 return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013619 E = ERes.get();
John McCall29cb2fd2010-12-04 06:09:13 +000013620
13621 QualType T = E->getType();
John Wiegley01296292011-04-08 18:41:53 +000013622 if (!T->isScalarType()) { // C99 6.8.4.1p1
13623 Diag(Loc, diag::err_typecheck_statement_requires_scalar)
13624 << T << E->getSourceRange();
13625 return ExprError();
13626 }
Fariborz Jahanianb7859dd2014-11-14 17:12:50 +000013627 CheckBoolLikeConversion(E, Loc);
John McCalld5707ab2009-10-12 21:59:07 +000013628 }
13629
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000013630 return E;
John McCalld5707ab2009-10-12 21:59:07 +000013631}
Douglas Gregore60e41a2010-05-06 17:25:47 +000013632
John McCalldadc5752010-08-24 06:29:42 +000013633ExprResult Sema::ActOnBooleanCondition(Scope *S, SourceLocation Loc,
Richard Trieuba63ce62011-09-09 01:45:06 +000013634 Expr *SubExpr) {
13635 if (!SubExpr)
Douglas Gregore60e41a2010-05-06 17:25:47 +000013636 return ExprError();
John Wiegley01296292011-04-08 18:41:53 +000013637
Richard Trieuba63ce62011-09-09 01:45:06 +000013638 return CheckBooleanCondition(SubExpr, Loc);
Douglas Gregore60e41a2010-05-06 17:25:47 +000013639}
John McCall36e7fe32010-10-12 00:20:44 +000013640
John McCall31996342011-04-07 08:22:57 +000013641namespace {
John McCall2979fe02011-04-12 00:42:48 +000013642 /// A visitor for rebuilding a call to an __unknown_any expression
13643 /// to have an appropriate type.
13644 struct RebuildUnknownAnyFunction
13645 : StmtVisitor<RebuildUnknownAnyFunction, ExprResult> {
13646
13647 Sema &S;
13648
13649 RebuildUnknownAnyFunction(Sema &S) : S(S) {}
13650
13651 ExprResult VisitStmt(Stmt *S) {
13652 llvm_unreachable("unexpected statement!");
John McCall2979fe02011-04-12 00:42:48 +000013653 }
13654
Richard Trieu10162ab2011-09-09 03:59:41 +000013655 ExprResult VisitExpr(Expr *E) {
13656 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_call)
13657 << E->getSourceRange();
John McCall2979fe02011-04-12 00:42:48 +000013658 return ExprError();
13659 }
13660
13661 /// Rebuild an expression which simply semantically wraps another
13662 /// expression which it shares the type and value kind of.
Richard Trieu10162ab2011-09-09 03:59:41 +000013663 template <class T> ExprResult rebuildSugarExpr(T *E) {
13664 ExprResult SubResult = Visit(E->getSubExpr());
13665 if (SubResult.isInvalid()) return ExprError();
John McCall2979fe02011-04-12 00:42:48 +000013666
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013667 Expr *SubExpr = SubResult.get();
Richard Trieu10162ab2011-09-09 03:59:41 +000013668 E->setSubExpr(SubExpr);
13669 E->setType(SubExpr->getType());
13670 E->setValueKind(SubExpr->getValueKind());
13671 assert(E->getObjectKind() == OK_Ordinary);
13672 return E;
John McCall2979fe02011-04-12 00:42:48 +000013673 }
13674
Richard Trieu10162ab2011-09-09 03:59:41 +000013675 ExprResult VisitParenExpr(ParenExpr *E) {
13676 return rebuildSugarExpr(E);
John McCall2979fe02011-04-12 00:42:48 +000013677 }
13678
Richard Trieu10162ab2011-09-09 03:59:41 +000013679 ExprResult VisitUnaryExtension(UnaryOperator *E) {
13680 return rebuildSugarExpr(E);
John McCall2979fe02011-04-12 00:42:48 +000013681 }
13682
Richard Trieu10162ab2011-09-09 03:59:41 +000013683 ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
13684 ExprResult SubResult = Visit(E->getSubExpr());
13685 if (SubResult.isInvalid()) return ExprError();
John McCall2979fe02011-04-12 00:42:48 +000013686
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013687 Expr *SubExpr = SubResult.get();
Richard Trieu10162ab2011-09-09 03:59:41 +000013688 E->setSubExpr(SubExpr);
13689 E->setType(S.Context.getPointerType(SubExpr->getType()));
13690 assert(E->getValueKind() == VK_RValue);
13691 assert(E->getObjectKind() == OK_Ordinary);
13692 return E;
John McCall2979fe02011-04-12 00:42:48 +000013693 }
13694
Richard Trieu10162ab2011-09-09 03:59:41 +000013695 ExprResult resolveDecl(Expr *E, ValueDecl *VD) {
13696 if (!isa<FunctionDecl>(VD)) return VisitExpr(E);
John McCall2979fe02011-04-12 00:42:48 +000013697
Richard Trieu10162ab2011-09-09 03:59:41 +000013698 E->setType(VD->getType());
John McCall2979fe02011-04-12 00:42:48 +000013699
Richard Trieu10162ab2011-09-09 03:59:41 +000013700 assert(E->getValueKind() == VK_RValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +000013701 if (S.getLangOpts().CPlusPlus &&
Richard Trieu10162ab2011-09-09 03:59:41 +000013702 !(isa<CXXMethodDecl>(VD) &&
13703 cast<CXXMethodDecl>(VD)->isInstance()))
13704 E->setValueKind(VK_LValue);
John McCall2979fe02011-04-12 00:42:48 +000013705
Richard Trieu10162ab2011-09-09 03:59:41 +000013706 return E;
John McCall2979fe02011-04-12 00:42:48 +000013707 }
13708
Richard Trieu10162ab2011-09-09 03:59:41 +000013709 ExprResult VisitMemberExpr(MemberExpr *E) {
13710 return resolveDecl(E, E->getMemberDecl());
John McCall2979fe02011-04-12 00:42:48 +000013711 }
13712
Richard Trieu10162ab2011-09-09 03:59:41 +000013713 ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
13714 return resolveDecl(E, E->getDecl());
John McCall2979fe02011-04-12 00:42:48 +000013715 }
13716 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000013717}
John McCall2979fe02011-04-12 00:42:48 +000013718
13719/// Given a function expression of unknown-any type, try to rebuild it
13720/// to have a function type.
Richard Trieu10162ab2011-09-09 03:59:41 +000013721static ExprResult rebuildUnknownAnyFunction(Sema &S, Expr *FunctionExpr) {
13722 ExprResult Result = RebuildUnknownAnyFunction(S).Visit(FunctionExpr);
13723 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013724 return S.DefaultFunctionArrayConversion(Result.get());
John McCall2979fe02011-04-12 00:42:48 +000013725}
13726
13727namespace {
John McCall2d2e8702011-04-11 07:02:50 +000013728 /// A visitor for rebuilding an expression of type __unknown_anytype
13729 /// into one which resolves the type directly on the referring
13730 /// expression. Strict preservation of the original source
13731 /// structure is not a goal.
John McCall31996342011-04-07 08:22:57 +000013732 struct RebuildUnknownAnyExpr
John McCall39439732011-04-09 22:50:59 +000013733 : StmtVisitor<RebuildUnknownAnyExpr, ExprResult> {
John McCall31996342011-04-07 08:22:57 +000013734
13735 Sema &S;
13736
13737 /// The current destination type.
13738 QualType DestType;
13739
Richard Trieu10162ab2011-09-09 03:59:41 +000013740 RebuildUnknownAnyExpr(Sema &S, QualType CastType)
13741 : S(S), DestType(CastType) {}
John McCall31996342011-04-07 08:22:57 +000013742
John McCall39439732011-04-09 22:50:59 +000013743 ExprResult VisitStmt(Stmt *S) {
John McCall2d2e8702011-04-11 07:02:50 +000013744 llvm_unreachable("unexpected statement!");
John McCall31996342011-04-07 08:22:57 +000013745 }
13746
Richard Trieu10162ab2011-09-09 03:59:41 +000013747 ExprResult VisitExpr(Expr *E) {
13748 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
13749 << E->getSourceRange();
John McCall2d2e8702011-04-11 07:02:50 +000013750 return ExprError();
John McCall31996342011-04-07 08:22:57 +000013751 }
13752
Richard Trieu10162ab2011-09-09 03:59:41 +000013753 ExprResult VisitCallExpr(CallExpr *E);
13754 ExprResult VisitObjCMessageExpr(ObjCMessageExpr *E);
John McCall2d2e8702011-04-11 07:02:50 +000013755
John McCall39439732011-04-09 22:50:59 +000013756 /// Rebuild an expression which simply semantically wraps another
13757 /// expression which it shares the type and value kind of.
Richard Trieu10162ab2011-09-09 03:59:41 +000013758 template <class T> ExprResult rebuildSugarExpr(T *E) {
13759 ExprResult SubResult = Visit(E->getSubExpr());
13760 if (SubResult.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013761 Expr *SubExpr = SubResult.get();
Richard Trieu10162ab2011-09-09 03:59:41 +000013762 E->setSubExpr(SubExpr);
13763 E->setType(SubExpr->getType());
13764 E->setValueKind(SubExpr->getValueKind());
13765 assert(E->getObjectKind() == OK_Ordinary);
13766 return E;
John McCall39439732011-04-09 22:50:59 +000013767 }
John McCall31996342011-04-07 08:22:57 +000013768
Richard Trieu10162ab2011-09-09 03:59:41 +000013769 ExprResult VisitParenExpr(ParenExpr *E) {
13770 return rebuildSugarExpr(E);
John McCall39439732011-04-09 22:50:59 +000013771 }
13772
Richard Trieu10162ab2011-09-09 03:59:41 +000013773 ExprResult VisitUnaryExtension(UnaryOperator *E) {
13774 return rebuildSugarExpr(E);
John McCall39439732011-04-09 22:50:59 +000013775 }
13776
Richard Trieu10162ab2011-09-09 03:59:41 +000013777 ExprResult VisitUnaryAddrOf(UnaryOperator *E) {
13778 const PointerType *Ptr = DestType->getAs<PointerType>();
13779 if (!Ptr) {
13780 S.Diag(E->getOperatorLoc(), diag::err_unknown_any_addrof)
13781 << E->getSourceRange();
John McCall2979fe02011-04-12 00:42:48 +000013782 return ExprError();
13783 }
Richard Trieu10162ab2011-09-09 03:59:41 +000013784 assert(E->getValueKind() == VK_RValue);
13785 assert(E->getObjectKind() == OK_Ordinary);
13786 E->setType(DestType);
John McCall2979fe02011-04-12 00:42:48 +000013787
13788 // Build the sub-expression as if it were an object of the pointee type.
Richard Trieu10162ab2011-09-09 03:59:41 +000013789 DestType = Ptr->getPointeeType();
13790 ExprResult SubResult = Visit(E->getSubExpr());
13791 if (SubResult.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013792 E->setSubExpr(SubResult.get());
Richard Trieu10162ab2011-09-09 03:59:41 +000013793 return E;
John McCall2979fe02011-04-12 00:42:48 +000013794 }
13795
Richard Trieu10162ab2011-09-09 03:59:41 +000013796 ExprResult VisitImplicitCastExpr(ImplicitCastExpr *E);
John McCall39439732011-04-09 22:50:59 +000013797
Richard Trieu10162ab2011-09-09 03:59:41 +000013798 ExprResult resolveDecl(Expr *E, ValueDecl *VD);
John McCall39439732011-04-09 22:50:59 +000013799
Richard Trieu10162ab2011-09-09 03:59:41 +000013800 ExprResult VisitMemberExpr(MemberExpr *E) {
13801 return resolveDecl(E, E->getMemberDecl());
John McCall2979fe02011-04-12 00:42:48 +000013802 }
John McCall39439732011-04-09 22:50:59 +000013803
Richard Trieu10162ab2011-09-09 03:59:41 +000013804 ExprResult VisitDeclRefExpr(DeclRefExpr *E) {
13805 return resolveDecl(E, E->getDecl());
John McCall31996342011-04-07 08:22:57 +000013806 }
13807 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +000013808}
John McCall31996342011-04-07 08:22:57 +000013809
John McCall2d2e8702011-04-11 07:02:50 +000013810/// Rebuilds a call expression which yielded __unknown_anytype.
Richard Trieu10162ab2011-09-09 03:59:41 +000013811ExprResult RebuildUnknownAnyExpr::VisitCallExpr(CallExpr *E) {
13812 Expr *CalleeExpr = E->getCallee();
John McCall2d2e8702011-04-11 07:02:50 +000013813
13814 enum FnKind {
John McCall4adb38c2011-04-27 00:36:17 +000013815 FK_MemberFunction,
John McCall2d2e8702011-04-11 07:02:50 +000013816 FK_FunctionPointer,
13817 FK_BlockPointer
13818 };
13819
Richard Trieu10162ab2011-09-09 03:59:41 +000013820 FnKind Kind;
13821 QualType CalleeType = CalleeExpr->getType();
13822 if (CalleeType == S.Context.BoundMemberTy) {
13823 assert(isa<CXXMemberCallExpr>(E) || isa<CXXOperatorCallExpr>(E));
13824 Kind = FK_MemberFunction;
13825 CalleeType = Expr::findBoundMemberType(CalleeExpr);
13826 } else if (const PointerType *Ptr = CalleeType->getAs<PointerType>()) {
13827 CalleeType = Ptr->getPointeeType();
13828 Kind = FK_FunctionPointer;
John McCall2d2e8702011-04-11 07:02:50 +000013829 } else {
Richard Trieu10162ab2011-09-09 03:59:41 +000013830 CalleeType = CalleeType->castAs<BlockPointerType>()->getPointeeType();
13831 Kind = FK_BlockPointer;
John McCall2d2e8702011-04-11 07:02:50 +000013832 }
Richard Trieu10162ab2011-09-09 03:59:41 +000013833 const FunctionType *FnType = CalleeType->castAs<FunctionType>();
John McCall2d2e8702011-04-11 07:02:50 +000013834
13835 // Verify that this is a legal result type of a function.
13836 if (DestType->isArrayType() || DestType->isFunctionType()) {
13837 unsigned diagID = diag::err_func_returning_array_function;
Richard Trieu10162ab2011-09-09 03:59:41 +000013838 if (Kind == FK_BlockPointer)
John McCall2d2e8702011-04-11 07:02:50 +000013839 diagID = diag::err_block_returning_array_function;
13840
Richard Trieu10162ab2011-09-09 03:59:41 +000013841 S.Diag(E->getExprLoc(), diagID)
John McCall2d2e8702011-04-11 07:02:50 +000013842 << DestType->isFunctionType() << DestType;
13843 return ExprError();
13844 }
13845
13846 // Otherwise, go ahead and set DestType as the call's result.
Richard Trieu10162ab2011-09-09 03:59:41 +000013847 E->setType(DestType.getNonLValueExprType(S.Context));
13848 E->setValueKind(Expr::getValueKindForType(DestType));
13849 assert(E->getObjectKind() == OK_Ordinary);
John McCall2d2e8702011-04-11 07:02:50 +000013850
13851 // Rebuild the function type, replacing the result type with DestType.
John McCall611d9b62013-06-27 22:43:24 +000013852 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FnType);
13853 if (Proto) {
13854 // __unknown_anytype(...) is a special case used by the debugger when
13855 // it has no idea what a function's signature is.
13856 //
13857 // We want to build this call essentially under the K&R
13858 // unprototyped rules, but making a FunctionNoProtoType in C++
13859 // would foul up all sorts of assumptions. However, we cannot
13860 // simply pass all arguments as variadic arguments, nor can we
13861 // portably just call the function under a non-variadic type; see
13862 // the comment on IR-gen's TargetInfo::isNoProtoCallVariadic.
13863 // However, it turns out that in practice it is generally safe to
13864 // call a function declared as "A foo(B,C,D);" under the prototype
13865 // "A foo(B,C,D,...);". The only known exception is with the
13866 // Windows ABI, where any variadic function is implicitly cdecl
13867 // regardless of its normal CC. Therefore we change the parameter
13868 // types to match the types of the arguments.
13869 //
13870 // This is a hack, but it is far superior to moving the
13871 // corresponding target-specific code from IR-gen to Sema/AST.
13872
Alp Toker9cacbab2014-01-20 20:26:09 +000013873 ArrayRef<QualType> ParamTypes = Proto->getParamTypes();
John McCall611d9b62013-06-27 22:43:24 +000013874 SmallVector<QualType, 8> ArgTypes;
13875 if (ParamTypes.empty() && Proto->isVariadic()) { // the special case
13876 ArgTypes.reserve(E->getNumArgs());
13877 for (unsigned i = 0, e = E->getNumArgs(); i != e; ++i) {
13878 Expr *Arg = E->getArg(i);
13879 QualType ArgType = Arg->getType();
13880 if (E->isLValue()) {
13881 ArgType = S.Context.getLValueReferenceType(ArgType);
13882 } else if (E->isXValue()) {
13883 ArgType = S.Context.getRValueReferenceType(ArgType);
13884 }
13885 ArgTypes.push_back(ArgType);
13886 }
13887 ParamTypes = ArgTypes;
13888 }
13889 DestType = S.Context.getFunctionType(DestType, ParamTypes,
Reid Kleckner896b32f2013-06-10 20:51:09 +000013890 Proto->getExtProtoInfo());
John McCall611d9b62013-06-27 22:43:24 +000013891 } else {
John McCall2d2e8702011-04-11 07:02:50 +000013892 DestType = S.Context.getFunctionNoProtoType(DestType,
Richard Trieu10162ab2011-09-09 03:59:41 +000013893 FnType->getExtInfo());
John McCall611d9b62013-06-27 22:43:24 +000013894 }
John McCall2d2e8702011-04-11 07:02:50 +000013895
13896 // Rebuild the appropriate pointer-to-function type.
Richard Trieu10162ab2011-09-09 03:59:41 +000013897 switch (Kind) {
John McCall4adb38c2011-04-27 00:36:17 +000013898 case FK_MemberFunction:
John McCall2d2e8702011-04-11 07:02:50 +000013899 // Nothing to do.
13900 break;
13901
13902 case FK_FunctionPointer:
13903 DestType = S.Context.getPointerType(DestType);
13904 break;
13905
13906 case FK_BlockPointer:
13907 DestType = S.Context.getBlockPointerType(DestType);
13908 break;
13909 }
13910
13911 // Finally, we can recurse.
Richard Trieu10162ab2011-09-09 03:59:41 +000013912 ExprResult CalleeResult = Visit(CalleeExpr);
13913 if (!CalleeResult.isUsable()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013914 E->setCallee(CalleeResult.get());
John McCall2d2e8702011-04-11 07:02:50 +000013915
13916 // Bind a temporary if necessary.
Richard Trieu10162ab2011-09-09 03:59:41 +000013917 return S.MaybeBindToTemporary(E);
John McCall2d2e8702011-04-11 07:02:50 +000013918}
13919
Richard Trieu10162ab2011-09-09 03:59:41 +000013920ExprResult RebuildUnknownAnyExpr::VisitObjCMessageExpr(ObjCMessageExpr *E) {
John McCall2979fe02011-04-12 00:42:48 +000013921 // Verify that this is a legal result type of a call.
13922 if (DestType->isArrayType() || DestType->isFunctionType()) {
Richard Trieu10162ab2011-09-09 03:59:41 +000013923 S.Diag(E->getExprLoc(), diag::err_func_returning_array_function)
John McCall2979fe02011-04-12 00:42:48 +000013924 << DestType->isFunctionType() << DestType;
13925 return ExprError();
John McCall2d2e8702011-04-11 07:02:50 +000013926 }
13927
John McCall3f4138c2011-07-13 17:56:40 +000013928 // Rewrite the method result type if available.
Richard Trieu10162ab2011-09-09 03:59:41 +000013929 if (ObjCMethodDecl *Method = E->getMethodDecl()) {
Alp Toker314cc812014-01-25 16:55:45 +000013930 assert(Method->getReturnType() == S.Context.UnknownAnyTy);
13931 Method->setReturnType(DestType);
John McCall3f4138c2011-07-13 17:56:40 +000013932 }
John McCall2979fe02011-04-12 00:42:48 +000013933
John McCall2d2e8702011-04-11 07:02:50 +000013934 // Change the type of the message.
Richard Trieu10162ab2011-09-09 03:59:41 +000013935 E->setType(DestType.getNonReferenceType());
13936 E->setValueKind(Expr::getValueKindForType(DestType));
John McCall2d2e8702011-04-11 07:02:50 +000013937
Richard Trieu10162ab2011-09-09 03:59:41 +000013938 return S.MaybeBindToTemporary(E);
John McCall2d2e8702011-04-11 07:02:50 +000013939}
13940
Richard Trieu10162ab2011-09-09 03:59:41 +000013941ExprResult RebuildUnknownAnyExpr::VisitImplicitCastExpr(ImplicitCastExpr *E) {
John McCall2979fe02011-04-12 00:42:48 +000013942 // The only case we should ever see here is a function-to-pointer decay.
Sean Callanan2db103c2012-03-06 23:12:57 +000013943 if (E->getCastKind() == CK_FunctionToPointerDecay) {
Sean Callanan12495112012-03-06 21:34:12 +000013944 assert(E->getValueKind() == VK_RValue);
13945 assert(E->getObjectKind() == OK_Ordinary);
13946
13947 E->setType(DestType);
13948
13949 // Rebuild the sub-expression as the pointee (function) type.
13950 DestType = DestType->castAs<PointerType>()->getPointeeType();
13951
13952 ExprResult Result = Visit(E->getSubExpr());
13953 if (!Result.isUsable()) return ExprError();
13954
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013955 E->setSubExpr(Result.get());
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000013956 return E;
Sean Callanan2db103c2012-03-06 23:12:57 +000013957 } else if (E->getCastKind() == CK_LValueToRValue) {
Sean Callanan12495112012-03-06 21:34:12 +000013958 assert(E->getValueKind() == VK_RValue);
13959 assert(E->getObjectKind() == OK_Ordinary);
John McCall2d2e8702011-04-11 07:02:50 +000013960
Sean Callanan12495112012-03-06 21:34:12 +000013961 assert(isa<BlockPointerType>(E->getType()));
John McCall2979fe02011-04-12 00:42:48 +000013962
Sean Callanan12495112012-03-06 21:34:12 +000013963 E->setType(DestType);
John McCall2d2e8702011-04-11 07:02:50 +000013964
Sean Callanan12495112012-03-06 21:34:12 +000013965 // The sub-expression has to be a lvalue reference, so rebuild it as such.
13966 DestType = S.Context.getLValueReferenceType(DestType);
John McCall2d2e8702011-04-11 07:02:50 +000013967
Sean Callanan12495112012-03-06 21:34:12 +000013968 ExprResult Result = Visit(E->getSubExpr());
13969 if (!Result.isUsable()) return ExprError();
13970
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013971 E->setSubExpr(Result.get());
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000013972 return E;
Sean Callanan2db103c2012-03-06 23:12:57 +000013973 } else {
Sean Callanan12495112012-03-06 21:34:12 +000013974 llvm_unreachable("Unhandled cast type!");
13975 }
John McCall2d2e8702011-04-11 07:02:50 +000013976}
13977
Richard Trieu10162ab2011-09-09 03:59:41 +000013978ExprResult RebuildUnknownAnyExpr::resolveDecl(Expr *E, ValueDecl *VD) {
13979 ExprValueKind ValueKind = VK_LValue;
13980 QualType Type = DestType;
John McCall2d2e8702011-04-11 07:02:50 +000013981
13982 // We know how to make this work for certain kinds of decls:
13983
13984 // - functions
Richard Trieu10162ab2011-09-09 03:59:41 +000013985 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(VD)) {
13986 if (const PointerType *Ptr = Type->getAs<PointerType>()) {
13987 DestType = Ptr->getPointeeType();
13988 ExprResult Result = resolveDecl(E, VD);
13989 if (Result.isInvalid()) return ExprError();
Nikola Smiljanic01a75982014-05-29 10:55:11 +000013990 return S.ImpCastExprToType(Result.get(), Type,
John McCall9a877fe2011-08-10 04:12:23 +000013991 CK_FunctionToPointerDecay, VK_RValue);
13992 }
13993
Richard Trieu10162ab2011-09-09 03:59:41 +000013994 if (!Type->isFunctionType()) {
13995 S.Diag(E->getExprLoc(), diag::err_unknown_any_function)
13996 << VD << E->getSourceRange();
John McCall9a877fe2011-08-10 04:12:23 +000013997 return ExprError();
13998 }
Fariborz Jahaniana29986c2014-11-11 16:56:21 +000013999 if (const FunctionProtoType *FT = Type->getAs<FunctionProtoType>()) {
14000 // We must match the FunctionDecl's type to the hack introduced in
14001 // RebuildUnknownAnyExpr::VisitCallExpr to vararg functions of unknown
14002 // type. See the lengthy commentary in that routine.
14003 QualType FDT = FD->getType();
14004 const FunctionType *FnType = FDT->castAs<FunctionType>();
14005 const FunctionProtoType *Proto = dyn_cast_or_null<FunctionProtoType>(FnType);
14006 DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E);
14007 if (DRE && Proto && Proto->getParamTypes().empty() && Proto->isVariadic()) {
14008 SourceLocation Loc = FD->getLocation();
14009 FunctionDecl *NewFD = FunctionDecl::Create(FD->getASTContext(),
14010 FD->getDeclContext(),
14011 Loc, Loc, FD->getNameInfo().getName(),
14012 DestType, FD->getTypeSourceInfo(),
14013 SC_None, false/*isInlineSpecified*/,
14014 FD->hasPrototype(),
14015 false/*isConstexprSpecified*/);
14016
14017 if (FD->getQualifier())
14018 NewFD->setQualifierInfo(FD->getQualifierLoc());
14019
14020 SmallVector<ParmVarDecl*, 16> Params;
14021 for (const auto &AI : FT->param_types()) {
14022 ParmVarDecl *Param =
14023 S.BuildParmVarDeclForTypedef(FD, Loc, AI);
14024 Param->setScopeInfo(0, Params.size());
14025 Params.push_back(Param);
14026 }
14027 NewFD->setParams(Params);
14028 DRE->setDecl(NewFD);
14029 VD = DRE->getDecl();
14030 }
14031 }
John McCall2d2e8702011-04-11 07:02:50 +000014032
Richard Trieu10162ab2011-09-09 03:59:41 +000014033 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
14034 if (MD->isInstance()) {
14035 ValueKind = VK_RValue;
14036 Type = S.Context.BoundMemberTy;
John McCall4adb38c2011-04-27 00:36:17 +000014037 }
14038
John McCall2d2e8702011-04-11 07:02:50 +000014039 // Function references aren't l-values in C.
David Blaikiebbafb8a2012-03-11 07:00:24 +000014040 if (!S.getLangOpts().CPlusPlus)
Richard Trieu10162ab2011-09-09 03:59:41 +000014041 ValueKind = VK_RValue;
John McCall2d2e8702011-04-11 07:02:50 +000014042
14043 // - variables
Richard Trieu10162ab2011-09-09 03:59:41 +000014044 } else if (isa<VarDecl>(VD)) {
14045 if (const ReferenceType *RefTy = Type->getAs<ReferenceType>()) {
14046 Type = RefTy->getPointeeType();
14047 } else if (Type->isFunctionType()) {
14048 S.Diag(E->getExprLoc(), diag::err_unknown_any_var_function_type)
14049 << VD << E->getSourceRange();
John McCall2979fe02011-04-12 00:42:48 +000014050 return ExprError();
John McCall2d2e8702011-04-11 07:02:50 +000014051 }
14052
14053 // - nothing else
14054 } else {
Richard Trieu10162ab2011-09-09 03:59:41 +000014055 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_decl)
14056 << VD << E->getSourceRange();
John McCall2d2e8702011-04-11 07:02:50 +000014057 return ExprError();
14058 }
14059
John McCall611d9b62013-06-27 22:43:24 +000014060 // Modifying the declaration like this is friendly to IR-gen but
14061 // also really dangerous.
Richard Trieu10162ab2011-09-09 03:59:41 +000014062 VD->setType(DestType);
14063 E->setType(Type);
14064 E->setValueKind(ValueKind);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014065 return E;
John McCall2d2e8702011-04-11 07:02:50 +000014066}
14067
John McCall31996342011-04-07 08:22:57 +000014068/// Check a cast of an unknown-any type. We intentionally only
14069/// trigger this for C-style casts.
Richard Trieuba63ce62011-09-09 01:45:06 +000014070ExprResult Sema::checkUnknownAnyCast(SourceRange TypeRange, QualType CastType,
14071 Expr *CastExpr, CastKind &CastKind,
14072 ExprValueKind &VK, CXXCastPath &Path) {
John McCall31996342011-04-07 08:22:57 +000014073 // Rewrite the casted expression from scratch.
Richard Trieuba63ce62011-09-09 01:45:06 +000014074 ExprResult result = RebuildUnknownAnyExpr(*this, CastType).Visit(CastExpr);
John McCall39439732011-04-09 22:50:59 +000014075 if (!result.isUsable()) return ExprError();
John McCall31996342011-04-07 08:22:57 +000014076
Nikola Smiljanic01a75982014-05-29 10:55:11 +000014077 CastExpr = result.get();
Richard Trieuba63ce62011-09-09 01:45:06 +000014078 VK = CastExpr->getValueKind();
14079 CastKind = CK_NoOp;
John McCall39439732011-04-09 22:50:59 +000014080
Richard Trieuba63ce62011-09-09 01:45:06 +000014081 return CastExpr;
John McCall31996342011-04-07 08:22:57 +000014082}
14083
Douglas Gregord8fb1e32011-12-01 01:37:36 +000014084ExprResult Sema::forceUnknownAnyToType(Expr *E, QualType ToType) {
14085 return RebuildUnknownAnyExpr(*this, ToType).Visit(E);
14086}
14087
John McCallcc5788c2013-03-04 07:34:02 +000014088ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc,
14089 Expr *arg, QualType &paramType) {
14090 // If the syntactic form of the argument is not an explicit cast of
14091 // any sort, just do default argument promotion.
14092 ExplicitCastExpr *castArg = dyn_cast<ExplicitCastExpr>(arg->IgnoreParens());
14093 if (!castArg) {
14094 ExprResult result = DefaultArgumentPromotion(arg);
14095 if (result.isInvalid()) return ExprError();
14096 paramType = result.get()->getType();
14097 return result;
John McCallea0a39e2012-11-14 00:49:39 +000014098 }
14099
John McCallcc5788c2013-03-04 07:34:02 +000014100 // Otherwise, use the type that was written in the explicit cast.
14101 assert(!arg->hasPlaceholderType());
14102 paramType = castArg->getTypeAsWritten();
14103
14104 // Copy-initialize a parameter of that type.
14105 InitializedEntity entity =
14106 InitializedEntity::InitializeParameter(Context, paramType,
14107 /*consumed*/ false);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014108 return PerformCopyInitialization(entity, callLoc, arg);
John McCallea0a39e2012-11-14 00:49:39 +000014109}
14110
Richard Trieuba63ce62011-09-09 01:45:06 +000014111static ExprResult diagnoseUnknownAnyExpr(Sema &S, Expr *E) {
14112 Expr *orig = E;
John McCall2d2e8702011-04-11 07:02:50 +000014113 unsigned diagID = diag::err_uncasted_use_of_unknown_any;
John McCall31996342011-04-07 08:22:57 +000014114 while (true) {
Richard Trieuba63ce62011-09-09 01:45:06 +000014115 E = E->IgnoreParenImpCasts();
14116 if (CallExpr *call = dyn_cast<CallExpr>(E)) {
14117 E = call->getCallee();
John McCall2d2e8702011-04-11 07:02:50 +000014118 diagID = diag::err_uncasted_call_of_unknown_any;
14119 } else {
John McCall31996342011-04-07 08:22:57 +000014120 break;
John McCall2d2e8702011-04-11 07:02:50 +000014121 }
John McCall31996342011-04-07 08:22:57 +000014122 }
14123
John McCall2d2e8702011-04-11 07:02:50 +000014124 SourceLocation loc;
14125 NamedDecl *d;
Richard Trieuba63ce62011-09-09 01:45:06 +000014126 if (DeclRefExpr *ref = dyn_cast<DeclRefExpr>(E)) {
John McCall2d2e8702011-04-11 07:02:50 +000014127 loc = ref->getLocation();
14128 d = ref->getDecl();
Richard Trieuba63ce62011-09-09 01:45:06 +000014129 } else if (MemberExpr *mem = dyn_cast<MemberExpr>(E)) {
John McCall2d2e8702011-04-11 07:02:50 +000014130 loc = mem->getMemberLoc();
14131 d = mem->getMemberDecl();
Richard Trieuba63ce62011-09-09 01:45:06 +000014132 } else if (ObjCMessageExpr *msg = dyn_cast<ObjCMessageExpr>(E)) {
John McCall2d2e8702011-04-11 07:02:50 +000014133 diagID = diag::err_uncasted_call_of_unknown_any;
Argyrios Kyrtzidisa6011e22011-10-03 06:36:51 +000014134 loc = msg->getSelectorStartLoc();
John McCall2d2e8702011-04-11 07:02:50 +000014135 d = msg->getMethodDecl();
John McCallfa6f5d62011-08-31 20:57:36 +000014136 if (!d) {
14137 S.Diag(loc, diag::err_uncasted_send_to_unknown_any_method)
14138 << static_cast<unsigned>(msg->isClassMessage()) << msg->getSelector()
14139 << orig->getSourceRange();
14140 return ExprError();
14141 }
John McCall2d2e8702011-04-11 07:02:50 +000014142 } else {
Richard Trieuba63ce62011-09-09 01:45:06 +000014143 S.Diag(E->getExprLoc(), diag::err_unsupported_unknown_any_expr)
14144 << E->getSourceRange();
John McCall2d2e8702011-04-11 07:02:50 +000014145 return ExprError();
14146 }
14147
14148 S.Diag(loc, diagID) << d << orig->getSourceRange();
John McCall31996342011-04-07 08:22:57 +000014149
14150 // Never recoverable.
14151 return ExprError();
14152}
14153
John McCall36e7fe32010-10-12 00:20:44 +000014154/// Check for operands with placeholder types and complain if found.
14155/// Returns true if there was an error and no recovery was possible.
John McCall3aef3d82011-04-10 19:13:55 +000014156ExprResult Sema::CheckPlaceholderExpr(Expr *E) {
Kaelyn Takata15867822014-11-21 18:48:04 +000014157 if (!getLangOpts().CPlusPlus) {
14158 // C cannot handle TypoExpr nodes on either side of a binop because it
14159 // doesn't handle dependent types properly, so make sure any TypoExprs have
14160 // been dealt with before checking the operands.
14161 ExprResult Result = CorrectDelayedTyposInExpr(E);
14162 if (!Result.isUsable()) return ExprError();
14163 E = Result.get();
14164 }
14165
John McCall4124c492011-10-17 18:40:02 +000014166 const BuiltinType *placeholderType = E->getType()->getAsPlaceholderType();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014167 if (!placeholderType) return E;
John McCall4124c492011-10-17 18:40:02 +000014168
14169 switch (placeholderType->getKind()) {
John McCall36e7fe32010-10-12 00:20:44 +000014170
John McCall31996342011-04-07 08:22:57 +000014171 // Overloaded expressions.
John McCall4124c492011-10-17 18:40:02 +000014172 case BuiltinType::Overload: {
John McCall50a2c2c2011-10-11 23:14:30 +000014173 // Try to resolve a single function template specialization.
14174 // This is obligatory.
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014175 ExprResult result = E;
John McCall50a2c2c2011-10-11 23:14:30 +000014176 if (ResolveAndFixSingleFunctionTemplateSpecialization(result, false)) {
14177 return result;
14178
14179 // If that failed, try to recover with a call.
14180 } else {
14181 tryToRecoverWithCall(result, PDiag(diag::err_ovl_unresolvable),
14182 /*complain*/ true);
14183 return result;
14184 }
14185 }
John McCall31996342011-04-07 08:22:57 +000014186
John McCall0009fcc2011-04-26 20:42:42 +000014187 // Bound member functions.
John McCall4124c492011-10-17 18:40:02 +000014188 case BuiltinType::BoundMember: {
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014189 ExprResult result = E;
David Majnemerced8bdf2015-02-25 17:36:15 +000014190 const Expr *BME = E->IgnoreParens();
14191 PartialDiagnostic PD = PDiag(diag::err_bound_member_function);
14192 // Try to give a nicer diagnostic if it is a bound member that we recognize.
14193 if (isa<CXXPseudoDestructorExpr>(BME)) {
14194 PD = PDiag(diag::err_dtor_expr_without_call) << /*pseudo-destructor*/ 1;
14195 } else if (const auto *ME = dyn_cast<MemberExpr>(BME)) {
14196 if (ME->getMemberNameInfo().getName().getNameKind() ==
14197 DeclarationName::CXXDestructorName)
14198 PD = PDiag(diag::err_dtor_expr_without_call) << /*destructor*/ 0;
14199 }
14200 tryToRecoverWithCall(result, PD,
John McCall50a2c2c2011-10-11 23:14:30 +000014201 /*complain*/ true);
14202 return result;
John McCall4124c492011-10-17 18:40:02 +000014203 }
14204
14205 // ARC unbridged casts.
14206 case BuiltinType::ARCUnbridgedCast: {
14207 Expr *realCast = stripARCUnbridgedCast(E);
14208 diagnoseARCUnbridgedCast(realCast);
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014209 return realCast;
John McCall4124c492011-10-17 18:40:02 +000014210 }
John McCall0009fcc2011-04-26 20:42:42 +000014211
John McCall31996342011-04-07 08:22:57 +000014212 // Expressions of unknown type.
John McCall4124c492011-10-17 18:40:02 +000014213 case BuiltinType::UnknownAny:
John McCall31996342011-04-07 08:22:57 +000014214 return diagnoseUnknownAnyExpr(*this, E);
14215
John McCall526ab472011-10-25 17:37:35 +000014216 // Pseudo-objects.
14217 case BuiltinType::PseudoObject:
14218 return checkPseudoObjectRValue(E);
14219
Reid Klecknerf392ec62014-07-11 23:54:29 +000014220 case BuiltinType::BuiltinFn: {
14221 // Accept __noop without parens by implicitly converting it to a call expr.
14222 auto *DRE = dyn_cast<DeclRefExpr>(E->IgnoreParenImpCasts());
14223 if (DRE) {
14224 auto *FD = cast<FunctionDecl>(DRE->getDecl());
14225 if (FD->getBuiltinID() == Builtin::BI__noop) {
14226 E = ImpCastExprToType(E, Context.getPointerType(FD->getType()),
14227 CK_BuiltinFnToFnPtr).get();
14228 return new (Context) CallExpr(Context, E, None, Context.IntTy,
14229 VK_RValue, SourceLocation());
14230 }
14231 }
14232
Eli Friedman34866c72012-08-31 00:14:07 +000014233 Diag(E->getLocStart(), diag::err_builtin_fn_use);
14234 return ExprError();
Reid Klecknerf392ec62014-07-11 23:54:29 +000014235 }
Eli Friedman34866c72012-08-31 00:14:07 +000014236
John McCalle314e272011-10-18 21:02:43 +000014237 // Everything else should be impossible.
14238#define BUILTIN_TYPE(Id, SingletonId) \
14239 case BuiltinType::Id:
14240#define PLACEHOLDER_TYPE(Id, SingletonId)
14241#include "clang/AST/BuiltinTypes.def"
John McCall4124c492011-10-17 18:40:02 +000014242 break;
14243 }
14244
14245 llvm_unreachable("invalid placeholder type!");
John McCall36e7fe32010-10-12 00:20:44 +000014246}
Richard Trieu2c850c02011-04-21 21:44:26 +000014247
Richard Trieuba63ce62011-09-09 01:45:06 +000014248bool Sema::CheckCaseExpression(Expr *E) {
14249 if (E->isTypeDependent())
Richard Trieu2c850c02011-04-21 21:44:26 +000014250 return true;
Richard Trieuba63ce62011-09-09 01:45:06 +000014251 if (E->isValueDependent() || E->isIntegerConstantExpr(Context))
14252 return E->getType()->isIntegralOrEnumerationType();
Richard Trieu2c850c02011-04-21 21:44:26 +000014253 return false;
14254}
Ted Kremeneke65b0862012-03-06 20:05:56 +000014255
14256/// ActOnObjCBoolLiteral - Parse {__objc_yes,__objc_no} literals.
14257ExprResult
14258Sema::ActOnObjCBoolLiteral(SourceLocation OpLoc, tok::TokenKind Kind) {
14259 assert((Kind == tok::kw___objc_yes || Kind == tok::kw___objc_no) &&
14260 "Unknown Objective-C Boolean value!");
Fariborz Jahanianf2578572012-08-30 18:49:41 +000014261 QualType BoolT = Context.ObjCBuiltinBoolTy;
14262 if (!Context.getBOOLDecl()) {
Fariborz Jahanianeab17302012-10-16 17:08:11 +000014263 LookupResult Result(*this, &Context.Idents.get("BOOL"), OpLoc,
Fariborz Jahanianf2578572012-08-30 18:49:41 +000014264 Sema::LookupOrdinaryName);
Fariborz Jahanian379e5362012-10-16 16:21:20 +000014265 if (LookupName(Result, getCurScope()) && Result.isSingleResult()) {
Fariborz Jahanianf2578572012-08-30 18:49:41 +000014266 NamedDecl *ND = Result.getFoundDecl();
14267 if (TypedefDecl *TD = dyn_cast<TypedefDecl>(ND))
14268 Context.setBOOLDecl(TD);
14269 }
14270 }
14271 if (Context.getBOOLDecl())
14272 BoolT = Context.getBOOLType();
Nikola Smiljanic03ff2592014-05-29 14:05:12 +000014273 return new (Context)
14274 ObjCBoolLiteralExpr(Kind == tok::kw___objc_yes, BoolT, OpLoc);
Ted Kremeneke65b0862012-03-06 20:05:56 +000014275}